diff --git a/core/state/statedb.go b/core/state/statedb.go index ad8707588b..9939d2f4e1 100644 --- a/core/state/statedb.go +++ b/core/state/statedb.go @@ -599,10 +599,10 @@ func (s *StateDB) getDeletedStateObject(addr common.Address) *stateObject { if len(enc) == 0 { return nil } - data = new(types.StateAccount) if s.IsZktrie() { data, err = types.UnmarshalStateAccount(enc) } else { + data = new(types.StateAccount) err = rlp.DecodeBytes(enc, data) } if err != nil { diff --git a/core/types/l2trace.go b/core/types/l2trace.go index 8ecb5e65db..a92bd14220 100644 --- a/core/types/l2trace.go +++ b/core/types/l2trace.go @@ -124,6 +124,9 @@ type ExtraData struct { // STATICCALL: [stack.nth_last(1) (i.e. callee) address’s account, // callee contract address's account (before called)] StateList []*AccountWrapper `json:"proofList,omitempty"` + // The status of caller, it would be captured twice: + // 1. before execution and 2. updated in CaptureEnter (for CALL/CALLCODE it duplicated with StateList[0]) + Caller []*AccountWrapper `json:"caller,omitempty"` } type AccountWrapper struct { diff --git a/core/vm/logger.go b/core/vm/logger.go index d8d5c95e05..5ad2254066 100644 --- a/core/vm/logger.go +++ b/core/vm/logger.go @@ -280,6 +280,12 @@ func (l *StructLogger) CaptureState(pc uint64, op OpCode, gas, cost uint64, scop } } } + // for each "calling" op, pick the caller's state + switch op { + case CALL, CALLCODE, STATICCALL, DELEGATECALL, CREATE, CREATE2: + extraData := structlog.getOrInitExtraData() + extraData.Caller = append(extraData.Caller, getWrappedAccountForAddr(l, scope.Contract.Address())) + } structlog.RefundCounter = l.env.StateDB.GetRefund() l.logs = append(l.logs, structlog) @@ -323,6 +329,10 @@ func (l *StructLogger) CaptureEnter(typ OpCode, from common.Address, to common.A // append extraData part for the log, capture the account status (the nonce / balance has been updated in capture enter) wrappedStatus := getWrappedAccountForAddr(l, to) theLog.ExtraData.StateList = append(theLog.ExtraData.StateList, wrappedStatus) + // finally we update the caller's status (it is possible that nonce and balance being updated) + if len(theLog.ExtraData.Caller) == 1 { + theLog.ExtraData.Caller = append(theLog.ExtraData.Caller, getWrappedAccountForAddr(l, from)) + } } // in CaptureExit phase, a CREATE has its target address's code being set and queryable diff --git a/core/vm/logger_trace.go b/core/vm/logger_trace.go index 8ea6ba4d06..e7307464dc 100644 --- a/core/vm/logger_trace.go +++ b/core/vm/logger_trace.go @@ -15,8 +15,8 @@ var ( CALLCODE: {traceToAddressCode, traceLastNAddressCode(1), traceContractAccount, traceLastNAddressAccount(1)}, // contract account is the caller, stack.nth_last(1) is the callee's address DELEGATECALL: {traceToAddressCode, traceLastNAddressCode(1)}, STATICCALL: {traceToAddressCode, traceLastNAddressCode(1), traceLastNAddressAccount(1)}, - CREATE: {}, // sender is already recorded in ExecutionResult, callee is recorded in CaptureEnter&CaptureExit - CREATE2: {}, // sender is already recorded in ExecutionResult, callee is recorded in CaptureEnter&CaptureExit + CREATE: {}, // caller is already recorded in ExtraData.Caller, callee is recorded in CaptureEnter&CaptureExit + CREATE2: {}, // caller is already recorded in ExtraData.Caller, callee is recorded in CaptureEnter&CaptureExit SLOAD: {}, // trace storage in `captureState` instead of here, to handle `l.cfg.DisableStorage` flag SSTORE: {}, // trace storage in `captureState` instead of here, to handle `l.cfg.DisableStorage` flag SELFDESTRUCT: {traceContractAccount, traceLastNAddressAccount(0)}, diff --git a/internal/utesting/blocktraces/call.json b/internal/utesting/blocktraces/call.json new file mode 100644 index 0000000000..9fc13c35a9 --- /dev/null +++ b/internal/utesting/blocktraces/call.json @@ -0,0 +1,26755 @@ +{ + "blockTrace": { + "number": "0x99", + "hash": "0x8191edfdc1ec7380f674c0819074b40353e38042018ffdfebc2de6162561ed7e", + "gasLimit": 7804436, + "difficulty": "0x2", + "baseFee": "0x166", + "coinbase": { + "address": "0x0000000000000000000000000000000000000000", + "nonce": 0, + "balance": "0x0", + "codeHash": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "time": 1661261391, + "transactions": [ + { + "type": 2, + "nonce": 229, + "txHash": "0x4ab1152b957410aaa5596a7d2962af812069d3a54e7fc6c4a465f90df0f2c353", + "gas": 3021784, + "gasPrice": "0x1c5", + "from": "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "to": "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "chainId": "0xcf55", + "value": "0x0", + "data": "0xb0f2b72a00000000000000000000000000000000000000000000000000000182cae4f502", + "isCreate": false, + "v": "0x1", + "r": "0x5cbb898b4d0fa8b9a3eb4d4f230f26ca0f9f26b23cd3a4cf59074856f89972b4", + "s": "0x6fd2c366414e14c37d0e646e2cdb4423c29e46ace759f033c9912dc08c43c6af" + }, + { + "type": 2, + "nonce": 230, + "txHash": "0x485472245949dad3dc0107d9d80daa82f0f89627359b98d69e104f96f90060dc", + "gas": 3021784, + "gasPrice": "0x1c5", + "from": "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "to": "0x9cb1b5b04b4dcd5c3ab9bafd2c0ad4fd8a9b3d29", + "chainId": "0xcf55", + "value": "0x0", + "data": "0xcb4ec52e00000000000000000000000000000000000000000000000000000182cae4f502", + "isCreate": false, + "v": "0x1", + "r": "0xa0dcffe35046b29d818e947ed6b3f00cc25aa0cbd46590874b1231bf93c672c", + "s": "0x186309b51bcf6093d04479b2500aca7e244a78bba6e95ed1672d63969fe9e287" + }, + { + "type": 2, + "nonce": 231, + "txHash": "0x1e7d0b9b47facc5ae46c3768683539548ac49e57e8812852acb714e095b52af1", + "gas": 3021400, + "gasPrice": "0x1c5", + "from": "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "to": "0x9cb1b5b04b4dcd5c3ab9bafd2c0ad4fd8a9b3d29", + "chainId": "0xcf55", + "value": "0x0", + "data": "0x651b4aa50000000000000000000000000000000000000000000000000000000000000000", + "isCreate": false, + "v": "0x1", + "r": "0xc4a82f67aacfd67ea888f7a6557f2dc7b7b5a5bcf57fc0806bb8071901c1874", + "s": "0xa575c4f33f10b7ac2c5d38f0c6538ed27bb0c472331c0b88c291c4eadba64e8" + } + ] + }, + "storageTrace": { + "rootBefore": "0x0c7e5829f6360ae9f69c033f319d826c3b5a31867ef27709baef4a1e0b1bbd79", + "rootAfter": "0x209dd4e4a10b5c1af24af674a2086a9cb9e43e41857d0885b27405f92a38dbb4", + "proofs": { + "0x4cb1aB63aF5D8931Ce09673EbD8ae2ce16fD6571": [ + "0x001ef0067f561481f4d96b0a16ecb99c0165f270beec66023060142886e07da27e03ca1c10bd945f348e0ee94ff18f3f812499413350720c0566cd8921dae51e2e", + "0x00078d5fa7814e60b97f9519e5af10771010ddb58517072c531d9b777f462934501d1f03e2b0d52b3f554582ed2f5824ca4a02eb917cd1ebdbb96a4b464d2274f6", + "0x00073e0a4f144235e0c633af855786c248253e46d7b7c7f6dbbfafd83f390d3d861f97b8d93a5b91493cd1a10a02857cda919d64c5e669e90d0973dd2b2b97afc3", + "0x0027cc01c2a8e6901dc80544756a6832cd3ffae139b4300245411e2347fb5e761722de217a821ca10394e3c0f7a99762e37d87f50e2a61f48a154a26a4c4c7c5e7", + "0x000ef81a6c68d20d9d29dd6322d851e57c54c031ac00ee05e60c2f21424d4924f60e6446f94987cc4c62e4cac8bcccf9b6ccfa6943e8e4514cf4b7ac64347b5181", + "0x0025aab923d9a5a2d93978c98a1f5bb1a2ed1a57702b3e81e9da4e97a44c390bc70b52b9384e7c86289d14b2ff444a709abf8af6af2f59f718c1b89cb22a78ebe4", + "0x00240595687c8fa1172547dcc9450ef9f30519743088365ea537ff0a5a0263eef81fde06e51225fb728ad1a4a9319d187a8eafb7df7e0db6a09218250c65d27a25", + "0x001c3f632b6aa00691efcca4afd9b43794cbeb33ce84fb9154ea3dc336f24d874d2fe8b70043185278f8f6c75d7057d75ebc62e82052f480dfc207de3b0e89700e", + "0x0129bdbea092f4f7e6de593fd1a16ddb50b1c2a6297d4ae141a60f8da631e481750404000000000000000000000000000000000000000000000000000000000000000000e50056bc75e2d630ffffffffffffffffffffffffffffffffffff334673c38cb5e8c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470000000000000000000000000000000000000000000000000000000000000000000", + "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" + ], + "0x7db8ae361A8746Cb1346D3390B00D7122e3286e4": [ + "0x001ef0067f561481f4d96b0a16ecb99c0165f270beec66023060142886e07da27e03ca1c10bd945f348e0ee94ff18f3f812499413350720c0566cd8921dae51e2e", + "0x00078d5fa7814e60b97f9519e5af10771010ddb58517072c531d9b777f462934501d1f03e2b0d52b3f554582ed2f5824ca4a02eb917cd1ebdbb96a4b464d2274f6", + "0x001e8e5c24b56f30862b56a1ea557e1d127020eb927ca7931f40db6f5dc77947360490ae4c72f6e1775acf6c6901461dbd1a15df1a3f362ee211604e2d496e7dba", + "0x001b82603d8406043c6f05ee63ba5127050d351266e9111776b7e285352bcbe4ec27442f5bcddb9c385fc9f1596ddca0741d552d8edc11cb38968d1bf4c7f822be", + "0x0004831789ad2280ed08d71217b56bfb3d7fc57f19bd0adbc3c147a603f90176362b5f8721e3ff1e809a2e15b9397e3a53529da2c01925fbeba733a50f3f3f3ccd", + "0x0011320da6ef1593cce95663085d2bb3c3c25216ae0f5522246521ed8cf9ac3e940000000000000000000000000000000000000000000000000000000000000000", + "0x002bdbbc1d42f86d3b5cab2a463b8930ee173efa7adbd5320f6e4d36c16094be671431a4c64354b399ca6a1049116796f29462f29b06fd39b719f5c3bd779cbf0c", + "0x0124c0a7ea76182c713800cfeb6556da9b21c53ceaab4b469557291fdd2a067e8b04040000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000004ee2afb169bef88abed9792edc0230c2cda9c19a48639d2db199479f1176928e000000000000000000000000000000000000000000000000000000000000000000", + "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" + ], + "0x9CB1B5b04b4dCD5c3ab9bAFd2c0ad4Fd8A9b3d29": [ + "0x001ef0067f561481f4d96b0a16ecb99c0165f270beec66023060142886e07da27e03ca1c10bd945f348e0ee94ff18f3f812499413350720c0566cd8921dae51e2e", + "0x00078d5fa7814e60b97f9519e5af10771010ddb58517072c531d9b777f462934501d1f03e2b0d52b3f554582ed2f5824ca4a02eb917cd1ebdbb96a4b464d2274f6", + "0x001e8e5c24b56f30862b56a1ea557e1d127020eb927ca7931f40db6f5dc77947360490ae4c72f6e1775acf6c6901461dbd1a15df1a3f362ee211604e2d496e7dba", + "0x001b82603d8406043c6f05ee63ba5127050d351266e9111776b7e285352bcbe4ec27442f5bcddb9c385fc9f1596ddca0741d552d8edc11cb38968d1bf4c7f822be", + "0x000f5cf8e89bd3808580d0fcc5417d6ac63d65d765ce59591ea7732941ec4ae5d5090764288afa45387ff4f43f589a39764cdd5d4af020b35b161a7709903beb4a", + "0x00129dbd37c9e61fa5ab4550c36d62285e7a1a805052392415a1288750a355475d1cf152b75256f55c17d9cbc4bc5bf860e34b0b53b8884e98e359699872f4e516", + "0x0000000000000000000000000000000000000000000000000000000000000000001391f938a7d5eaaadaf4ff2ad5366e5effd530323edbbf6cc9c9928d88574cc8", + "0x00063ba251856bb8071536d0a953747d5943eef856b33550f948d6f64ca6e24d2c0000000000000000000000000000000000000000000000000000000000000000", + "0x000000000000000000000000000000000000000000000000000000000000000000165014e129f6caee3f0338e9dcda1b6c54feb20d47dc18a378cb34ce0a79da6f", + "0x00116705b72ddf8bd56ed7c488d8aeb784fae8d65d5eaf684d8cb07f4f449de1ef16add6b21c1c8bc10b08fe373981eb23498cd2518edfbb481a95919fec9578a7", + "0x0112bbe3f6da505c367dd301ce3155857bf1025c8a6c6ea96f427866f9d83e93530404000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000b058876f2963a74146d29465bbd582cbc6f2c03a2ec5adc6e6d74513470072a41f1b219ae0ffd1426e37073420ab1c7d5029bd461a733e454551c74fa0c42cca00", + "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" + ], + "0xED491d2c35f615CF1591bB6322486f1EFcC9F6B5": [ + "0x001ef0067f561481f4d96b0a16ecb99c0165f270beec66023060142886e07da27e03ca1c10bd945f348e0ee94ff18f3f812499413350720c0566cd8921dae51e2e", + "0x00078d5fa7814e60b97f9519e5af10771010ddb58517072c531d9b777f462934501d1f03e2b0d52b3f554582ed2f5824ca4a02eb917cd1ebdbb96a4b464d2274f6", + "0x00073e0a4f144235e0c633af855786c248253e46d7b7c7f6dbbfafd83f390d3d861f97b8d93a5b91493cd1a10a02857cda919d64c5e669e90d0973dd2b2b97afc3", + "0x000f8ad0549a67eb1cfaf69a6aac967778c32c1d59033300330ce137f521fb37811f6042ebb8accbafb4a84e0623e6a11de98f9c685587345c8a9a3ea0d8753263", + "0x00012d4ee8f7f3ab4f7749da5b89493e061b7867c513eb01e6bda5e3be3714046a2ae5f2690a2a068846a918c9f315d5fb7545ef202c80b91839792fdf1db962e7", + "0x00000000000000000000000000000000000000000000000000000000000000000021a13825df3a2e44d116b730a9f9fae9d1009b0d93775c959008c0ff39a6baf1", + "0x00145b2a9022fb338f5ca771385004ae0dd96e58dd66da195e2002f6339b220b810000000000000000000000000000000000000000000000000000000000000000", + "0x00000000000000000000000000000000000000000000000000000000000000000021ecb6ec05411b84bfb132448a057521a4e5d78386cd6e3e6ae18ee82d408705", + "0x00000000000000000000000000000000000000000000000000000000000000000022a65ff4975f65726dd7610e5952dcb0cdb90e3362d06026713d9af3b0e443ce", + "0x0005aa97d091fa51170d4af9a7e10e089bb2d247491a795cfd494ddbfa4a4ae97a25c7887bd154235bc95dd2c100ad2c6ef2bff09d124942faa084e6436241a513", + "0x01176926261560230603f6c6ab7ddcf6878f0150ad2f6c5d55ca3afb99711123b904040000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000005a58c210f99d8c05214f392685ce9711a7538fb5ed7bcd81fba60e035e56f1631178fcc81e2780c1e73e34fa1e93d9d4ed7f7e4f04c48ef0862e72fb9d9041ec00", + "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" + ] + }, + "storageProofs": { + "0x7db8ae361A8746Cb1346D3390B00D7122e3286e4": { + "0x0000000000000000000000000000000000000000000000000000000000000000": [ + "0x02", + "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" + ] + }, + "0x9CB1B5b04b4dCD5c3ab9bAFd2c0ad4Fd8A9b3d29": { + "0x0000000000000000000000000000000000000000000000000000000000000000": [ + "0x0029ac3243f3c81463a9cb43cda59d040f7ee6b5173d0097b8a35896d63893f6d30000000000000000000000000000000000000000000000000000000000000000", + "0x0016030aea5f3b5eea7a1040a9daac483009e9d22c845fcde1f1beac3efb650dcc03f128a7678e71018b9dc8af34c8b4c64c8bb3a299a69da8231d059437c1dbd8", + "0x012098f5fb9e239eab3ceac3f27b81e481dc3124d55ffed523a839ee8446b6486401010000000000000000000000000000ed491d2c35f615cf1591bb6322486f1efcc9f6b500", + "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" + ], + "0x0000000000000000000000000000000000000000000000000000000000000001": [ + "0x0029ac3243f3c81463a9cb43cda59d040f7ee6b5173d0097b8a35896d63893f6d30000000000000000000000000000000000000000000000000000000000000000", + "0x0016030aea5f3b5eea7a1040a9daac483009e9d22c845fcde1f1beac3efb650dcc03f128a7678e71018b9dc8af34c8b4c64c8bb3a299a69da8231d059437c1dbd8", + "0x011bd20834f5de9830c643778a2e88a3a1363c8b9ac083d36d75bf87c49953e65e01010000000000000000000000000000000000000000000000000000000000000000006400", + "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" + ] + }, + "0xED491d2c35f615CF1591bB6322486f1EFcC9F6B5": { + "0x0000000000000000000000000000000000000000000000000000000000000000": [ + "0x012098f5fb9e239eab3ceac3f27b81e481dc3124d55ffed523a839ee8446b64864010100000000000000000000000000007db8ae361a8746cb1346d3390b00d7122e3286e400", + "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" + ] + } + } + }, + "executionResults": [ + { + "gas": 49377, + "failed": false, + "from": { + "address": "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "nonce": 229, + "balance": "0x56bc75e2d630ffffffffffffffffffffffffffffffffffff334673c38cb5e8", + "codeHash": "0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470" + }, + "to": { + "address": "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "nonce": 1, + "balance": "0x0", + "codeHash": "0x5a58c210f99d8c05214f392685ce9711a7538fb5ed7bcd81fba60e035e56f163" + }, + "accountAfter": [ + { + "address": "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "nonce": 230, + "balance": "0x56bc75e2d630ffffffffffffffffffffffffffffffffffff334673c27efb42", + "codeHash": "0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470" + }, + { + "address": "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "nonce": 1, + "balance": "0x0", + "codeHash": "0x5a58c210f99d8c05214f392685ce9711a7538fb5ed7bcd81fba60e035e56f163" + } + ], + "codeHash": "0x5a58c210f99d8c05214f392685ce9711a7538fb5ed7bcd81fba60e035e56f163", + "byteCode": "0x608060405234801561001057600080fd5b506004361061004c5760003560e01c806321848c46146100515780633e23ee431461006d578063b0f2b72a1461008b578063ed231420146100a7575b600080fd5b61006b6004803603810190610066919061038a565b6100c3565b005b61007561015b565b604051610082919061040a565b60405180910390f35b6100a560048036038101906100a0919061038a565b610184565b005b6100c160048036038101906100bc919061038a565b610219565b005b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff166321848c46836040518263ffffffff1660e01b81526004016101229190610447565b600060405180830381600087803b15801561013c57600080fd5b505af192505050801561014d575060015b61015657610157565b5b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663b0f2b72a836040518263ffffffff1660e01b81526004016101e39190610447565b600060405180830381600087803b1580156101fd57600080fd5b505af1158015610211573d6000803e3d6000fd5b505050505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663e5223f886064846040518363ffffffff1660e01b815260040161027a9190610447565b6000604051808303818588803b15801561029357600080fd5b505af1935050505080156102a5575060015b6102ae576102af565b5b5050565b610349816040516024016102c79190610425565b6040516020818303038152906040527f41304fac000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff838183161783525050505061034c565b50565b60008151905060006a636f6e736f6c652e6c6f679050602083016000808483855afa5050505050565b600081359050610384816104fe565b92915050565b60006020828403121561039c57600080fd5b60006103aa84828501610375565b91505092915050565b6103bc8161047e565b82525050565b60006103cd82610462565b6103d7818561046d565b93506103e78185602086016104ba565b6103f0816104ed565b840191505092915050565b610404816104b0565b82525050565b600060208201905061041f60008301846103b3565b92915050565b6000602082019050818103600083015261043f81846103c2565b905092915050565b600060208201905061045c60008301846103fb565b92915050565b600081519050919050565b600082825260208201905092915050565b600061048982610490565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b838110156104d85780820151818401526020810190506104bd565b838111156104e7576000848401525b50505050565b6000601f19601f8301169050919050565b610507816104b0565b811461051257600080fd5b5056fea2646970667358221220f5cc0a3497437233916ec484eed596fa82d20198cc5e4e12a1bc76d6907526b864736f6c63430008040033", + "structLogs": [ + { + "pc": 0, + "op": "PUSH1", + "gas": 3000520, + "gasCost": 3, + "depth": 1 + }, + { + "pc": 2, + "op": "PUSH1", + "gas": 3000517, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80" + ] + }, + { + "pc": 4, + "op": "MSTORE", + "gas": 3000514, + "gasCost": 12, + "depth": 1, + "stack": [ + "0x80", + "0x40" + ] + }, + { + "pc": 5, + "op": "CALLVALUE", + "gas": 3000502, + "gasCost": 2, + "depth": 1 + }, + { + "pc": 6, + "op": "DUP1", + "gas": 3000500, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 7, + "op": "ISZERO", + "gas": 3000497, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0", + "0x0" + ] + }, + { + "pc": 8, + "op": "PUSH2", + "gas": 3000494, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0", + "0x1" + ] + }, + { + "pc": 11, + "op": "JUMPI", + "gas": 3000491, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x0", + "0x1", + "0x10" + ] + }, + { + "pc": 16, + "op": "JUMPDEST", + "gas": 3000481, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 17, + "op": "POP", + "gas": 3000480, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 18, + "op": "PUSH1", + "gas": 3000478, + "gasCost": 3, + "depth": 1 + }, + { + "pc": 20, + "op": "CALLDATASIZE", + "gas": 3000475, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x4" + ] + }, + { + "pc": 21, + "op": "LT", + "gas": 3000473, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4", + "0x24" + ] + }, + { + "pc": 22, + "op": "PUSH2", + "gas": 3000470, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 25, + "op": "JUMPI", + "gas": 3000467, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x0", + "0x4c" + ] + }, + { + "pc": 26, + "op": "PUSH1", + "gas": 3000457, + "gasCost": 3, + "depth": 1 + }, + { + "pc": 28, + "op": "CALLDATALOAD", + "gas": 3000454, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 29, + "op": "PUSH1", + "gas": 3000451, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a00000000000000000000000000000000000000000000000000000182" + ] + }, + { + "pc": 31, + "op": "SHR", + "gas": 3000448, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a00000000000000000000000000000000000000000000000000000182", + "0xe0" + ] + }, + { + "pc": 32, + "op": "DUP1", + "gas": 3000445, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a" + ] + }, + { + "pc": 33, + "op": "PUSH4", + "gas": 3000442, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xb0f2b72a" + ] + }, + { + "pc": 38, + "op": "EQ", + "gas": 3000439, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xb0f2b72a", + "0x21848c46" + ] + }, + { + "pc": 39, + "op": "PUSH2", + "gas": 3000436, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0x0" + ] + }, + { + "pc": 42, + "op": "JUMPI", + "gas": 3000433, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0x0", + "0x51" + ] + }, + { + "pc": 43, + "op": "DUP1", + "gas": 3000423, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a" + ] + }, + { + "pc": 44, + "op": "PUSH4", + "gas": 3000420, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xb0f2b72a" + ] + }, + { + "pc": 49, + "op": "EQ", + "gas": 3000417, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xb0f2b72a", + "0x3e23ee43" + ] + }, + { + "pc": 50, + "op": "PUSH2", + "gas": 3000414, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0x0" + ] + }, + { + "pc": 53, + "op": "JUMPI", + "gas": 3000411, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0x0", + "0x6d" + ] + }, + { + "pc": 54, + "op": "DUP1", + "gas": 3000401, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a" + ] + }, + { + "pc": 55, + "op": "PUSH4", + "gas": 3000398, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xb0f2b72a" + ] + }, + { + "pc": 60, + "op": "EQ", + "gas": 3000395, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xb0f2b72a", + "0xb0f2b72a" + ] + }, + { + "pc": 61, + "op": "PUSH2", + "gas": 3000392, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0x1" + ] + }, + { + "pc": 64, + "op": "JUMPI", + "gas": 3000389, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0x1", + "0x8b" + ] + }, + { + "pc": 139, + "op": "JUMPDEST", + "gas": 3000379, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xb0f2b72a" + ] + }, + { + "pc": 140, + "op": "PUSH2", + "gas": 3000378, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a" + ] + }, + { + "pc": 143, + "op": "PUSH1", + "gas": 3000375, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5" + ] + }, + { + "pc": 145, + "op": "DUP1", + "gas": 3000372, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x4" + ] + }, + { + "pc": 146, + "op": "CALLDATASIZE", + "gas": 3000369, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x4", + "0x4" + ] + }, + { + "pc": 147, + "op": "SUB", + "gas": 3000367, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x4", + "0x4", + "0x24" + ] + }, + { + "pc": 148, + "op": "DUP2", + "gas": 3000364, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x4", + "0x20" + ] + }, + { + "pc": 149, + "op": "ADD", + "gas": 3000361, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x4", + "0x20", + "0x4" + ] + }, + { + "pc": 150, + "op": "SWAP1", + "gas": 3000358, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x4", + "0x24" + ] + }, + { + "pc": 151, + "op": "PUSH2", + "gas": 3000355, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x24", + "0x4" + ] + }, + { + "pc": 154, + "op": "SWAP2", + "gas": 3000352, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x24", + "0x4", + "0xa0" + ] + }, + { + "pc": 155, + "op": "SWAP1", + "gas": 3000349, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x4", + "0x24" + ] + }, + { + "pc": 156, + "op": "PUSH2", + "gas": 3000346, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4" + ] + }, + { + "pc": 159, + "op": "JUMP", + "gas": 3000343, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x38a" + ] + }, + { + "pc": 906, + "op": "JUMPDEST", + "gas": 3000335, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4" + ] + }, + { + "pc": 907, + "op": "PUSH1", + "gas": 3000334, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4" + ] + }, + { + "pc": 909, + "op": "PUSH1", + "gas": 3000331, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 911, + "op": "DUP3", + "gas": 3000328, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x20" + ] + }, + { + "pc": 912, + "op": "DUP5", + "gas": 3000325, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x20", + "0x4" + ] + }, + { + "pc": 913, + "op": "SUB", + "gas": 3000322, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x20", + "0x4", + "0x24" + ] + }, + { + "pc": 914, + "op": "SLT", + "gas": 3000319, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x20", + "0x20" + ] + }, + { + "pc": 915, + "op": "ISZERO", + "gas": 3000316, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0" + ] + }, + { + "pc": 916, + "op": "PUSH2", + "gas": 3000313, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x1" + ] + }, + { + "pc": 919, + "op": "JUMPI", + "gas": 3000310, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x1", + "0x39c" + ] + }, + { + "pc": 924, + "op": "JUMPDEST", + "gas": 3000300, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 925, + "op": "PUSH1", + "gas": 3000299, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 927, + "op": "PUSH2", + "gas": 3000296, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0" + ] + }, + { + "pc": 930, + "op": "DUP5", + "gas": 3000293, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa" + ] + }, + { + "pc": 931, + "op": "DUP3", + "gas": 3000290, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24" + ] + }, + { + "pc": 932, + "op": "DUP6", + "gas": 3000287, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x0" + ] + }, + { + "pc": 933, + "op": "ADD", + "gas": 3000284, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x0", + "0x4" + ] + }, + { + "pc": 934, + "op": "PUSH2", + "gas": 3000281, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4" + ] + }, + { + "pc": 937, + "op": "JUMP", + "gas": 3000278, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x375" + ] + }, + { + "pc": 885, + "op": "JUMPDEST", + "gas": 3000270, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4" + ] + }, + { + "pc": 886, + "op": "PUSH1", + "gas": 3000269, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4" + ] + }, + { + "pc": 888, + "op": "DUP2", + "gas": 3000266, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 889, + "op": "CALLDATALOAD", + "gas": 3000263, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x0", + "0x4" + ] + }, + { + "pc": 890, + "op": "SWAP1", + "gas": 3000260, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x0", + "0x182cae4f502" + ] + }, + { + "pc": 891, + "op": "POP", + "gas": 3000257, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cae4f502", + "0x0" + ] + }, + { + "pc": 892, + "op": "PUSH2", + "gas": 3000255, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cae4f502" + ] + }, + { + "pc": 895, + "op": "DUP2", + "gas": 3000252, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cae4f502", + "0x384" + ] + }, + { + "pc": 896, + "op": "PUSH2", + "gas": 3000249, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cae4f502", + "0x384", + "0x182cae4f502" + ] + }, + { + "pc": 899, + "op": "JUMP", + "gas": 3000246, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cae4f502", + "0x384", + "0x182cae4f502", + "0x4fe" + ] + }, + { + "pc": 1278, + "op": "JUMPDEST", + "gas": 3000238, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cae4f502", + "0x384", + "0x182cae4f502" + ] + }, + { + "pc": 1279, + "op": "PUSH2", + "gas": 3000237, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cae4f502", + "0x384", + "0x182cae4f502" + ] + }, + { + "pc": 1282, + "op": "DUP2", + "gas": 3000234, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cae4f502", + "0x384", + "0x182cae4f502", + "0x507" + ] + }, + { + "pc": 1283, + "op": "PUSH2", + "gas": 3000231, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cae4f502", + "0x384", + "0x182cae4f502", + "0x507", + "0x182cae4f502" + ] + }, + { + "pc": 1286, + "op": "JUMP", + "gas": 3000228, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cae4f502", + "0x384", + "0x182cae4f502", + "0x507", + "0x182cae4f502", + "0x4b0" + ] + }, + { + "pc": 1200, + "op": "JUMPDEST", + "gas": 3000220, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cae4f502", + "0x384", + "0x182cae4f502", + "0x507", + "0x182cae4f502" + ] + }, + { + "pc": 1201, + "op": "PUSH1", + "gas": 3000219, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cae4f502", + "0x384", + "0x182cae4f502", + "0x507", + "0x182cae4f502" + ] + }, + { + "pc": 1203, + "op": "DUP2", + "gas": 3000216, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cae4f502", + "0x384", + "0x182cae4f502", + "0x507", + "0x182cae4f502", + "0x0" + ] + }, + { + "pc": 1204, + "op": "SWAP1", + "gas": 3000213, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cae4f502", + "0x384", + "0x182cae4f502", + "0x507", + "0x182cae4f502", + "0x0", + "0x182cae4f502" + ] + }, + { + "pc": 1205, + "op": "POP", + "gas": 3000210, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cae4f502", + "0x384", + "0x182cae4f502", + "0x507", + "0x182cae4f502", + "0x182cae4f502", + "0x0" + ] + }, + { + "pc": 1206, + "op": "SWAP2", + "gas": 3000208, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cae4f502", + "0x384", + "0x182cae4f502", + "0x507", + "0x182cae4f502", + "0x182cae4f502" + ] + }, + { + "pc": 1207, + "op": "SWAP1", + "gas": 3000205, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cae4f502", + "0x384", + "0x182cae4f502", + "0x182cae4f502", + "0x182cae4f502", + "0x507" + ] + }, + { + "pc": 1208, + "op": "POP", + "gas": 3000202, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cae4f502", + "0x384", + "0x182cae4f502", + "0x182cae4f502", + "0x507", + "0x182cae4f502" + ] + }, + { + "pc": 1209, + "op": "JUMP", + "gas": 3000200, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cae4f502", + "0x384", + "0x182cae4f502", + "0x182cae4f502", + "0x507" + ] + }, + { + "pc": 1287, + "op": "JUMPDEST", + "gas": 3000192, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cae4f502", + "0x384", + "0x182cae4f502", + "0x182cae4f502" + ] + }, + { + "pc": 1288, + "op": "DUP2", + "gas": 3000191, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cae4f502", + "0x384", + "0x182cae4f502", + "0x182cae4f502" + ] + }, + { + "pc": 1289, + "op": "EQ", + "gas": 3000188, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cae4f502", + "0x384", + "0x182cae4f502", + "0x182cae4f502", + "0x182cae4f502" + ] + }, + { + "pc": 1290, + "op": "PUSH2", + "gas": 3000185, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cae4f502", + "0x384", + "0x182cae4f502", + "0x1" + ] + }, + { + "pc": 1293, + "op": "JUMPI", + "gas": 3000182, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cae4f502", + "0x384", + "0x182cae4f502", + "0x1", + "0x512" + ] + }, + { + "pc": 1298, + "op": "JUMPDEST", + "gas": 3000172, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cae4f502", + "0x384", + "0x182cae4f502" + ] + }, + { + "pc": 1299, + "op": "POP", + "gas": 3000171, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cae4f502", + "0x384", + "0x182cae4f502" + ] + }, + { + "pc": 1300, + "op": "JUMP", + "gas": 3000169, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cae4f502", + "0x384" + ] + }, + { + "pc": 900, + "op": "JUMPDEST", + "gas": 3000161, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cae4f502" + ] + }, + { + "pc": 901, + "op": "SWAP3", + "gas": 3000160, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cae4f502" + ] + }, + { + "pc": 902, + "op": "SWAP2", + "gas": 3000157, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x182cae4f502", + "0x24", + "0x4", + "0x3aa" + ] + }, + { + "pc": 903, + "op": "POP", + "gas": 3000154, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x182cae4f502", + "0x3aa", + "0x4", + "0x24" + ] + }, + { + "pc": 904, + "op": "POP", + "gas": 3000152, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x182cae4f502", + "0x3aa", + "0x4" + ] + }, + { + "pc": 905, + "op": "JUMP", + "gas": 3000150, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x182cae4f502", + "0x3aa" + ] + }, + { + "pc": 938, + "op": "JUMPDEST", + "gas": 3000142, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x182cae4f502" + ] + }, + { + "pc": 939, + "op": "SWAP2", + "gas": 3000141, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x182cae4f502" + ] + }, + { + "pc": 940, + "op": "POP", + "gas": 3000138, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x182cae4f502", + "0x0", + "0x0" + ] + }, + { + "pc": 941, + "op": "POP", + "gas": 3000136, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x182cae4f502", + "0x0" + ] + }, + { + "pc": 942, + "op": "SWAP3", + "gas": 3000134, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x182cae4f502" + ] + }, + { + "pc": 943, + "op": "SWAP2", + "gas": 3000131, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x24", + "0x4", + "0xa0" + ] + }, + { + "pc": 944, + "op": "POP", + "gas": 3000128, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0xa0", + "0x4", + "0x24" + ] + }, + { + "pc": 945, + "op": "POP", + "gas": 3000126, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0xa0", + "0x4" + ] + }, + { + "pc": 946, + "op": "JUMP", + "gas": 3000124, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0xa0" + ] + }, + { + "pc": 160, + "op": "JUMPDEST", + "gas": 3000116, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502" + ] + }, + { + "pc": 161, + "op": "PUSH2", + "gas": 3000115, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502" + ] + }, + { + "pc": 164, + "op": "JUMP", + "gas": 3000112, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x184" + ] + }, + { + "pc": 388, + "op": "JUMPDEST", + "gas": 3000104, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502" + ] + }, + { + "pc": 389, + "op": "PUSH1", + "gas": 3000103, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502" + ] + }, + { + "pc": 391, + "op": "DUP1", + "gas": 3000100, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x0" + ] + }, + { + "pc": 392, + "op": "PUSH1", + "gas": 3000097, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x0", + "0x0" + ] + }, + { + "pc": 394, + "op": "SWAP1", + "gas": 3000094, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 395, + "op": "SLOAD", + "gas": 3000091, + "gasCost": 2100, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x0", + "0x0", + "0x0" + ], + "storage": { + "0x0000000000000000000000000000000000000000000000000000000000000000": "0x0000000000000000000000007db8ae361a8746cb1346d3390b00d7122e3286e4" + }, + "extraData": { + "proofList": [ + { + "address": "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "nonce": 1, + "balance": "0x0", + "codeHash": "0x5a58c210f99d8c05214f392685ce9711a7538fb5ed7bcd81fba60e035e56f163", + "storage": { + "key": "0x0000000000000000000000000000000000000000000000000000000000000000", + "value": "0x0000000000000000000000007db8ae361a8746cb1346d3390b00d7122e3286e4" + } + } + ] + } + }, + { + "pc": 396, + "op": "SWAP1", + "gas": 2997991, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x0", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4" + ] + }, + { + "pc": 397, + "op": "PUSH2", + "gas": 2997988, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x0" + ] + }, + { + "pc": 400, + "op": "EXP", + "gas": 2997985, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x0", + "0x100" + ] + }, + { + "pc": 401, + "op": "SWAP1", + "gas": 2997975, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x1" + ] + }, + { + "pc": 402, + "op": "DIV", + "gas": 2997972, + "gasCost": 5, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x0", + "0x1", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4" + ] + }, + { + "pc": 403, + "op": "PUSH20", + "gas": 2997967, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4" + ] + }, + { + "pc": 424, + "op": "AND", + "gas": 2997964, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 425, + "op": "SWAP1", + "gas": 2997961, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4" + ] + }, + { + "pc": 426, + "op": "POP", + "gas": 2997958, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x0" + ] + }, + { + "pc": 427, + "op": "DUP1", + "gas": 2997956, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4" + ] + }, + { + "pc": 428, + "op": "PUSH20", + "gas": 2997953, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4" + ] + }, + { + "pc": 449, + "op": "AND", + "gas": 2997950, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 450, + "op": "PUSH4", + "gas": 2997947, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4" + ] + }, + { + "pc": 455, + "op": "DUP4", + "gas": 2997944, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a" + ] + }, + { + "pc": 456, + "op": "PUSH1", + "gas": 2997941, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x182cae4f502" + ] + }, + { + "pc": 458, + "op": "MLOAD", + "gas": 2997938, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x182cae4f502", + "0x40" + ] + }, + { + "pc": 459, + "op": "DUP3", + "gas": 2997935, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x182cae4f502", + "0x80" + ] + }, + { + "pc": 460, + "op": "PUSH4", + "gas": 2997932, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x182cae4f502", + "0x80", + "0xb0f2b72a" + ] + }, + { + "pc": 465, + "op": "AND", + "gas": 2997929, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x182cae4f502", + "0x80", + "0xb0f2b72a", + "0xffffffff" + ] + }, + { + "pc": 466, + "op": "PUSH1", + "gas": 2997926, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x182cae4f502", + "0x80", + "0xb0f2b72a" + ] + }, + { + "pc": 468, + "op": "SHL", + "gas": 2997923, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x182cae4f502", + "0x80", + "0xb0f2b72a", + "0xe0" + ] + }, + { + "pc": 469, + "op": "DUP2", + "gas": 2997920, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x182cae4f502", + "0x80", + "0xb0f2b72a00000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 470, + "op": "MSTORE", + "gas": 2997917, + "gasCost": 9, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x182cae4f502", + "0x80", + "0xb0f2b72a00000000000000000000000000000000000000000000000000000000", + "0x80" + ] + }, + { + "pc": 471, + "op": "PUSH1", + "gas": 2997908, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x182cae4f502", + "0x80" + ] + }, + { + "pc": 473, + "op": "ADD", + "gas": 2997905, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x182cae4f502", + "0x80", + "0x4" + ] + }, + { + "pc": 474, + "op": "PUSH2", + "gas": 2997902, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x182cae4f502", + "0x84" + ] + }, + { + "pc": 477, + "op": "SWAP2", + "gas": 2997899, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x182cae4f502", + "0x84", + "0x1e3" + ] + }, + { + "pc": 478, + "op": "SWAP1", + "gas": 2997896, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x1e3", + "0x84", + "0x182cae4f502" + ] + }, + { + "pc": 479, + "op": "PUSH2", + "gas": 2997893, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x1e3", + "0x182cae4f502", + "0x84" + ] + }, + { + "pc": 482, + "op": "JUMP", + "gas": 2997890, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x1e3", + "0x182cae4f502", + "0x84", + "0x447" + ] + }, + { + "pc": 1095, + "op": "JUMPDEST", + "gas": 2997882, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x1e3", + "0x182cae4f502", + "0x84" + ] + }, + { + "pc": 1096, + "op": "PUSH1", + "gas": 2997881, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x1e3", + "0x182cae4f502", + "0x84" + ] + }, + { + "pc": 1098, + "op": "PUSH1", + "gas": 2997878, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x1e3", + "0x182cae4f502", + "0x84", + "0x0" + ] + }, + { + "pc": 1100, + "op": "DUP3", + "gas": 2997875, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x1e3", + "0x182cae4f502", + "0x84", + "0x0", + "0x20" + ] + }, + { + "pc": 1101, + "op": "ADD", + "gas": 2997872, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x1e3", + "0x182cae4f502", + "0x84", + "0x0", + "0x20", + "0x84" + ] + }, + { + "pc": 1102, + "op": "SWAP1", + "gas": 2997869, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x1e3", + "0x182cae4f502", + "0x84", + "0x0", + "0xa4" + ] + }, + { + "pc": 1103, + "op": "POP", + "gas": 2997866, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x1e3", + "0x182cae4f502", + "0x84", + "0xa4", + "0x0" + ] + }, + { + "pc": 1104, + "op": "PUSH2", + "gas": 2997864, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x1e3", + "0x182cae4f502", + "0x84", + "0xa4" + ] + }, + { + "pc": 1107, + "op": "PUSH1", + "gas": 2997861, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x1e3", + "0x182cae4f502", + "0x84", + "0xa4", + "0x45c" + ] + }, + { + "pc": 1109, + "op": "DUP4", + "gas": 2997858, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x1e3", + "0x182cae4f502", + "0x84", + "0xa4", + "0x45c", + "0x0" + ] + }, + { + "pc": 1110, + "op": "ADD", + "gas": 2997855, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x1e3", + "0x182cae4f502", + "0x84", + "0xa4", + "0x45c", + "0x0", + "0x84" + ] + }, + { + "pc": 1111, + "op": "DUP5", + "gas": 2997852, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x1e3", + "0x182cae4f502", + "0x84", + "0xa4", + "0x45c", + "0x84" + ] + }, + { + "pc": 1112, + "op": "PUSH2", + "gas": 2997849, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x1e3", + "0x182cae4f502", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x182cae4f502" + ] + }, + { + "pc": 1115, + "op": "JUMP", + "gas": 2997846, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x1e3", + "0x182cae4f502", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x182cae4f502", + "0x3fb" + ] + }, + { + "pc": 1019, + "op": "JUMPDEST", + "gas": 2997838, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x1e3", + "0x182cae4f502", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x182cae4f502" + ] + }, + { + "pc": 1020, + "op": "PUSH2", + "gas": 2997837, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x1e3", + "0x182cae4f502", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x182cae4f502" + ] + }, + { + "pc": 1023, + "op": "DUP2", + "gas": 2997834, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x1e3", + "0x182cae4f502", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x182cae4f502", + "0x404" + ] + }, + { + "pc": 1024, + "op": "PUSH2", + "gas": 2997831, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x1e3", + "0x182cae4f502", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x182cae4f502", + "0x404", + "0x182cae4f502" + ] + }, + { + "pc": 1027, + "op": "JUMP", + "gas": 2997828, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x1e3", + "0x182cae4f502", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x182cae4f502", + "0x404", + "0x182cae4f502", + "0x4b0" + ] + }, + { + "pc": 1200, + "op": "JUMPDEST", + "gas": 2997820, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x1e3", + "0x182cae4f502", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x182cae4f502", + "0x404", + "0x182cae4f502" + ] + }, + { + "pc": 1201, + "op": "PUSH1", + "gas": 2997819, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x1e3", + "0x182cae4f502", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x182cae4f502", + "0x404", + "0x182cae4f502" + ] + }, + { + "pc": 1203, + "op": "DUP2", + "gas": 2997816, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x1e3", + "0x182cae4f502", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x182cae4f502", + "0x404", + "0x182cae4f502", + "0x0" + ] + }, + { + "pc": 1204, + "op": "SWAP1", + "gas": 2997813, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x1e3", + "0x182cae4f502", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x182cae4f502", + "0x404", + "0x182cae4f502", + "0x0", + "0x182cae4f502" + ] + }, + { + "pc": 1205, + "op": "POP", + "gas": 2997810, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x1e3", + "0x182cae4f502", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x182cae4f502", + "0x404", + "0x182cae4f502", + "0x182cae4f502", + "0x0" + ] + }, + { + "pc": 1206, + "op": "SWAP2", + "gas": 2997808, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x1e3", + "0x182cae4f502", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x182cae4f502", + "0x404", + "0x182cae4f502", + "0x182cae4f502" + ] + }, + { + "pc": 1207, + "op": "SWAP1", + "gas": 2997805, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x1e3", + "0x182cae4f502", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x182cae4f502", + "0x182cae4f502", + "0x182cae4f502", + "0x404" + ] + }, + { + "pc": 1208, + "op": "POP", + "gas": 2997802, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x1e3", + "0x182cae4f502", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x182cae4f502", + "0x182cae4f502", + "0x404", + "0x182cae4f502" + ] + }, + { + "pc": 1209, + "op": "JUMP", + "gas": 2997800, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x1e3", + "0x182cae4f502", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x182cae4f502", + "0x182cae4f502", + "0x404" + ] + }, + { + "pc": 1028, + "op": "JUMPDEST", + "gas": 2997792, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x1e3", + "0x182cae4f502", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x182cae4f502", + "0x182cae4f502" + ] + }, + { + "pc": 1029, + "op": "DUP3", + "gas": 2997791, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x1e3", + "0x182cae4f502", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x182cae4f502", + "0x182cae4f502" + ] + }, + { + "pc": 1030, + "op": "MSTORE", + "gas": 2997788, + "gasCost": 6, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x1e3", + "0x182cae4f502", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x182cae4f502", + "0x182cae4f502", + "0x84" + ] + }, + { + "pc": 1031, + "op": "POP", + "gas": 2997782, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x1e3", + "0x182cae4f502", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x182cae4f502" + ] + }, + { + "pc": 1032, + "op": "POP", + "gas": 2997780, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x1e3", + "0x182cae4f502", + "0x84", + "0xa4", + "0x45c", + "0x84" + ] + }, + { + "pc": 1033, + "op": "JUMP", + "gas": 2997778, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x1e3", + "0x182cae4f502", + "0x84", + "0xa4", + "0x45c" + ] + }, + { + "pc": 1116, + "op": "JUMPDEST", + "gas": 2997770, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x1e3", + "0x182cae4f502", + "0x84", + "0xa4" + ] + }, + { + "pc": 1117, + "op": "SWAP3", + "gas": 2997769, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x1e3", + "0x182cae4f502", + "0x84", + "0xa4" + ] + }, + { + "pc": 1118, + "op": "SWAP2", + "gas": 2997766, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0xa4", + "0x182cae4f502", + "0x84", + "0x1e3" + ] + }, + { + "pc": 1119, + "op": "POP", + "gas": 2997763, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0xa4", + "0x1e3", + "0x84", + "0x182cae4f502" + ] + }, + { + "pc": 1120, + "op": "POP", + "gas": 2997761, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0xa4", + "0x1e3", + "0x84" + ] + }, + { + "pc": 1121, + "op": "JUMP", + "gas": 2997759, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0xa4", + "0x1e3" + ] + }, + { + "pc": 483, + "op": "JUMPDEST", + "gas": 2997751, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0xa4" + ] + }, + { + "pc": 484, + "op": "PUSH1", + "gas": 2997750, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0xa4" + ] + }, + { + "pc": 486, + "op": "PUSH1", + "gas": 2997747, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0xa4", + "0x0" + ] + }, + { + "pc": 488, + "op": "MLOAD", + "gas": 2997744, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0xa4", + "0x0", + "0x40" + ] + }, + { + "pc": 489, + "op": "DUP1", + "gas": 2997741, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0xa4", + "0x0", + "0x80" + ] + }, + { + "pc": 490, + "op": "DUP4", + "gas": 2997738, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0xa4", + "0x0", + "0x80", + "0x80" + ] + }, + { + "pc": 491, + "op": "SUB", + "gas": 2997735, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0xa4", + "0x0", + "0x80", + "0x80", + "0xa4" + ] + }, + { + "pc": 492, + "op": "DUP2", + "gas": 2997732, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0xa4", + "0x0", + "0x80", + "0x24" + ] + }, + { + "pc": 493, + "op": "PUSH1", + "gas": 2997729, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80" + ] + }, + { + "pc": 495, + "op": "DUP8", + "gas": 2997726, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0" + ] + }, + { + "pc": 496, + "op": "DUP1", + "gas": 2997723, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4" + ] + }, + { + "pc": 497, + "op": "EXTCODESIZE", + "gas": 2997720, + "gasCost": 2600, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4" + ], + "extraData": { + "codeList": [ + "0x6080604052600436106100555760003560e01c806321848c461461005a5780632e64cec114610083578063b0f2b72a146100ae578063c4e96ec0146100d7578063e5223f88146100f3578063f34176731461010f575b600080fd5b34801561006657600080fd5b50610081600480360381019061007c91906101d7565b61013a565b005b34801561008f57600080fd5b5061009861014f565b6040516100a59190610252565b60405180910390f35b3480156100ba57600080fd5b506100d560048036038101906100d091906101d7565b610158565b005b6100f160048036038101906100ec91906101d7565b610162565b005b61010d600480360381019061010891906101d7565b6101a4565b005b34801561011b57600080fd5b506101246101ae565b6040516101319190610252565b60405180910390f35b80600081905550600061014c57600080fd5b50565b60008054905090565b8060008190555050565b806000819055506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161019b90610232565b60405180910390fd5b8060008190555050565b6000806101ba57600080fd5b600054905090565b6000813590506101d1816102b1565b92915050565b6000602082840312156101e957600080fd5b60006101f7848285016101c2565b91505092915050565b600061020d600c8361026d565b915061021882610288565b602082019050919050565b61022c8161027e565b82525050565b6000602082019050818103600083015261024b81610200565b9050919050565b60006020820190506102676000830184610223565b92915050565b600082825260208201905092915050565b6000819050919050565b7f64656c696265726174656c790000000000000000000000000000000000000000600082015250565b6102ba8161027e565b81146102c557600080fd5b5056fea26469706673582212206fa6988b66dece47dc22658a0058d7f113ce303b23abdbfb3e29ee300a66489464736f6c63430008040033" + ] + } + }, + { + "pc": 498, + "op": "ISZERO", + "gas": 2995120, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x2fe" + ] + }, + { + "pc": 499, + "op": "DUP1", + "gas": 2995117, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x0" + ] + }, + { + "pc": 500, + "op": "ISZERO", + "gas": 2995114, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x0", + "0x0" + ] + }, + { + "pc": 501, + "op": "PUSH2", + "gas": 2995111, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x0", + "0x1" + ] + }, + { + "pc": 504, + "op": "JUMPI", + "gas": 2995108, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x0", + "0x1", + "0x1fd" + ] + }, + { + "pc": 509, + "op": "JUMPDEST", + "gas": 2995098, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x0" + ] + }, + { + "pc": 510, + "op": "POP", + "gas": 2995097, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x0" + ] + }, + { + "pc": 511, + "op": "GAS", + "gas": 2995095, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4" + ] + }, + { + "pc": 512, + "op": "CALL", + "gas": 2995093, + "gasCost": 2948297, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x2db395" + ], + "extraData": { + "codeList": [ + "0x608060405234801561001057600080fd5b506004361061004c5760003560e01c806321848c46146100515780633e23ee431461006d578063b0f2b72a1461008b578063ed231420146100a7575b600080fd5b61006b6004803603810190610066919061038a565b6100c3565b005b61007561015b565b604051610082919061040a565b60405180910390f35b6100a560048036038101906100a0919061038a565b610184565b005b6100c160048036038101906100bc919061038a565b610219565b005b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff166321848c46836040518263ffffffff1660e01b81526004016101229190610447565b600060405180830381600087803b15801561013c57600080fd5b505af192505050801561014d575060015b61015657610157565b5b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663b0f2b72a836040518263ffffffff1660e01b81526004016101e39190610447565b600060405180830381600087803b1580156101fd57600080fd5b505af1158015610211573d6000803e3d6000fd5b505050505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663e5223f886064846040518363ffffffff1660e01b815260040161027a9190610447565b6000604051808303818588803b15801561029357600080fd5b505af1935050505080156102a5575060015b6102ae576102af565b5b5050565b610349816040516024016102c79190610425565b6040516020818303038152906040527f41304fac000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff838183161783525050505061034c565b50565b60008151905060006a636f6e736f6c652e6c6f679050602083016000808483855afa5050505050565b600081359050610384816104fe565b92915050565b60006020828403121561039c57600080fd5b60006103aa84828501610375565b91505092915050565b6103bc8161047e565b82525050565b60006103cd82610462565b6103d7818561046d565b93506103e78185602086016104ba565b6103f0816104ed565b840191505092915050565b610404816104b0565b82525050565b600060208201905061041f60008301846103b3565b92915050565b6000602082019050818103600083015261043f81846103c2565b905092915050565b600060208201905061045c60008301846103fb565b92915050565b600081519050919050565b600082825260208201905092915050565b600061048982610490565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b838110156104d85780820151818401526020810190506104bd565b838111156104e7576000848401525b50505050565b6000601f19601f8301169050919050565b610507816104b0565b811461051257600080fd5b5056fea2646970667358221220f5cc0a3497437233916ec484eed596fa82d20198cc5e4e12a1bc76d6907526b864736f6c63430008040033", + "0x6080604052600436106100555760003560e01c806321848c461461005a5780632e64cec114610083578063b0f2b72a146100ae578063c4e96ec0146100d7578063e5223f88146100f3578063f34176731461010f575b600080fd5b34801561006657600080fd5b50610081600480360381019061007c91906101d7565b61013a565b005b34801561008f57600080fd5b5061009861014f565b6040516100a59190610252565b60405180910390f35b3480156100ba57600080fd5b506100d560048036038101906100d091906101d7565b610158565b005b6100f160048036038101906100ec91906101d7565b610162565b005b61010d600480360381019061010891906101d7565b6101a4565b005b34801561011b57600080fd5b506101246101ae565b6040516101319190610252565b60405180910390f35b80600081905550600061014c57600080fd5b50565b60008054905090565b8060008190555050565b806000819055506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161019b90610232565b60405180910390fd5b8060008190555050565b6000806101ba57600080fd5b600054905090565b6000813590506101d1816102b1565b92915050565b6000602082840312156101e957600080fd5b60006101f7848285016101c2565b91505092915050565b600061020d600c8361026d565b915061021882610288565b602082019050919050565b61022c8161027e565b82525050565b6000602082019050818103600083015261024b81610200565b9050919050565b60006020820190506102676000830184610223565b92915050565b600082825260208201905092915050565b6000819050919050565b7f64656c696265726174656c790000000000000000000000000000000000000000600082015250565b6102ba8161027e565b81146102c557600080fd5b5056fea26469706673582212206fa6988b66dece47dc22658a0058d7f113ce303b23abdbfb3e29ee300a66489464736f6c63430008040033" + ], + "proofList": [ + { + "address": "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "nonce": 1, + "balance": "0x0", + "codeHash": "0x5a58c210f99d8c05214f392685ce9711a7538fb5ed7bcd81fba60e035e56f163" + }, + { + "address": "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "nonce": 1, + "balance": "0x0", + "codeHash": "0x4ee2afb169bef88abed9792edc0230c2cda9c19a48639d2db199479f1176928e" + }, + { + "address": "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "nonce": 1, + "balance": "0x0", + "codeHash": "0x4ee2afb169bef88abed9792edc0230c2cda9c19a48639d2db199479f1176928e" + } + ], + "caller": [ + { + "address": "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "nonce": 1, + "balance": "0x0", + "codeHash": "0x5a58c210f99d8c05214f392685ce9711a7538fb5ed7bcd81fba60e035e56f163" + }, + { + "address": "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "nonce": 1, + "balance": "0x0", + "codeHash": "0x5a58c210f99d8c05214f392685ce9711a7538fb5ed7bcd81fba60e035e56f163" + } + ] + } + }, + { + "pc": 0, + "op": "PUSH1", + "gas": 2948197, + "gasCost": 3, + "depth": 2 + }, + { + "pc": 2, + "op": "PUSH1", + "gas": 2948194, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x80" + ] + }, + { + "pc": 4, + "op": "MSTORE", + "gas": 2948191, + "gasCost": 12, + "depth": 2, + "stack": [ + "0x80", + "0x40" + ] + }, + { + "pc": 5, + "op": "PUSH1", + "gas": 2948179, + "gasCost": 3, + "depth": 2 + }, + { + "pc": 7, + "op": "CALLDATASIZE", + "gas": 2948176, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x4" + ] + }, + { + "pc": 8, + "op": "LT", + "gas": 2948174, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x4", + "0x24" + ] + }, + { + "pc": 9, + "op": "PUSH2", + "gas": 2948171, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x0" + ] + }, + { + "pc": 12, + "op": "JUMPI", + "gas": 2948168, + "gasCost": 10, + "depth": 2, + "stack": [ + "0x0", + "0x55" + ] + }, + { + "pc": 13, + "op": "PUSH1", + "gas": 2948158, + "gasCost": 3, + "depth": 2 + }, + { + "pc": 15, + "op": "CALLDATALOAD", + "gas": 2948155, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x0" + ] + }, + { + "pc": 16, + "op": "PUSH1", + "gas": 2948152, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a00000000000000000000000000000000000000000000000000000182" + ] + }, + { + "pc": 18, + "op": "SHR", + "gas": 2948149, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a00000000000000000000000000000000000000000000000000000182", + "0xe0" + ] + }, + { + "pc": 19, + "op": "DUP1", + "gas": 2948146, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a" + ] + }, + { + "pc": 20, + "op": "PUSH4", + "gas": 2948143, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xb0f2b72a" + ] + }, + { + "pc": 25, + "op": "EQ", + "gas": 2948140, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xb0f2b72a", + "0x21848c46" + ] + }, + { + "pc": 26, + "op": "PUSH2", + "gas": 2948137, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0x0" + ] + }, + { + "pc": 29, + "op": "JUMPI", + "gas": 2948134, + "gasCost": 10, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0x0", + "0x5a" + ] + }, + { + "pc": 30, + "op": "DUP1", + "gas": 2948124, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a" + ] + }, + { + "pc": 31, + "op": "PUSH4", + "gas": 2948121, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xb0f2b72a" + ] + }, + { + "pc": 36, + "op": "EQ", + "gas": 2948118, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xb0f2b72a", + "0x2e64cec1" + ] + }, + { + "pc": 37, + "op": "PUSH2", + "gas": 2948115, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0x0" + ] + }, + { + "pc": 40, + "op": "JUMPI", + "gas": 2948112, + "gasCost": 10, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0x0", + "0x83" + ] + }, + { + "pc": 41, + "op": "DUP1", + "gas": 2948102, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a" + ] + }, + { + "pc": 42, + "op": "PUSH4", + "gas": 2948099, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xb0f2b72a" + ] + }, + { + "pc": 47, + "op": "EQ", + "gas": 2948096, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xb0f2b72a", + "0xb0f2b72a" + ] + }, + { + "pc": 48, + "op": "PUSH2", + "gas": 2948093, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0x1" + ] + }, + { + "pc": 51, + "op": "JUMPI", + "gas": 2948090, + "gasCost": 10, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0x1", + "0xae" + ] + }, + { + "pc": 174, + "op": "JUMPDEST", + "gas": 2948080, + "gasCost": 1, + "depth": 2, + "stack": [ + "0xb0f2b72a" + ] + }, + { + "pc": 175, + "op": "CALLVALUE", + "gas": 2948079, + "gasCost": 2, + "depth": 2, + "stack": [ + "0xb0f2b72a" + ] + }, + { + "pc": 176, + "op": "DUP1", + "gas": 2948077, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0x0" + ] + }, + { + "pc": 177, + "op": "ISZERO", + "gas": 2948074, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0x0", + "0x0" + ] + }, + { + "pc": 178, + "op": "PUSH2", + "gas": 2948071, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0x0", + "0x1" + ] + }, + { + "pc": 181, + "op": "JUMPI", + "gas": 2948068, + "gasCost": 10, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0x0", + "0x1", + "0xba" + ] + }, + { + "pc": 186, + "op": "JUMPDEST", + "gas": 2948058, + "gasCost": 1, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0x0" + ] + }, + { + "pc": 187, + "op": "POP", + "gas": 2948057, + "gasCost": 2, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0x0" + ] + }, + { + "pc": 188, + "op": "PUSH2", + "gas": 2948055, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a" + ] + }, + { + "pc": 191, + "op": "PUSH1", + "gas": 2948052, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xd5" + ] + }, + { + "pc": 193, + "op": "DUP1", + "gas": 2948049, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0x4" + ] + }, + { + "pc": 194, + "op": "CALLDATASIZE", + "gas": 2948046, + "gasCost": 2, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0x4", + "0x4" + ] + }, + { + "pc": 195, + "op": "SUB", + "gas": 2948044, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0x4", + "0x4", + "0x24" + ] + }, + { + "pc": 196, + "op": "DUP2", + "gas": 2948041, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0x4", + "0x20" + ] + }, + { + "pc": 197, + "op": "ADD", + "gas": 2948038, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0x4", + "0x20", + "0x4" + ] + }, + { + "pc": 198, + "op": "SWAP1", + "gas": 2948035, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0x4", + "0x24" + ] + }, + { + "pc": 199, + "op": "PUSH2", + "gas": 2948032, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0x24", + "0x4" + ] + }, + { + "pc": 202, + "op": "SWAP2", + "gas": 2948029, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0x24", + "0x4", + "0xd0" + ] + }, + { + "pc": 203, + "op": "SWAP1", + "gas": 2948026, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x4", + "0x24" + ] + }, + { + "pc": 204, + "op": "PUSH2", + "gas": 2948023, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4" + ] + }, + { + "pc": 207, + "op": "JUMP", + "gas": 2948020, + "gasCost": 8, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x1d7" + ] + }, + { + "pc": 471, + "op": "JUMPDEST", + "gas": 2948012, + "gasCost": 1, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4" + ] + }, + { + "pc": 472, + "op": "PUSH1", + "gas": 2948011, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4" + ] + }, + { + "pc": 474, + "op": "PUSH1", + "gas": 2948008, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 476, + "op": "DUP3", + "gas": 2948005, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x20" + ] + }, + { + "pc": 477, + "op": "DUP5", + "gas": 2948002, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x20", + "0x4" + ] + }, + { + "pc": 478, + "op": "SUB", + "gas": 2947999, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x20", + "0x4", + "0x24" + ] + }, + { + "pc": 479, + "op": "SLT", + "gas": 2947996, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x20", + "0x20" + ] + }, + { + "pc": 480, + "op": "ISZERO", + "gas": 2947993, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0" + ] + }, + { + "pc": 481, + "op": "PUSH2", + "gas": 2947990, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x1" + ] + }, + { + "pc": 484, + "op": "JUMPI", + "gas": 2947987, + "gasCost": 10, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x1", + "0x1e9" + ] + }, + { + "pc": 489, + "op": "JUMPDEST", + "gas": 2947977, + "gasCost": 1, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 490, + "op": "PUSH1", + "gas": 2947976, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 492, + "op": "PUSH2", + "gas": 2947973, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0" + ] + }, + { + "pc": 495, + "op": "DUP5", + "gas": 2947970, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7" + ] + }, + { + "pc": 496, + "op": "DUP3", + "gas": 2947967, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24" + ] + }, + { + "pc": 497, + "op": "DUP6", + "gas": 2947964, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x0" + ] + }, + { + "pc": 498, + "op": "ADD", + "gas": 2947961, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x0", + "0x4" + ] + }, + { + "pc": 499, + "op": "PUSH2", + "gas": 2947958, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4" + ] + }, + { + "pc": 502, + "op": "JUMP", + "gas": 2947955, + "gasCost": 8, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x1c2" + ] + }, + { + "pc": 450, + "op": "JUMPDEST", + "gas": 2947947, + "gasCost": 1, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4" + ] + }, + { + "pc": 451, + "op": "PUSH1", + "gas": 2947946, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4" + ] + }, + { + "pc": 453, + "op": "DUP2", + "gas": 2947943, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 454, + "op": "CALLDATALOAD", + "gas": 2947940, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x0", + "0x4" + ] + }, + { + "pc": 455, + "op": "SWAP1", + "gas": 2947937, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x0", + "0x182cae4f502" + ] + }, + { + "pc": 456, + "op": "POP", + "gas": 2947934, + "gasCost": 2, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cae4f502", + "0x0" + ] + }, + { + "pc": 457, + "op": "PUSH2", + "gas": 2947932, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cae4f502" + ] + }, + { + "pc": 460, + "op": "DUP2", + "gas": 2947929, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cae4f502", + "0x1d1" + ] + }, + { + "pc": 461, + "op": "PUSH2", + "gas": 2947926, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cae4f502", + "0x1d1", + "0x182cae4f502" + ] + }, + { + "pc": 464, + "op": "JUMP", + "gas": 2947923, + "gasCost": 8, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cae4f502", + "0x1d1", + "0x182cae4f502", + "0x2b1" + ] + }, + { + "pc": 689, + "op": "JUMPDEST", + "gas": 2947915, + "gasCost": 1, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cae4f502", + "0x1d1", + "0x182cae4f502" + ] + }, + { + "pc": 690, + "op": "PUSH2", + "gas": 2947914, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cae4f502", + "0x1d1", + "0x182cae4f502" + ] + }, + { + "pc": 693, + "op": "DUP2", + "gas": 2947911, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cae4f502", + "0x1d1", + "0x182cae4f502", + "0x2ba" + ] + }, + { + "pc": 694, + "op": "PUSH2", + "gas": 2947908, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cae4f502", + "0x1d1", + "0x182cae4f502", + "0x2ba", + "0x182cae4f502" + ] + }, + { + "pc": 697, + "op": "JUMP", + "gas": 2947905, + "gasCost": 8, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cae4f502", + "0x1d1", + "0x182cae4f502", + "0x2ba", + "0x182cae4f502", + "0x27e" + ] + }, + { + "pc": 638, + "op": "JUMPDEST", + "gas": 2947897, + "gasCost": 1, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cae4f502", + "0x1d1", + "0x182cae4f502", + "0x2ba", + "0x182cae4f502" + ] + }, + { + "pc": 639, + "op": "PUSH1", + "gas": 2947896, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cae4f502", + "0x1d1", + "0x182cae4f502", + "0x2ba", + "0x182cae4f502" + ] + }, + { + "pc": 641, + "op": "DUP2", + "gas": 2947893, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cae4f502", + "0x1d1", + "0x182cae4f502", + "0x2ba", + "0x182cae4f502", + "0x0" + ] + }, + { + "pc": 642, + "op": "SWAP1", + "gas": 2947890, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cae4f502", + "0x1d1", + "0x182cae4f502", + "0x2ba", + "0x182cae4f502", + "0x0", + "0x182cae4f502" + ] + }, + { + "pc": 643, + "op": "POP", + "gas": 2947887, + "gasCost": 2, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cae4f502", + "0x1d1", + "0x182cae4f502", + "0x2ba", + "0x182cae4f502", + "0x182cae4f502", + "0x0" + ] + }, + { + "pc": 644, + "op": "SWAP2", + "gas": 2947885, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cae4f502", + "0x1d1", + "0x182cae4f502", + "0x2ba", + "0x182cae4f502", + "0x182cae4f502" + ] + }, + { + "pc": 645, + "op": "SWAP1", + "gas": 2947882, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cae4f502", + "0x1d1", + "0x182cae4f502", + "0x182cae4f502", + "0x182cae4f502", + "0x2ba" + ] + }, + { + "pc": 646, + "op": "POP", + "gas": 2947879, + "gasCost": 2, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cae4f502", + "0x1d1", + "0x182cae4f502", + "0x182cae4f502", + "0x2ba", + "0x182cae4f502" + ] + }, + { + "pc": 647, + "op": "JUMP", + "gas": 2947877, + "gasCost": 8, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cae4f502", + "0x1d1", + "0x182cae4f502", + "0x182cae4f502", + "0x2ba" + ] + }, + { + "pc": 698, + "op": "JUMPDEST", + "gas": 2947869, + "gasCost": 1, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cae4f502", + "0x1d1", + "0x182cae4f502", + "0x182cae4f502" + ] + }, + { + "pc": 699, + "op": "DUP2", + "gas": 2947868, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cae4f502", + "0x1d1", + "0x182cae4f502", + "0x182cae4f502" + ] + }, + { + "pc": 700, + "op": "EQ", + "gas": 2947865, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cae4f502", + "0x1d1", + "0x182cae4f502", + "0x182cae4f502", + "0x182cae4f502" + ] + }, + { + "pc": 701, + "op": "PUSH2", + "gas": 2947862, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cae4f502", + "0x1d1", + "0x182cae4f502", + "0x1" + ] + }, + { + "pc": 704, + "op": "JUMPI", + "gas": 2947859, + "gasCost": 10, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cae4f502", + "0x1d1", + "0x182cae4f502", + "0x1", + "0x2c5" + ] + }, + { + "pc": 709, + "op": "JUMPDEST", + "gas": 2947849, + "gasCost": 1, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cae4f502", + "0x1d1", + "0x182cae4f502" + ] + }, + { + "pc": 710, + "op": "POP", + "gas": 2947848, + "gasCost": 2, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cae4f502", + "0x1d1", + "0x182cae4f502" + ] + }, + { + "pc": 711, + "op": "JUMP", + "gas": 2947846, + "gasCost": 8, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cae4f502", + "0x1d1" + ] + }, + { + "pc": 465, + "op": "JUMPDEST", + "gas": 2947838, + "gasCost": 1, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cae4f502" + ] + }, + { + "pc": 466, + "op": "SWAP3", + "gas": 2947837, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cae4f502" + ] + }, + { + "pc": 467, + "op": "SWAP2", + "gas": 2947834, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x182cae4f502", + "0x24", + "0x4", + "0x1f7" + ] + }, + { + "pc": 468, + "op": "POP", + "gas": 2947831, + "gasCost": 2, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x182cae4f502", + "0x1f7", + "0x4", + "0x24" + ] + }, + { + "pc": 469, + "op": "POP", + "gas": 2947829, + "gasCost": 2, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x182cae4f502", + "0x1f7", + "0x4" + ] + }, + { + "pc": 470, + "op": "JUMP", + "gas": 2947827, + "gasCost": 8, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x182cae4f502", + "0x1f7" + ] + }, + { + "pc": 503, + "op": "JUMPDEST", + "gas": 2947819, + "gasCost": 1, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x182cae4f502" + ] + }, + { + "pc": 504, + "op": "SWAP2", + "gas": 2947818, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x182cae4f502" + ] + }, + { + "pc": 505, + "op": "POP", + "gas": 2947815, + "gasCost": 2, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x182cae4f502", + "0x0", + "0x0" + ] + }, + { + "pc": 506, + "op": "POP", + "gas": 2947813, + "gasCost": 2, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x182cae4f502", + "0x0" + ] + }, + { + "pc": 507, + "op": "SWAP3", + "gas": 2947811, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x182cae4f502" + ] + }, + { + "pc": 508, + "op": "SWAP2", + "gas": 2947808, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0x182cae4f502", + "0x24", + "0x4", + "0xd0" + ] + }, + { + "pc": 509, + "op": "POP", + "gas": 2947805, + "gasCost": 2, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0x182cae4f502", + "0xd0", + "0x4", + "0x24" + ] + }, + { + "pc": 510, + "op": "POP", + "gas": 2947803, + "gasCost": 2, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0x182cae4f502", + "0xd0", + "0x4" + ] + }, + { + "pc": 511, + "op": "JUMP", + "gas": 2947801, + "gasCost": 8, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0x182cae4f502", + "0xd0" + ] + }, + { + "pc": 208, + "op": "JUMPDEST", + "gas": 2947793, + "gasCost": 1, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0x182cae4f502" + ] + }, + { + "pc": 209, + "op": "PUSH2", + "gas": 2947792, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0x182cae4f502" + ] + }, + { + "pc": 212, + "op": "JUMP", + "gas": 2947789, + "gasCost": 8, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0x182cae4f502", + "0x158" + ] + }, + { + "pc": 344, + "op": "JUMPDEST", + "gas": 2947781, + "gasCost": 1, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0x182cae4f502" + ] + }, + { + "pc": 345, + "op": "DUP1", + "gas": 2947780, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0x182cae4f502" + ] + }, + { + "pc": 346, + "op": "PUSH1", + "gas": 2947777, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0x182cae4f502", + "0x182cae4f502" + ] + }, + { + "pc": 348, + "op": "DUP2", + "gas": 2947774, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0x182cae4f502", + "0x182cae4f502", + "0x0" + ] + }, + { + "pc": 349, + "op": "SWAP1", + "gas": 2947771, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0x182cae4f502", + "0x182cae4f502", + "0x0", + "0x182cae4f502" + ] + }, + { + "pc": 350, + "op": "SSTORE", + "gas": 2947768, + "gasCost": 22100, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0x182cae4f502", + "0x182cae4f502", + "0x182cae4f502", + "0x0" + ], + "storage": { + "0x0000000000000000000000000000000000000000000000000000000000000000": "0x00000000000000000000000000000000000000000000000000000182cae4f502" + }, + "extraData": { + "proofList": [ + { + "address": "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "nonce": 1, + "balance": "0x0", + "codeHash": "0x4ee2afb169bef88abed9792edc0230c2cda9c19a48639d2db199479f1176928e", + "storage": { + "key": "0x0000000000000000000000000000000000000000000000000000000000000000", + "value": "0x0000000000000000000000000000000000000000000000000000000000000000" + } + } + ] + } + }, + { + "pc": 351, + "op": "POP", + "gas": 2925668, + "gasCost": 2, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0x182cae4f502", + "0x182cae4f502" + ] + }, + { + "pc": 352, + "op": "POP", + "gas": 2925666, + "gasCost": 2, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0x182cae4f502" + ] + }, + { + "pc": 353, + "op": "JUMP", + "gas": 2925664, + "gasCost": 8, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xd5" + ] + }, + { + "pc": 213, + "op": "JUMPDEST", + "gas": 2925656, + "gasCost": 1, + "depth": 2, + "stack": [ + "0xb0f2b72a" + ] + }, + { + "pc": 214, + "op": "STOP", + "gas": 2925655, + "gasCost": 0, + "depth": 2, + "stack": [ + "0xb0f2b72a" + ] + }, + { + "pc": 513, + "op": "ISZERO", + "gas": 2972451, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0xa4", + "0x1" + ] + }, + { + "pc": 514, + "op": "DUP1", + "gas": 2972448, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0xa4", + "0x0" + ] + }, + { + "pc": 515, + "op": "ISZERO", + "gas": 2972445, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0xa4", + "0x0", + "0x0" + ] + }, + { + "pc": 516, + "op": "PUSH2", + "gas": 2972442, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0xa4", + "0x0", + "0x1" + ] + }, + { + "pc": 519, + "op": "JUMPI", + "gas": 2972439, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0xa4", + "0x0", + "0x1", + "0x211" + ] + }, + { + "pc": 529, + "op": "JUMPDEST", + "gas": 2972429, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0xa4", + "0x0" + ] + }, + { + "pc": 530, + "op": "POP", + "gas": 2972428, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0xa4", + "0x0" + ] + }, + { + "pc": 531, + "op": "POP", + "gas": 2972426, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0xa4" + ] + }, + { + "pc": 532, + "op": "POP", + "gas": 2972424, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a" + ] + }, + { + "pc": 533, + "op": "POP", + "gas": 2972422, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4" + ] + }, + { + "pc": 534, + "op": "POP", + "gas": 2972420, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4" + ] + }, + { + "pc": 535, + "op": "POP", + "gas": 2972418, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502" + ] + }, + { + "pc": 536, + "op": "JUMP", + "gas": 2972416, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xb0f2b72a", + "0xa5" + ] + }, + { + "pc": 165, + "op": "JUMPDEST", + "gas": 2972408, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xb0f2b72a" + ] + }, + { + "pc": 166, + "op": "STOP", + "gas": 2972407, + "gasCost": 0, + "depth": 1, + "stack": [ + "0xb0f2b72a" + ] + } + ] + }, + { + "gas": 40106, + "failed": false, + "from": { + "address": "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "nonce": 230, + "balance": "0x56bc75e2d630ffffffffffffffffffffffffffffffffffff334673c27efb42", + "codeHash": "0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470" + }, + "to": { + "address": "0x9cb1b5b04b4dcd5c3ab9bafd2c0ad4fd8a9b3d29", + "nonce": 1, + "balance": "0x0", + "codeHash": "0xb058876f2963a74146d29465bbd582cbc6f2c03a2ec5adc6e6d74513470072a4" + }, + "accountAfter": [ + { + "address": "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "nonce": 231, + "balance": "0x56bc75e2d630ffffffffffffffffffffffffffffffffffff334673c1a3e586", + "codeHash": "0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470" + }, + { + "address": "0x9cb1b5b04b4dcd5c3ab9bafd2c0ad4fd8a9b3d29", + "nonce": 1, + "balance": "0x0", + "codeHash": "0xb058876f2963a74146d29465bbd582cbc6f2c03a2ec5adc6e6d74513470072a4" + } + ], + "codeHash": "0xb058876f2963a74146d29465bbd582cbc6f2c03a2ec5adc6e6d74513470072a4", + "byteCode": "0x608060405234801561001057600080fd5b506004361061007d5760003560e01c80633e23ee431161005b5780633e23ee43146100d8578063651b4aa5146100f6578063a0a4868814610112578063cb4ec52e1461012e5761007d565b8063127017e114610082578063200d2ed21461009e57806336864b1b146100bc575b600080fd5b61009c6004803603810190610097919061050c565b61014a565b005b6100a66101e6565b6040516100b391906105b1565b60405180910390f35b6100d660048036038101906100d1919061050c565b6101f0565b005b6100e06102c3565b6040516100ed9190610576565b60405180910390f35b610110600480360381019061010b919061050c565b6102ec565b005b61012c6004803603810190610127919061050c565b610388565b005b6101486004803603810190610143919061050c565b61045b565b005b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663ed231420836040518263ffffffff1660e01b81526004016101a991906105b1565b600060405180830381600087803b1580156101c357600080fd5b505af11580156101d7573d6000803e3d6000fd5b50505050816001819055505050565b6000600154905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663b0f2b72a836040518263ffffffff1660e01b815260040161024f91906105b1565b600060405180830381600087803b15801561026957600080fd5b505af115801561027d573d6000803e3d6000fd5b50505050816001819055506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016102ba90610591565b60405180910390fd5b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff166321848c46836040518263ffffffff1660e01b815260040161034b91906105b1565b600060405180830381600087803b15801561036557600080fd5b505af1158015610379573d6000803e3d6000fd5b50505050816001819055505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff166321848c46836040518263ffffffff1660e01b81526004016103e791906105b1565b600060405180830381600087803b15801561040157600080fd5b505af1158015610415573d6000803e3d6000fd5b50505050816001819055506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161045290610591565b60405180910390fd5b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663b0f2b72a836040518263ffffffff1660e01b81526004016104ba91906105b1565b600060405180830381600087803b1580156104d457600080fd5b505af11580156104e8573d6000803e3d6000fd5b50505050816001819055505050565b60008135905061050681610642565b92915050565b60006020828403121561051e57600080fd5b600061052c848285016104f7565b91505092915050565b61053e816105dd565b82525050565b6000610551600c836105cc565b915061055c82610619565b602082019050919050565b6105708161060f565b82525050565b600060208201905061058b6000830184610535565b92915050565b600060208201905081810360008301526105aa81610544565b9050919050565b60006020820190506105c66000830184610567565b92915050565b600082825260208201905092915050565b60006105e8826105ef565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b7f64656c696265726174656c790000000000000000000000000000000000000000600082015250565b61064b8161060f565b811461065657600080fd5b5056fea2646970667358221220fc037ef9cac015a49b5d1fa3ef3193503e4aef8398dd3d8a477cd8726cb8d54a64736f6c63430008040033", + "structLogs": [ + { + "pc": 0, + "op": "PUSH1", + "gas": 3000520, + "gasCost": 3, + "depth": 1 + }, + { + "pc": 2, + "op": "PUSH1", + "gas": 3000517, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80" + ] + }, + { + "pc": 4, + "op": "MSTORE", + "gas": 3000514, + "gasCost": 12, + "depth": 1, + "stack": [ + "0x80", + "0x40" + ] + }, + { + "pc": 5, + "op": "CALLVALUE", + "gas": 3000502, + "gasCost": 2, + "depth": 1 + }, + { + "pc": 6, + "op": "DUP1", + "gas": 3000500, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 7, + "op": "ISZERO", + "gas": 3000497, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0", + "0x0" + ] + }, + { + "pc": 8, + "op": "PUSH2", + "gas": 3000494, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0", + "0x1" + ] + }, + { + "pc": 11, + "op": "JUMPI", + "gas": 3000491, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x0", + "0x1", + "0x10" + ] + }, + { + "pc": 16, + "op": "JUMPDEST", + "gas": 3000481, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 17, + "op": "POP", + "gas": 3000480, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 18, + "op": "PUSH1", + "gas": 3000478, + "gasCost": 3, + "depth": 1 + }, + { + "pc": 20, + "op": "CALLDATASIZE", + "gas": 3000475, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x4" + ] + }, + { + "pc": 21, + "op": "LT", + "gas": 3000473, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4", + "0x24" + ] + }, + { + "pc": 22, + "op": "PUSH2", + "gas": 3000470, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 25, + "op": "JUMPI", + "gas": 3000467, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x0", + "0x7d" + ] + }, + { + "pc": 26, + "op": "PUSH1", + "gas": 3000457, + "gasCost": 3, + "depth": 1 + }, + { + "pc": 28, + "op": "CALLDATALOAD", + "gas": 3000454, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 29, + "op": "PUSH1", + "gas": 3000451, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e00000000000000000000000000000000000000000000000000000182" + ] + }, + { + "pc": 31, + "op": "SHR", + "gas": 3000448, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e00000000000000000000000000000000000000000000000000000182", + "0xe0" + ] + }, + { + "pc": 32, + "op": "DUP1", + "gas": 3000445, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e" + ] + }, + { + "pc": 33, + "op": "PUSH4", + "gas": 3000442, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0xcb4ec52e" + ] + }, + { + "pc": 38, + "op": "GT", + "gas": 3000439, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0xcb4ec52e", + "0x3e23ee43" + ] + }, + { + "pc": 39, + "op": "PUSH2", + "gas": 3000436, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x0" + ] + }, + { + "pc": 42, + "op": "JUMPI", + "gas": 3000433, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x0", + "0x5b" + ] + }, + { + "pc": 43, + "op": "DUP1", + "gas": 3000423, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e" + ] + }, + { + "pc": 44, + "op": "PUSH4", + "gas": 3000420, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0xcb4ec52e" + ] + }, + { + "pc": 49, + "op": "EQ", + "gas": 3000417, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0xcb4ec52e", + "0x3e23ee43" + ] + }, + { + "pc": 50, + "op": "PUSH2", + "gas": 3000414, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x0" + ] + }, + { + "pc": 53, + "op": "JUMPI", + "gas": 3000411, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x0", + "0xd8" + ] + }, + { + "pc": 54, + "op": "DUP1", + "gas": 3000401, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e" + ] + }, + { + "pc": 55, + "op": "PUSH4", + "gas": 3000398, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0xcb4ec52e" + ] + }, + { + "pc": 60, + "op": "EQ", + "gas": 3000395, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0xcb4ec52e", + "0x651b4aa5" + ] + }, + { + "pc": 61, + "op": "PUSH2", + "gas": 3000392, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x0" + ] + }, + { + "pc": 64, + "op": "JUMPI", + "gas": 3000389, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x0", + "0xf6" + ] + }, + { + "pc": 65, + "op": "DUP1", + "gas": 3000379, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e" + ] + }, + { + "pc": 66, + "op": "PUSH4", + "gas": 3000376, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0xcb4ec52e" + ] + }, + { + "pc": 71, + "op": "EQ", + "gas": 3000373, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0xcb4ec52e", + "0xa0a48688" + ] + }, + { + "pc": 72, + "op": "PUSH2", + "gas": 3000370, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x0" + ] + }, + { + "pc": 75, + "op": "JUMPI", + "gas": 3000367, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x0", + "0x112" + ] + }, + { + "pc": 76, + "op": "DUP1", + "gas": 3000357, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e" + ] + }, + { + "pc": 77, + "op": "PUSH4", + "gas": 3000354, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0xcb4ec52e" + ] + }, + { + "pc": 82, + "op": "EQ", + "gas": 3000351, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0xcb4ec52e", + "0xcb4ec52e" + ] + }, + { + "pc": 83, + "op": "PUSH2", + "gas": 3000348, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x1" + ] + }, + { + "pc": 86, + "op": "JUMPI", + "gas": 3000345, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x1", + "0x12e" + ] + }, + { + "pc": 302, + "op": "JUMPDEST", + "gas": 3000335, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xcb4ec52e" + ] + }, + { + "pc": 303, + "op": "PUSH2", + "gas": 3000334, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e" + ] + }, + { + "pc": 306, + "op": "PUSH1", + "gas": 3000331, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148" + ] + }, + { + "pc": 308, + "op": "DUP1", + "gas": 3000328, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x4" + ] + }, + { + "pc": 309, + "op": "CALLDATASIZE", + "gas": 3000325, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x4", + "0x4" + ] + }, + { + "pc": 310, + "op": "SUB", + "gas": 3000323, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x4", + "0x4", + "0x24" + ] + }, + { + "pc": 311, + "op": "DUP2", + "gas": 3000320, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x4", + "0x20" + ] + }, + { + "pc": 312, + "op": "ADD", + "gas": 3000317, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x4", + "0x20", + "0x4" + ] + }, + { + "pc": 313, + "op": "SWAP1", + "gas": 3000314, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x4", + "0x24" + ] + }, + { + "pc": 314, + "op": "PUSH2", + "gas": 3000311, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x24", + "0x4" + ] + }, + { + "pc": 317, + "op": "SWAP2", + "gas": 3000308, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x24", + "0x4", + "0x143" + ] + }, + { + "pc": 318, + "op": "SWAP1", + "gas": 3000305, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x143", + "0x4", + "0x24" + ] + }, + { + "pc": 319, + "op": "PUSH2", + "gas": 3000302, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x143", + "0x24", + "0x4" + ] + }, + { + "pc": 322, + "op": "JUMP", + "gas": 3000299, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x143", + "0x24", + "0x4", + "0x50c" + ] + }, + { + "pc": 1292, + "op": "JUMPDEST", + "gas": 3000291, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x143", + "0x24", + "0x4" + ] + }, + { + "pc": 1293, + "op": "PUSH1", + "gas": 3000290, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x143", + "0x24", + "0x4" + ] + }, + { + "pc": 1295, + "op": "PUSH1", + "gas": 3000287, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x143", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 1297, + "op": "DUP3", + "gas": 3000284, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x143", + "0x24", + "0x4", + "0x0", + "0x20" + ] + }, + { + "pc": 1298, + "op": "DUP5", + "gas": 3000281, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x143", + "0x24", + "0x4", + "0x0", + "0x20", + "0x4" + ] + }, + { + "pc": 1299, + "op": "SUB", + "gas": 3000278, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x143", + "0x24", + "0x4", + "0x0", + "0x20", + "0x4", + "0x24" + ] + }, + { + "pc": 1300, + "op": "SLT", + "gas": 3000275, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x143", + "0x24", + "0x4", + "0x0", + "0x20", + "0x20" + ] + }, + { + "pc": 1301, + "op": "ISZERO", + "gas": 3000272, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x143", + "0x24", + "0x4", + "0x0", + "0x0" + ] + }, + { + "pc": 1302, + "op": "PUSH2", + "gas": 3000269, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x143", + "0x24", + "0x4", + "0x0", + "0x1" + ] + }, + { + "pc": 1305, + "op": "JUMPI", + "gas": 3000266, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x143", + "0x24", + "0x4", + "0x0", + "0x1", + "0x51e" + ] + }, + { + "pc": 1310, + "op": "JUMPDEST", + "gas": 3000256, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x143", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 1311, + "op": "PUSH1", + "gas": 3000255, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x143", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 1313, + "op": "PUSH2", + "gas": 3000252, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x143", + "0x24", + "0x4", + "0x0", + "0x0" + ] + }, + { + "pc": 1316, + "op": "DUP5", + "gas": 3000249, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x143", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c" + ] + }, + { + "pc": 1317, + "op": "DUP3", + "gas": 3000246, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x143", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24" + ] + }, + { + "pc": 1318, + "op": "DUP6", + "gas": 3000243, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x143", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x0" + ] + }, + { + "pc": 1319, + "op": "ADD", + "gas": 3000240, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x143", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x0", + "0x4" + ] + }, + { + "pc": 1320, + "op": "PUSH2", + "gas": 3000237, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x143", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4" + ] + }, + { + "pc": 1323, + "op": "JUMP", + "gas": 3000234, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x143", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x4f7" + ] + }, + { + "pc": 1271, + "op": "JUMPDEST", + "gas": 3000226, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x143", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4" + ] + }, + { + "pc": 1272, + "op": "PUSH1", + "gas": 3000225, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x143", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4" + ] + }, + { + "pc": 1274, + "op": "DUP2", + "gas": 3000222, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x143", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 1275, + "op": "CALLDATALOAD", + "gas": 3000219, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x143", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x0", + "0x4" + ] + }, + { + "pc": 1276, + "op": "SWAP1", + "gas": 3000216, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x143", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x0", + "0x182cae4f502" + ] + }, + { + "pc": 1277, + "op": "POP", + "gas": 3000213, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x143", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x182cae4f502", + "0x0" + ] + }, + { + "pc": 1278, + "op": "PUSH2", + "gas": 3000211, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x143", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x182cae4f502" + ] + }, + { + "pc": 1281, + "op": "DUP2", + "gas": 3000208, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x143", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x182cae4f502", + "0x506" + ] + }, + { + "pc": 1282, + "op": "PUSH2", + "gas": 3000205, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x143", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x182cae4f502", + "0x506", + "0x182cae4f502" + ] + }, + { + "pc": 1285, + "op": "JUMP", + "gas": 3000202, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x143", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x182cae4f502", + "0x506", + "0x182cae4f502", + "0x642" + ] + }, + { + "pc": 1602, + "op": "JUMPDEST", + "gas": 3000194, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x143", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x182cae4f502", + "0x506", + "0x182cae4f502" + ] + }, + { + "pc": 1603, + "op": "PUSH2", + "gas": 3000193, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x143", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x182cae4f502", + "0x506", + "0x182cae4f502" + ] + }, + { + "pc": 1606, + "op": "DUP2", + "gas": 3000190, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x143", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x182cae4f502", + "0x506", + "0x182cae4f502", + "0x64b" + ] + }, + { + "pc": 1607, + "op": "PUSH2", + "gas": 3000187, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x143", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x182cae4f502", + "0x506", + "0x182cae4f502", + "0x64b", + "0x182cae4f502" + ] + }, + { + "pc": 1610, + "op": "JUMP", + "gas": 3000184, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x143", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x182cae4f502", + "0x506", + "0x182cae4f502", + "0x64b", + "0x182cae4f502", + "0x60f" + ] + }, + { + "pc": 1551, + "op": "JUMPDEST", + "gas": 3000176, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x143", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x182cae4f502", + "0x506", + "0x182cae4f502", + "0x64b", + "0x182cae4f502" + ] + }, + { + "pc": 1552, + "op": "PUSH1", + "gas": 3000175, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x143", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x182cae4f502", + "0x506", + "0x182cae4f502", + "0x64b", + "0x182cae4f502" + ] + }, + { + "pc": 1554, + "op": "DUP2", + "gas": 3000172, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x143", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x182cae4f502", + "0x506", + "0x182cae4f502", + "0x64b", + "0x182cae4f502", + "0x0" + ] + }, + { + "pc": 1555, + "op": "SWAP1", + "gas": 3000169, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x143", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x182cae4f502", + "0x506", + "0x182cae4f502", + "0x64b", + "0x182cae4f502", + "0x0", + "0x182cae4f502" + ] + }, + { + "pc": 1556, + "op": "POP", + "gas": 3000166, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x143", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x182cae4f502", + "0x506", + "0x182cae4f502", + "0x64b", + "0x182cae4f502", + "0x182cae4f502", + "0x0" + ] + }, + { + "pc": 1557, + "op": "SWAP2", + "gas": 3000164, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x143", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x182cae4f502", + "0x506", + "0x182cae4f502", + "0x64b", + "0x182cae4f502", + "0x182cae4f502" + ] + }, + { + "pc": 1558, + "op": "SWAP1", + "gas": 3000161, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x143", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x182cae4f502", + "0x506", + "0x182cae4f502", + "0x182cae4f502", + "0x182cae4f502", + "0x64b" + ] + }, + { + "pc": 1559, + "op": "POP", + "gas": 3000158, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x143", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x182cae4f502", + "0x506", + "0x182cae4f502", + "0x182cae4f502", + "0x64b", + "0x182cae4f502" + ] + }, + { + "pc": 1560, + "op": "JUMP", + "gas": 3000156, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x143", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x182cae4f502", + "0x506", + "0x182cae4f502", + "0x182cae4f502", + "0x64b" + ] + }, + { + "pc": 1611, + "op": "JUMPDEST", + "gas": 3000148, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x143", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x182cae4f502", + "0x506", + "0x182cae4f502", + "0x182cae4f502" + ] + }, + { + "pc": 1612, + "op": "DUP2", + "gas": 3000147, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x143", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x182cae4f502", + "0x506", + "0x182cae4f502", + "0x182cae4f502" + ] + }, + { + "pc": 1613, + "op": "EQ", + "gas": 3000144, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x143", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x182cae4f502", + "0x506", + "0x182cae4f502", + "0x182cae4f502", + "0x182cae4f502" + ] + }, + { + "pc": 1614, + "op": "PUSH2", + "gas": 3000141, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x143", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x182cae4f502", + "0x506", + "0x182cae4f502", + "0x1" + ] + }, + { + "pc": 1617, + "op": "JUMPI", + "gas": 3000138, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x143", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x182cae4f502", + "0x506", + "0x182cae4f502", + "0x1", + "0x656" + ] + }, + { + "pc": 1622, + "op": "JUMPDEST", + "gas": 3000128, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x143", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x182cae4f502", + "0x506", + "0x182cae4f502" + ] + }, + { + "pc": 1623, + "op": "POP", + "gas": 3000127, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x143", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x182cae4f502", + "0x506", + "0x182cae4f502" + ] + }, + { + "pc": 1624, + "op": "JUMP", + "gas": 3000125, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x143", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x182cae4f502", + "0x506" + ] + }, + { + "pc": 1286, + "op": "JUMPDEST", + "gas": 3000117, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x143", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x182cae4f502" + ] + }, + { + "pc": 1287, + "op": "SWAP3", + "gas": 3000116, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x143", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x182cae4f502" + ] + }, + { + "pc": 1288, + "op": "SWAP2", + "gas": 3000113, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x143", + "0x24", + "0x4", + "0x0", + "0x0", + "0x182cae4f502", + "0x24", + "0x4", + "0x52c" + ] + }, + { + "pc": 1289, + "op": "POP", + "gas": 3000110, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x143", + "0x24", + "0x4", + "0x0", + "0x0", + "0x182cae4f502", + "0x52c", + "0x4", + "0x24" + ] + }, + { + "pc": 1290, + "op": "POP", + "gas": 3000108, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x143", + "0x24", + "0x4", + "0x0", + "0x0", + "0x182cae4f502", + "0x52c", + "0x4" + ] + }, + { + "pc": 1291, + "op": "JUMP", + "gas": 3000106, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x143", + "0x24", + "0x4", + "0x0", + "0x0", + "0x182cae4f502", + "0x52c" + ] + }, + { + "pc": 1324, + "op": "JUMPDEST", + "gas": 3000098, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x143", + "0x24", + "0x4", + "0x0", + "0x0", + "0x182cae4f502" + ] + }, + { + "pc": 1325, + "op": "SWAP2", + "gas": 3000097, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x143", + "0x24", + "0x4", + "0x0", + "0x0", + "0x182cae4f502" + ] + }, + { + "pc": 1326, + "op": "POP", + "gas": 3000094, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x143", + "0x24", + "0x4", + "0x182cae4f502", + "0x0", + "0x0" + ] + }, + { + "pc": 1327, + "op": "POP", + "gas": 3000092, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x143", + "0x24", + "0x4", + "0x182cae4f502", + "0x0" + ] + }, + { + "pc": 1328, + "op": "SWAP3", + "gas": 3000090, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x143", + "0x24", + "0x4", + "0x182cae4f502" + ] + }, + { + "pc": 1329, + "op": "SWAP2", + "gas": 3000087, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x182cae4f502", + "0x24", + "0x4", + "0x143" + ] + }, + { + "pc": 1330, + "op": "POP", + "gas": 3000084, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x182cae4f502", + "0x143", + "0x4", + "0x24" + ] + }, + { + "pc": 1331, + "op": "POP", + "gas": 3000082, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x182cae4f502", + "0x143", + "0x4" + ] + }, + { + "pc": 1332, + "op": "JUMP", + "gas": 3000080, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x182cae4f502", + "0x143" + ] + }, + { + "pc": 323, + "op": "JUMPDEST", + "gas": 3000072, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x182cae4f502" + ] + }, + { + "pc": 324, + "op": "PUSH2", + "gas": 3000071, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x182cae4f502" + ] + }, + { + "pc": 327, + "op": "JUMP", + "gas": 3000068, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x182cae4f502", + "0x45b" + ] + }, + { + "pc": 1115, + "op": "JUMPDEST", + "gas": 3000060, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x182cae4f502" + ] + }, + { + "pc": 1116, + "op": "PUSH1", + "gas": 3000059, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x182cae4f502" + ] + }, + { + "pc": 1118, + "op": "DUP1", + "gas": 3000056, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x182cae4f502", + "0x0" + ] + }, + { + "pc": 1119, + "op": "PUSH1", + "gas": 3000053, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x182cae4f502", + "0x0", + "0x0" + ] + }, + { + "pc": 1121, + "op": "SWAP1", + "gas": 3000050, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x182cae4f502", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 1122, + "op": "SLOAD", + "gas": 3000047, + "gasCost": 2100, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x182cae4f502", + "0x0", + "0x0", + "0x0" + ], + "storage": { + "0x0000000000000000000000000000000000000000000000000000000000000000": "0x000000000000000000000000ed491d2c35f615cf1591bb6322486f1efcc9f6b5" + }, + "extraData": { + "proofList": [ + { + "address": "0x9cb1b5b04b4dcd5c3ab9bafd2c0ad4fd8a9b3d29", + "nonce": 1, + "balance": "0x0", + "codeHash": "0xb058876f2963a74146d29465bbd582cbc6f2c03a2ec5adc6e6d74513470072a4", + "storage": { + "key": "0x0000000000000000000000000000000000000000000000000000000000000000", + "value": "0x000000000000000000000000ed491d2c35f615cf1591bb6322486f1efcc9f6b5" + } + } + ] + } + }, + { + "pc": 1123, + "op": "SWAP1", + "gas": 2997947, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x182cae4f502", + "0x0", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5" + ] + }, + { + "pc": 1124, + "op": "PUSH2", + "gas": 2997944, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x182cae4f502", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x0" + ] + }, + { + "pc": 1127, + "op": "EXP", + "gas": 2997941, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x182cae4f502", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x0", + "0x100" + ] + }, + { + "pc": 1128, + "op": "SWAP1", + "gas": 2997931, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x182cae4f502", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x1" + ] + }, + { + "pc": 1129, + "op": "DIV", + "gas": 2997928, + "gasCost": 5, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x182cae4f502", + "0x0", + "0x1", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5" + ] + }, + { + "pc": 1130, + "op": "PUSH20", + "gas": 2997923, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x182cae4f502", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5" + ] + }, + { + "pc": 1151, + "op": "AND", + "gas": 2997920, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x182cae4f502", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 1152, + "op": "SWAP1", + "gas": 2997917, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x182cae4f502", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5" + ] + }, + { + "pc": 1153, + "op": "POP", + "gas": 2997914, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x182cae4f502", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x0" + ] + }, + { + "pc": 1154, + "op": "DUP1", + "gas": 2997912, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x182cae4f502", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5" + ] + }, + { + "pc": 1155, + "op": "PUSH20", + "gas": 2997909, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x182cae4f502", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5" + ] + }, + { + "pc": 1176, + "op": "AND", + "gas": 2997906, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x182cae4f502", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 1177, + "op": "PUSH4", + "gas": 2997903, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x182cae4f502", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5" + ] + }, + { + "pc": 1182, + "op": "DUP4", + "gas": 2997900, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x182cae4f502", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a" + ] + }, + { + "pc": 1183, + "op": "PUSH1", + "gas": 2997897, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x182cae4f502", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0x182cae4f502" + ] + }, + { + "pc": 1185, + "op": "MLOAD", + "gas": 2997894, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x182cae4f502", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0x182cae4f502", + "0x40" + ] + }, + { + "pc": 1186, + "op": "DUP3", + "gas": 2997891, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x182cae4f502", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0x182cae4f502", + "0x80" + ] + }, + { + "pc": 1187, + "op": "PUSH4", + "gas": 2997888, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x182cae4f502", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0x182cae4f502", + "0x80", + "0xb0f2b72a" + ] + }, + { + "pc": 1192, + "op": "AND", + "gas": 2997885, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x182cae4f502", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0x182cae4f502", + "0x80", + "0xb0f2b72a", + "0xffffffff" + ] + }, + { + "pc": 1193, + "op": "PUSH1", + "gas": 2997882, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x182cae4f502", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0x182cae4f502", + "0x80", + "0xb0f2b72a" + ] + }, + { + "pc": 1195, + "op": "SHL", + "gas": 2997879, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x182cae4f502", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0x182cae4f502", + "0x80", + "0xb0f2b72a", + "0xe0" + ] + }, + { + "pc": 1196, + "op": "DUP2", + "gas": 2997876, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x182cae4f502", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0x182cae4f502", + "0x80", + "0xb0f2b72a00000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 1197, + "op": "MSTORE", + "gas": 2997873, + "gasCost": 9, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x182cae4f502", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0x182cae4f502", + "0x80", + "0xb0f2b72a00000000000000000000000000000000000000000000000000000000", + "0x80" + ] + }, + { + "pc": 1198, + "op": "PUSH1", + "gas": 2997864, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x182cae4f502", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0x182cae4f502", + "0x80" + ] + }, + { + "pc": 1200, + "op": "ADD", + "gas": 2997861, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x182cae4f502", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0x182cae4f502", + "0x80", + "0x4" + ] + }, + { + "pc": 1201, + "op": "PUSH2", + "gas": 2997858, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x182cae4f502", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0x182cae4f502", + "0x84" + ] + }, + { + "pc": 1204, + "op": "SWAP2", + "gas": 2997855, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x182cae4f502", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0x182cae4f502", + "0x84", + "0x4ba" + ] + }, + { + "pc": 1205, + "op": "SWAP1", + "gas": 2997852, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x182cae4f502", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0x4ba", + "0x84", + "0x182cae4f502" + ] + }, + { + "pc": 1206, + "op": "PUSH2", + "gas": 2997849, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x182cae4f502", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0x4ba", + "0x182cae4f502", + "0x84" + ] + }, + { + "pc": 1209, + "op": "JUMP", + "gas": 2997846, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x182cae4f502", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0x4ba", + "0x182cae4f502", + "0x84", + "0x5b1" + ] + }, + { + "pc": 1457, + "op": "JUMPDEST", + "gas": 2997838, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x182cae4f502", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0x4ba", + "0x182cae4f502", + "0x84" + ] + }, + { + "pc": 1458, + "op": "PUSH1", + "gas": 2997837, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x182cae4f502", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0x4ba", + "0x182cae4f502", + "0x84" + ] + }, + { + "pc": 1460, + "op": "PUSH1", + "gas": 2997834, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x182cae4f502", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0x4ba", + "0x182cae4f502", + "0x84", + "0x0" + ] + }, + { + "pc": 1462, + "op": "DUP3", + "gas": 2997831, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x182cae4f502", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0x4ba", + "0x182cae4f502", + "0x84", + "0x0", + "0x20" + ] + }, + { + "pc": 1463, + "op": "ADD", + "gas": 2997828, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x182cae4f502", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0x4ba", + "0x182cae4f502", + "0x84", + "0x0", + "0x20", + "0x84" + ] + }, + { + "pc": 1464, + "op": "SWAP1", + "gas": 2997825, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x182cae4f502", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0x4ba", + "0x182cae4f502", + "0x84", + "0x0", + "0xa4" + ] + }, + { + "pc": 1465, + "op": "POP", + "gas": 2997822, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x182cae4f502", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0x4ba", + "0x182cae4f502", + "0x84", + "0xa4", + "0x0" + ] + }, + { + "pc": 1466, + "op": "PUSH2", + "gas": 2997820, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x182cae4f502", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0x4ba", + "0x182cae4f502", + "0x84", + "0xa4" + ] + }, + { + "pc": 1469, + "op": "PUSH1", + "gas": 2997817, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x182cae4f502", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0x4ba", + "0x182cae4f502", + "0x84", + "0xa4", + "0x5c6" + ] + }, + { + "pc": 1471, + "op": "DUP4", + "gas": 2997814, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x182cae4f502", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0x4ba", + "0x182cae4f502", + "0x84", + "0xa4", + "0x5c6", + "0x0" + ] + }, + { + "pc": 1472, + "op": "ADD", + "gas": 2997811, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x182cae4f502", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0x4ba", + "0x182cae4f502", + "0x84", + "0xa4", + "0x5c6", + "0x0", + "0x84" + ] + }, + { + "pc": 1473, + "op": "DUP5", + "gas": 2997808, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x182cae4f502", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0x4ba", + "0x182cae4f502", + "0x84", + "0xa4", + "0x5c6", + "0x84" + ] + }, + { + "pc": 1474, + "op": "PUSH2", + "gas": 2997805, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x182cae4f502", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0x4ba", + "0x182cae4f502", + "0x84", + "0xa4", + "0x5c6", + "0x84", + "0x182cae4f502" + ] + }, + { + "pc": 1477, + "op": "JUMP", + "gas": 2997802, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x182cae4f502", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0x4ba", + "0x182cae4f502", + "0x84", + "0xa4", + "0x5c6", + "0x84", + "0x182cae4f502", + "0x567" + ] + }, + { + "pc": 1383, + "op": "JUMPDEST", + "gas": 2997794, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x182cae4f502", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0x4ba", + "0x182cae4f502", + "0x84", + "0xa4", + "0x5c6", + "0x84", + "0x182cae4f502" + ] + }, + { + "pc": 1384, + "op": "PUSH2", + "gas": 2997793, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x182cae4f502", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0x4ba", + "0x182cae4f502", + "0x84", + "0xa4", + "0x5c6", + "0x84", + "0x182cae4f502" + ] + }, + { + "pc": 1387, + "op": "DUP2", + "gas": 2997790, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x182cae4f502", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0x4ba", + "0x182cae4f502", + "0x84", + "0xa4", + "0x5c6", + "0x84", + "0x182cae4f502", + "0x570" + ] + }, + { + "pc": 1388, + "op": "PUSH2", + "gas": 2997787, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x182cae4f502", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0x4ba", + "0x182cae4f502", + "0x84", + "0xa4", + "0x5c6", + "0x84", + "0x182cae4f502", + "0x570", + "0x182cae4f502" + ] + }, + { + "pc": 1391, + "op": "JUMP", + "gas": 2997784, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x182cae4f502", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0x4ba", + "0x182cae4f502", + "0x84", + "0xa4", + "0x5c6", + "0x84", + "0x182cae4f502", + "0x570", + "0x182cae4f502", + "0x60f" + ] + }, + { + "pc": 1551, + "op": "JUMPDEST", + "gas": 2997776, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x182cae4f502", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0x4ba", + "0x182cae4f502", + "0x84", + "0xa4", + "0x5c6", + "0x84", + "0x182cae4f502", + "0x570", + "0x182cae4f502" + ] + }, + { + "pc": 1552, + "op": "PUSH1", + "gas": 2997775, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x182cae4f502", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0x4ba", + "0x182cae4f502", + "0x84", + "0xa4", + "0x5c6", + "0x84", + "0x182cae4f502", + "0x570", + "0x182cae4f502" + ] + }, + { + "pc": 1554, + "op": "DUP2", + "gas": 2997772, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x182cae4f502", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0x4ba", + "0x182cae4f502", + "0x84", + "0xa4", + "0x5c6", + "0x84", + "0x182cae4f502", + "0x570", + "0x182cae4f502", + "0x0" + ] + }, + { + "pc": 1555, + "op": "SWAP1", + "gas": 2997769, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x182cae4f502", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0x4ba", + "0x182cae4f502", + "0x84", + "0xa4", + "0x5c6", + "0x84", + "0x182cae4f502", + "0x570", + "0x182cae4f502", + "0x0", + "0x182cae4f502" + ] + }, + { + "pc": 1556, + "op": "POP", + "gas": 2997766, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x182cae4f502", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0x4ba", + "0x182cae4f502", + "0x84", + "0xa4", + "0x5c6", + "0x84", + "0x182cae4f502", + "0x570", + "0x182cae4f502", + "0x182cae4f502", + "0x0" + ] + }, + { + "pc": 1557, + "op": "SWAP2", + "gas": 2997764, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x182cae4f502", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0x4ba", + "0x182cae4f502", + "0x84", + "0xa4", + "0x5c6", + "0x84", + "0x182cae4f502", + "0x570", + "0x182cae4f502", + "0x182cae4f502" + ] + }, + { + "pc": 1558, + "op": "SWAP1", + "gas": 2997761, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x182cae4f502", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0x4ba", + "0x182cae4f502", + "0x84", + "0xa4", + "0x5c6", + "0x84", + "0x182cae4f502", + "0x182cae4f502", + "0x182cae4f502", + "0x570" + ] + }, + { + "pc": 1559, + "op": "POP", + "gas": 2997758, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x182cae4f502", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0x4ba", + "0x182cae4f502", + "0x84", + "0xa4", + "0x5c6", + "0x84", + "0x182cae4f502", + "0x182cae4f502", + "0x570", + "0x182cae4f502" + ] + }, + { + "pc": 1560, + "op": "JUMP", + "gas": 2997756, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x182cae4f502", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0x4ba", + "0x182cae4f502", + "0x84", + "0xa4", + "0x5c6", + "0x84", + "0x182cae4f502", + "0x182cae4f502", + "0x570" + ] + }, + { + "pc": 1392, + "op": "JUMPDEST", + "gas": 2997748, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x182cae4f502", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0x4ba", + "0x182cae4f502", + "0x84", + "0xa4", + "0x5c6", + "0x84", + "0x182cae4f502", + "0x182cae4f502" + ] + }, + { + "pc": 1393, + "op": "DUP3", + "gas": 2997747, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x182cae4f502", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0x4ba", + "0x182cae4f502", + "0x84", + "0xa4", + "0x5c6", + "0x84", + "0x182cae4f502", + "0x182cae4f502" + ] + }, + { + "pc": 1394, + "op": "MSTORE", + "gas": 2997744, + "gasCost": 6, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x182cae4f502", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0x4ba", + "0x182cae4f502", + "0x84", + "0xa4", + "0x5c6", + "0x84", + "0x182cae4f502", + "0x182cae4f502", + "0x84" + ] + }, + { + "pc": 1395, + "op": "POP", + "gas": 2997738, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x182cae4f502", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0x4ba", + "0x182cae4f502", + "0x84", + "0xa4", + "0x5c6", + "0x84", + "0x182cae4f502" + ] + }, + { + "pc": 1396, + "op": "POP", + "gas": 2997736, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x182cae4f502", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0x4ba", + "0x182cae4f502", + "0x84", + "0xa4", + "0x5c6", + "0x84" + ] + }, + { + "pc": 1397, + "op": "JUMP", + "gas": 2997734, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x182cae4f502", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0x4ba", + "0x182cae4f502", + "0x84", + "0xa4", + "0x5c6" + ] + }, + { + "pc": 1478, + "op": "JUMPDEST", + "gas": 2997726, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x182cae4f502", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0x4ba", + "0x182cae4f502", + "0x84", + "0xa4" + ] + }, + { + "pc": 1479, + "op": "SWAP3", + "gas": 2997725, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x182cae4f502", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0x4ba", + "0x182cae4f502", + "0x84", + "0xa4" + ] + }, + { + "pc": 1480, + "op": "SWAP2", + "gas": 2997722, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x182cae4f502", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0xa4", + "0x182cae4f502", + "0x84", + "0x4ba" + ] + }, + { + "pc": 1481, + "op": "POP", + "gas": 2997719, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x182cae4f502", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0xa4", + "0x4ba", + "0x84", + "0x182cae4f502" + ] + }, + { + "pc": 1482, + "op": "POP", + "gas": 2997717, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x182cae4f502", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0xa4", + "0x4ba", + "0x84" + ] + }, + { + "pc": 1483, + "op": "JUMP", + "gas": 2997715, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x182cae4f502", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0xa4", + "0x4ba" + ] + }, + { + "pc": 1210, + "op": "JUMPDEST", + "gas": 2997707, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x182cae4f502", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0xa4" + ] + }, + { + "pc": 1211, + "op": "PUSH1", + "gas": 2997706, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x182cae4f502", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0xa4" + ] + }, + { + "pc": 1213, + "op": "PUSH1", + "gas": 2997703, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x182cae4f502", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0xa4", + "0x0" + ] + }, + { + "pc": 1215, + "op": "MLOAD", + "gas": 2997700, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x182cae4f502", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0xa4", + "0x0", + "0x40" + ] + }, + { + "pc": 1216, + "op": "DUP1", + "gas": 2997697, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x182cae4f502", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0xa4", + "0x0", + "0x80" + ] + }, + { + "pc": 1217, + "op": "DUP4", + "gas": 2997694, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x182cae4f502", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0xa4", + "0x0", + "0x80", + "0x80" + ] + }, + { + "pc": 1218, + "op": "SUB", + "gas": 2997691, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x182cae4f502", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0xa4", + "0x0", + "0x80", + "0x80", + "0xa4" + ] + }, + { + "pc": 1219, + "op": "DUP2", + "gas": 2997688, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x182cae4f502", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0xa4", + "0x0", + "0x80", + "0x24" + ] + }, + { + "pc": 1220, + "op": "PUSH1", + "gas": 2997685, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x182cae4f502", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80" + ] + }, + { + "pc": 1222, + "op": "DUP8", + "gas": 2997682, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x182cae4f502", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0" + ] + }, + { + "pc": 1223, + "op": "DUP1", + "gas": 2997679, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x182cae4f502", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5" + ] + }, + { + "pc": 1224, + "op": "EXTCODESIZE", + "gas": 2997676, + "gasCost": 2600, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x182cae4f502", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5" + ], + "extraData": { + "codeList": [ + "0x608060405234801561001057600080fd5b506004361061004c5760003560e01c806321848c46146100515780633e23ee431461006d578063b0f2b72a1461008b578063ed231420146100a7575b600080fd5b61006b6004803603810190610066919061038a565b6100c3565b005b61007561015b565b604051610082919061040a565b60405180910390f35b6100a560048036038101906100a0919061038a565b610184565b005b6100c160048036038101906100bc919061038a565b610219565b005b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff166321848c46836040518263ffffffff1660e01b81526004016101229190610447565b600060405180830381600087803b15801561013c57600080fd5b505af192505050801561014d575060015b61015657610157565b5b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663b0f2b72a836040518263ffffffff1660e01b81526004016101e39190610447565b600060405180830381600087803b1580156101fd57600080fd5b505af1158015610211573d6000803e3d6000fd5b505050505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663e5223f886064846040518363ffffffff1660e01b815260040161027a9190610447565b6000604051808303818588803b15801561029357600080fd5b505af1935050505080156102a5575060015b6102ae576102af565b5b5050565b610349816040516024016102c79190610425565b6040516020818303038152906040527f41304fac000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff838183161783525050505061034c565b50565b60008151905060006a636f6e736f6c652e6c6f679050602083016000808483855afa5050505050565b600081359050610384816104fe565b92915050565b60006020828403121561039c57600080fd5b60006103aa84828501610375565b91505092915050565b6103bc8161047e565b82525050565b60006103cd82610462565b6103d7818561046d565b93506103e78185602086016104ba565b6103f0816104ed565b840191505092915050565b610404816104b0565b82525050565b600060208201905061041f60008301846103b3565b92915050565b6000602082019050818103600083015261043f81846103c2565b905092915050565b600060208201905061045c60008301846103fb565b92915050565b600081519050919050565b600082825260208201905092915050565b600061048982610490565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b838110156104d85780820151818401526020810190506104bd565b838111156104e7576000848401525b50505050565b6000601f19601f8301169050919050565b610507816104b0565b811461051257600080fd5b5056fea2646970667358221220f5cc0a3497437233916ec484eed596fa82d20198cc5e4e12a1bc76d6907526b864736f6c63430008040033" + ] + } + }, + { + "pc": 1225, + "op": "ISZERO", + "gas": 2995076, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x182cae4f502", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x54b" + ] + }, + { + "pc": 1226, + "op": "DUP1", + "gas": 2995073, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x182cae4f502", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x0" + ] + }, + { + "pc": 1227, + "op": "ISZERO", + "gas": 2995070, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x182cae4f502", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x0", + "0x0" + ] + }, + { + "pc": 1228, + "op": "PUSH2", + "gas": 2995067, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x182cae4f502", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x0", + "0x1" + ] + }, + { + "pc": 1231, + "op": "JUMPI", + "gas": 2995064, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x182cae4f502", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x0", + "0x1", + "0x4d4" + ] + }, + { + "pc": 1236, + "op": "JUMPDEST", + "gas": 2995054, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x182cae4f502", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x0" + ] + }, + { + "pc": 1237, + "op": "POP", + "gas": 2995053, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x182cae4f502", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x0" + ] + }, + { + "pc": 1238, + "op": "GAS", + "gas": 2995051, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x182cae4f502", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5" + ] + }, + { + "pc": 1239, + "op": "CALL", + "gas": 2995049, + "gasCost": 2948253, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x182cae4f502", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x2db369" + ], + "extraData": { + "codeList": [ + "0x608060405234801561001057600080fd5b506004361061007d5760003560e01c80633e23ee431161005b5780633e23ee43146100d8578063651b4aa5146100f6578063a0a4868814610112578063cb4ec52e1461012e5761007d565b8063127017e114610082578063200d2ed21461009e57806336864b1b146100bc575b600080fd5b61009c6004803603810190610097919061050c565b61014a565b005b6100a66101e6565b6040516100b391906105b1565b60405180910390f35b6100d660048036038101906100d1919061050c565b6101f0565b005b6100e06102c3565b6040516100ed9190610576565b60405180910390f35b610110600480360381019061010b919061050c565b6102ec565b005b61012c6004803603810190610127919061050c565b610388565b005b6101486004803603810190610143919061050c565b61045b565b005b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663ed231420836040518263ffffffff1660e01b81526004016101a991906105b1565b600060405180830381600087803b1580156101c357600080fd5b505af11580156101d7573d6000803e3d6000fd5b50505050816001819055505050565b6000600154905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663b0f2b72a836040518263ffffffff1660e01b815260040161024f91906105b1565b600060405180830381600087803b15801561026957600080fd5b505af115801561027d573d6000803e3d6000fd5b50505050816001819055506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016102ba90610591565b60405180910390fd5b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff166321848c46836040518263ffffffff1660e01b815260040161034b91906105b1565b600060405180830381600087803b15801561036557600080fd5b505af1158015610379573d6000803e3d6000fd5b50505050816001819055505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff166321848c46836040518263ffffffff1660e01b81526004016103e791906105b1565b600060405180830381600087803b15801561040157600080fd5b505af1158015610415573d6000803e3d6000fd5b50505050816001819055506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161045290610591565b60405180910390fd5b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663b0f2b72a836040518263ffffffff1660e01b81526004016104ba91906105b1565b600060405180830381600087803b1580156104d457600080fd5b505af11580156104e8573d6000803e3d6000fd5b50505050816001819055505050565b60008135905061050681610642565b92915050565b60006020828403121561051e57600080fd5b600061052c848285016104f7565b91505092915050565b61053e816105dd565b82525050565b6000610551600c836105cc565b915061055c82610619565b602082019050919050565b6105708161060f565b82525050565b600060208201905061058b6000830184610535565b92915050565b600060208201905081810360008301526105aa81610544565b9050919050565b60006020820190506105c66000830184610567565b92915050565b600082825260208201905092915050565b60006105e8826105ef565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b7f64656c696265726174656c790000000000000000000000000000000000000000600082015250565b61064b8161060f565b811461065657600080fd5b5056fea2646970667358221220fc037ef9cac015a49b5d1fa3ef3193503e4aef8398dd3d8a477cd8726cb8d54a64736f6c63430008040033", + "0x608060405234801561001057600080fd5b506004361061004c5760003560e01c806321848c46146100515780633e23ee431461006d578063b0f2b72a1461008b578063ed231420146100a7575b600080fd5b61006b6004803603810190610066919061038a565b6100c3565b005b61007561015b565b604051610082919061040a565b60405180910390f35b6100a560048036038101906100a0919061038a565b610184565b005b6100c160048036038101906100bc919061038a565b610219565b005b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff166321848c46836040518263ffffffff1660e01b81526004016101229190610447565b600060405180830381600087803b15801561013c57600080fd5b505af192505050801561014d575060015b61015657610157565b5b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663b0f2b72a836040518263ffffffff1660e01b81526004016101e39190610447565b600060405180830381600087803b1580156101fd57600080fd5b505af1158015610211573d6000803e3d6000fd5b505050505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663e5223f886064846040518363ffffffff1660e01b815260040161027a9190610447565b6000604051808303818588803b15801561029357600080fd5b505af1935050505080156102a5575060015b6102ae576102af565b5b5050565b610349816040516024016102c79190610425565b6040516020818303038152906040527f41304fac000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff838183161783525050505061034c565b50565b60008151905060006a636f6e736f6c652e6c6f679050602083016000808483855afa5050505050565b600081359050610384816104fe565b92915050565b60006020828403121561039c57600080fd5b60006103aa84828501610375565b91505092915050565b6103bc8161047e565b82525050565b60006103cd82610462565b6103d7818561046d565b93506103e78185602086016104ba565b6103f0816104ed565b840191505092915050565b610404816104b0565b82525050565b600060208201905061041f60008301846103b3565b92915050565b6000602082019050818103600083015261043f81846103c2565b905092915050565b600060208201905061045c60008301846103fb565b92915050565b600081519050919050565b600082825260208201905092915050565b600061048982610490565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b838110156104d85780820151818401526020810190506104bd565b838111156104e7576000848401525b50505050565b6000601f19601f8301169050919050565b610507816104b0565b811461051257600080fd5b5056fea2646970667358221220f5cc0a3497437233916ec484eed596fa82d20198cc5e4e12a1bc76d6907526b864736f6c63430008040033" + ], + "proofList": [ + { + "address": "0x9cb1b5b04b4dcd5c3ab9bafd2c0ad4fd8a9b3d29", + "nonce": 1, + "balance": "0x0", + "codeHash": "0xb058876f2963a74146d29465bbd582cbc6f2c03a2ec5adc6e6d74513470072a4" + }, + { + "address": "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "nonce": 1, + "balance": "0x0", + "codeHash": "0x5a58c210f99d8c05214f392685ce9711a7538fb5ed7bcd81fba60e035e56f163" + }, + { + "address": "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "nonce": 1, + "balance": "0x0", + "codeHash": "0x5a58c210f99d8c05214f392685ce9711a7538fb5ed7bcd81fba60e035e56f163" + } + ], + "caller": [ + { + "address": "0x9cb1b5b04b4dcd5c3ab9bafd2c0ad4fd8a9b3d29", + "nonce": 1, + "balance": "0x0", + "codeHash": "0xb058876f2963a74146d29465bbd582cbc6f2c03a2ec5adc6e6d74513470072a4" + }, + { + "address": "0x9cb1b5b04b4dcd5c3ab9bafd2c0ad4fd8a9b3d29", + "nonce": 1, + "balance": "0x0", + "codeHash": "0xb058876f2963a74146d29465bbd582cbc6f2c03a2ec5adc6e6d74513470072a4" + } + ] + } + }, + { + "pc": 0, + "op": "PUSH1", + "gas": 2948153, + "gasCost": 3, + "depth": 2 + }, + { + "pc": 2, + "op": "PUSH1", + "gas": 2948150, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x80" + ] + }, + { + "pc": 4, + "op": "MSTORE", + "gas": 2948147, + "gasCost": 12, + "depth": 2, + "stack": [ + "0x80", + "0x40" + ] + }, + { + "pc": 5, + "op": "CALLVALUE", + "gas": 2948135, + "gasCost": 2, + "depth": 2 + }, + { + "pc": 6, + "op": "DUP1", + "gas": 2948133, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x0" + ] + }, + { + "pc": 7, + "op": "ISZERO", + "gas": 2948130, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x0", + "0x0" + ] + }, + { + "pc": 8, + "op": "PUSH2", + "gas": 2948127, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x0", + "0x1" + ] + }, + { + "pc": 11, + "op": "JUMPI", + "gas": 2948124, + "gasCost": 10, + "depth": 2, + "stack": [ + "0x0", + "0x1", + "0x10" + ] + }, + { + "pc": 16, + "op": "JUMPDEST", + "gas": 2948114, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x0" + ] + }, + { + "pc": 17, + "op": "POP", + "gas": 2948113, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x0" + ] + }, + { + "pc": 18, + "op": "PUSH1", + "gas": 2948111, + "gasCost": 3, + "depth": 2 + }, + { + "pc": 20, + "op": "CALLDATASIZE", + "gas": 2948108, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x4" + ] + }, + { + "pc": 21, + "op": "LT", + "gas": 2948106, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x4", + "0x24" + ] + }, + { + "pc": 22, + "op": "PUSH2", + "gas": 2948103, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x0" + ] + }, + { + "pc": 25, + "op": "JUMPI", + "gas": 2948100, + "gasCost": 10, + "depth": 2, + "stack": [ + "0x0", + "0x4c" + ] + }, + { + "pc": 26, + "op": "PUSH1", + "gas": 2948090, + "gasCost": 3, + "depth": 2 + }, + { + "pc": 28, + "op": "CALLDATALOAD", + "gas": 2948087, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x0" + ] + }, + { + "pc": 29, + "op": "PUSH1", + "gas": 2948084, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a00000000000000000000000000000000000000000000000000000182" + ] + }, + { + "pc": 31, + "op": "SHR", + "gas": 2948081, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a00000000000000000000000000000000000000000000000000000182", + "0xe0" + ] + }, + { + "pc": 32, + "op": "DUP1", + "gas": 2948078, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a" + ] + }, + { + "pc": 33, + "op": "PUSH4", + "gas": 2948075, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xb0f2b72a" + ] + }, + { + "pc": 38, + "op": "EQ", + "gas": 2948072, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xb0f2b72a", + "0x21848c46" + ] + }, + { + "pc": 39, + "op": "PUSH2", + "gas": 2948069, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0x0" + ] + }, + { + "pc": 42, + "op": "JUMPI", + "gas": 2948066, + "gasCost": 10, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0x0", + "0x51" + ] + }, + { + "pc": 43, + "op": "DUP1", + "gas": 2948056, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a" + ] + }, + { + "pc": 44, + "op": "PUSH4", + "gas": 2948053, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xb0f2b72a" + ] + }, + { + "pc": 49, + "op": "EQ", + "gas": 2948050, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xb0f2b72a", + "0x3e23ee43" + ] + }, + { + "pc": 50, + "op": "PUSH2", + "gas": 2948047, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0x0" + ] + }, + { + "pc": 53, + "op": "JUMPI", + "gas": 2948044, + "gasCost": 10, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0x0", + "0x6d" + ] + }, + { + "pc": 54, + "op": "DUP1", + "gas": 2948034, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a" + ] + }, + { + "pc": 55, + "op": "PUSH4", + "gas": 2948031, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xb0f2b72a" + ] + }, + { + "pc": 60, + "op": "EQ", + "gas": 2948028, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xb0f2b72a", + "0xb0f2b72a" + ] + }, + { + "pc": 61, + "op": "PUSH2", + "gas": 2948025, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0x1" + ] + }, + { + "pc": 64, + "op": "JUMPI", + "gas": 2948022, + "gasCost": 10, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0x1", + "0x8b" + ] + }, + { + "pc": 139, + "op": "JUMPDEST", + "gas": 2948012, + "gasCost": 1, + "depth": 2, + "stack": [ + "0xb0f2b72a" + ] + }, + { + "pc": 140, + "op": "PUSH2", + "gas": 2948011, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a" + ] + }, + { + "pc": 143, + "op": "PUSH1", + "gas": 2948008, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5" + ] + }, + { + "pc": 145, + "op": "DUP1", + "gas": 2948005, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x4" + ] + }, + { + "pc": 146, + "op": "CALLDATASIZE", + "gas": 2948002, + "gasCost": 2, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x4", + "0x4" + ] + }, + { + "pc": 147, + "op": "SUB", + "gas": 2948000, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x4", + "0x4", + "0x24" + ] + }, + { + "pc": 148, + "op": "DUP2", + "gas": 2947997, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x4", + "0x20" + ] + }, + { + "pc": 149, + "op": "ADD", + "gas": 2947994, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x4", + "0x20", + "0x4" + ] + }, + { + "pc": 150, + "op": "SWAP1", + "gas": 2947991, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x4", + "0x24" + ] + }, + { + "pc": 151, + "op": "PUSH2", + "gas": 2947988, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x24", + "0x4" + ] + }, + { + "pc": 154, + "op": "SWAP2", + "gas": 2947985, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x24", + "0x4", + "0xa0" + ] + }, + { + "pc": 155, + "op": "SWAP1", + "gas": 2947982, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x4", + "0x24" + ] + }, + { + "pc": 156, + "op": "PUSH2", + "gas": 2947979, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4" + ] + }, + { + "pc": 159, + "op": "JUMP", + "gas": 2947976, + "gasCost": 8, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x38a" + ] + }, + { + "pc": 906, + "op": "JUMPDEST", + "gas": 2947968, + "gasCost": 1, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4" + ] + }, + { + "pc": 907, + "op": "PUSH1", + "gas": 2947967, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4" + ] + }, + { + "pc": 909, + "op": "PUSH1", + "gas": 2947964, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 911, + "op": "DUP3", + "gas": 2947961, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x20" + ] + }, + { + "pc": 912, + "op": "DUP5", + "gas": 2947958, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x20", + "0x4" + ] + }, + { + "pc": 913, + "op": "SUB", + "gas": 2947955, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x20", + "0x4", + "0x24" + ] + }, + { + "pc": 914, + "op": "SLT", + "gas": 2947952, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x20", + "0x20" + ] + }, + { + "pc": 915, + "op": "ISZERO", + "gas": 2947949, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0" + ] + }, + { + "pc": 916, + "op": "PUSH2", + "gas": 2947946, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x1" + ] + }, + { + "pc": 919, + "op": "JUMPI", + "gas": 2947943, + "gasCost": 10, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x1", + "0x39c" + ] + }, + { + "pc": 924, + "op": "JUMPDEST", + "gas": 2947933, + "gasCost": 1, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 925, + "op": "PUSH1", + "gas": 2947932, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 927, + "op": "PUSH2", + "gas": 2947929, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0" + ] + }, + { + "pc": 930, + "op": "DUP5", + "gas": 2947926, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa" + ] + }, + { + "pc": 931, + "op": "DUP3", + "gas": 2947923, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24" + ] + }, + { + "pc": 932, + "op": "DUP6", + "gas": 2947920, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x0" + ] + }, + { + "pc": 933, + "op": "ADD", + "gas": 2947917, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x0", + "0x4" + ] + }, + { + "pc": 934, + "op": "PUSH2", + "gas": 2947914, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4" + ] + }, + { + "pc": 937, + "op": "JUMP", + "gas": 2947911, + "gasCost": 8, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x375" + ] + }, + { + "pc": 885, + "op": "JUMPDEST", + "gas": 2947903, + "gasCost": 1, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4" + ] + }, + { + "pc": 886, + "op": "PUSH1", + "gas": 2947902, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4" + ] + }, + { + "pc": 888, + "op": "DUP2", + "gas": 2947899, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 889, + "op": "CALLDATALOAD", + "gas": 2947896, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x0", + "0x4" + ] + }, + { + "pc": 890, + "op": "SWAP1", + "gas": 2947893, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x0", + "0x182cae4f502" + ] + }, + { + "pc": 891, + "op": "POP", + "gas": 2947890, + "gasCost": 2, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cae4f502", + "0x0" + ] + }, + { + "pc": 892, + "op": "PUSH2", + "gas": 2947888, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cae4f502" + ] + }, + { + "pc": 895, + "op": "DUP2", + "gas": 2947885, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cae4f502", + "0x384" + ] + }, + { + "pc": 896, + "op": "PUSH2", + "gas": 2947882, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cae4f502", + "0x384", + "0x182cae4f502" + ] + }, + { + "pc": 899, + "op": "JUMP", + "gas": 2947879, + "gasCost": 8, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cae4f502", + "0x384", + "0x182cae4f502", + "0x4fe" + ] + }, + { + "pc": 1278, + "op": "JUMPDEST", + "gas": 2947871, + "gasCost": 1, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cae4f502", + "0x384", + "0x182cae4f502" + ] + }, + { + "pc": 1279, + "op": "PUSH2", + "gas": 2947870, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cae4f502", + "0x384", + "0x182cae4f502" + ] + }, + { + "pc": 1282, + "op": "DUP2", + "gas": 2947867, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cae4f502", + "0x384", + "0x182cae4f502", + "0x507" + ] + }, + { + "pc": 1283, + "op": "PUSH2", + "gas": 2947864, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cae4f502", + "0x384", + "0x182cae4f502", + "0x507", + "0x182cae4f502" + ] + }, + { + "pc": 1286, + "op": "JUMP", + "gas": 2947861, + "gasCost": 8, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cae4f502", + "0x384", + "0x182cae4f502", + "0x507", + "0x182cae4f502", + "0x4b0" + ] + }, + { + "pc": 1200, + "op": "JUMPDEST", + "gas": 2947853, + "gasCost": 1, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cae4f502", + "0x384", + "0x182cae4f502", + "0x507", + "0x182cae4f502" + ] + }, + { + "pc": 1201, + "op": "PUSH1", + "gas": 2947852, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cae4f502", + "0x384", + "0x182cae4f502", + "0x507", + "0x182cae4f502" + ] + }, + { + "pc": 1203, + "op": "DUP2", + "gas": 2947849, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cae4f502", + "0x384", + "0x182cae4f502", + "0x507", + "0x182cae4f502", + "0x0" + ] + }, + { + "pc": 1204, + "op": "SWAP1", + "gas": 2947846, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cae4f502", + "0x384", + "0x182cae4f502", + "0x507", + "0x182cae4f502", + "0x0", + "0x182cae4f502" + ] + }, + { + "pc": 1205, + "op": "POP", + "gas": 2947843, + "gasCost": 2, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cae4f502", + "0x384", + "0x182cae4f502", + "0x507", + "0x182cae4f502", + "0x182cae4f502", + "0x0" + ] + }, + { + "pc": 1206, + "op": "SWAP2", + "gas": 2947841, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cae4f502", + "0x384", + "0x182cae4f502", + "0x507", + "0x182cae4f502", + "0x182cae4f502" + ] + }, + { + "pc": 1207, + "op": "SWAP1", + "gas": 2947838, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cae4f502", + "0x384", + "0x182cae4f502", + "0x182cae4f502", + "0x182cae4f502", + "0x507" + ] + }, + { + "pc": 1208, + "op": "POP", + "gas": 2947835, + "gasCost": 2, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cae4f502", + "0x384", + "0x182cae4f502", + "0x182cae4f502", + "0x507", + "0x182cae4f502" + ] + }, + { + "pc": 1209, + "op": "JUMP", + "gas": 2947833, + "gasCost": 8, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cae4f502", + "0x384", + "0x182cae4f502", + "0x182cae4f502", + "0x507" + ] + }, + { + "pc": 1287, + "op": "JUMPDEST", + "gas": 2947825, + "gasCost": 1, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cae4f502", + "0x384", + "0x182cae4f502", + "0x182cae4f502" + ] + }, + { + "pc": 1288, + "op": "DUP2", + "gas": 2947824, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cae4f502", + "0x384", + "0x182cae4f502", + "0x182cae4f502" + ] + }, + { + "pc": 1289, + "op": "EQ", + "gas": 2947821, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cae4f502", + "0x384", + "0x182cae4f502", + "0x182cae4f502", + "0x182cae4f502" + ] + }, + { + "pc": 1290, + "op": "PUSH2", + "gas": 2947818, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cae4f502", + "0x384", + "0x182cae4f502", + "0x1" + ] + }, + { + "pc": 1293, + "op": "JUMPI", + "gas": 2947815, + "gasCost": 10, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cae4f502", + "0x384", + "0x182cae4f502", + "0x1", + "0x512" + ] + }, + { + "pc": 1298, + "op": "JUMPDEST", + "gas": 2947805, + "gasCost": 1, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cae4f502", + "0x384", + "0x182cae4f502" + ] + }, + { + "pc": 1299, + "op": "POP", + "gas": 2947804, + "gasCost": 2, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cae4f502", + "0x384", + "0x182cae4f502" + ] + }, + { + "pc": 1300, + "op": "JUMP", + "gas": 2947802, + "gasCost": 8, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cae4f502", + "0x384" + ] + }, + { + "pc": 900, + "op": "JUMPDEST", + "gas": 2947794, + "gasCost": 1, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cae4f502" + ] + }, + { + "pc": 901, + "op": "SWAP3", + "gas": 2947793, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cae4f502" + ] + }, + { + "pc": 902, + "op": "SWAP2", + "gas": 2947790, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x182cae4f502", + "0x24", + "0x4", + "0x3aa" + ] + }, + { + "pc": 903, + "op": "POP", + "gas": 2947787, + "gasCost": 2, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x182cae4f502", + "0x3aa", + "0x4", + "0x24" + ] + }, + { + "pc": 904, + "op": "POP", + "gas": 2947785, + "gasCost": 2, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x182cae4f502", + "0x3aa", + "0x4" + ] + }, + { + "pc": 905, + "op": "JUMP", + "gas": 2947783, + "gasCost": 8, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x182cae4f502", + "0x3aa" + ] + }, + { + "pc": 938, + "op": "JUMPDEST", + "gas": 2947775, + "gasCost": 1, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x182cae4f502" + ] + }, + { + "pc": 939, + "op": "SWAP2", + "gas": 2947774, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x182cae4f502" + ] + }, + { + "pc": 940, + "op": "POP", + "gas": 2947771, + "gasCost": 2, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x182cae4f502", + "0x0", + "0x0" + ] + }, + { + "pc": 941, + "op": "POP", + "gas": 2947769, + "gasCost": 2, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x182cae4f502", + "0x0" + ] + }, + { + "pc": 942, + "op": "SWAP3", + "gas": 2947767, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x182cae4f502" + ] + }, + { + "pc": 943, + "op": "SWAP2", + "gas": 2947764, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x24", + "0x4", + "0xa0" + ] + }, + { + "pc": 944, + "op": "POP", + "gas": 2947761, + "gasCost": 2, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0xa0", + "0x4", + "0x24" + ] + }, + { + "pc": 945, + "op": "POP", + "gas": 2947759, + "gasCost": 2, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0xa0", + "0x4" + ] + }, + { + "pc": 946, + "op": "JUMP", + "gas": 2947757, + "gasCost": 8, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0xa0" + ] + }, + { + "pc": 160, + "op": "JUMPDEST", + "gas": 2947749, + "gasCost": 1, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502" + ] + }, + { + "pc": 161, + "op": "PUSH2", + "gas": 2947748, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502" + ] + }, + { + "pc": 164, + "op": "JUMP", + "gas": 2947745, + "gasCost": 8, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x184" + ] + }, + { + "pc": 388, + "op": "JUMPDEST", + "gas": 2947737, + "gasCost": 1, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502" + ] + }, + { + "pc": 389, + "op": "PUSH1", + "gas": 2947736, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502" + ] + }, + { + "pc": 391, + "op": "DUP1", + "gas": 2947733, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x0" + ] + }, + { + "pc": 392, + "op": "PUSH1", + "gas": 2947730, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x0", + "0x0" + ] + }, + { + "pc": 394, + "op": "SWAP1", + "gas": 2947727, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 395, + "op": "SLOAD", + "gas": 2947724, + "gasCost": 2100, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x0", + "0x0", + "0x0" + ], + "storage": { + "0x0000000000000000000000000000000000000000000000000000000000000000": "0x0000000000000000000000007db8ae361a8746cb1346d3390b00d7122e3286e4" + }, + "extraData": { + "proofList": [ + { + "address": "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "nonce": 1, + "balance": "0x0", + "codeHash": "0x5a58c210f99d8c05214f392685ce9711a7538fb5ed7bcd81fba60e035e56f163", + "storage": { + "key": "0x0000000000000000000000000000000000000000000000000000000000000000", + "value": "0x0000000000000000000000007db8ae361a8746cb1346d3390b00d7122e3286e4" + } + } + ] + } + }, + { + "pc": 396, + "op": "SWAP1", + "gas": 2945624, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x0", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4" + ] + }, + { + "pc": 397, + "op": "PUSH2", + "gas": 2945621, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x0" + ] + }, + { + "pc": 400, + "op": "EXP", + "gas": 2945618, + "gasCost": 10, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x0", + "0x100" + ] + }, + { + "pc": 401, + "op": "SWAP1", + "gas": 2945608, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x1" + ] + }, + { + "pc": 402, + "op": "DIV", + "gas": 2945605, + "gasCost": 5, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x0", + "0x1", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4" + ] + }, + { + "pc": 403, + "op": "PUSH20", + "gas": 2945600, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4" + ] + }, + { + "pc": 424, + "op": "AND", + "gas": 2945597, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 425, + "op": "SWAP1", + "gas": 2945594, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4" + ] + }, + { + "pc": 426, + "op": "POP", + "gas": 2945591, + "gasCost": 2, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x0" + ] + }, + { + "pc": 427, + "op": "DUP1", + "gas": 2945589, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4" + ] + }, + { + "pc": 428, + "op": "PUSH20", + "gas": 2945586, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4" + ] + }, + { + "pc": 449, + "op": "AND", + "gas": 2945583, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 450, + "op": "PUSH4", + "gas": 2945580, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4" + ] + }, + { + "pc": 455, + "op": "DUP4", + "gas": 2945577, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a" + ] + }, + { + "pc": 456, + "op": "PUSH1", + "gas": 2945574, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x182cae4f502" + ] + }, + { + "pc": 458, + "op": "MLOAD", + "gas": 2945571, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x182cae4f502", + "0x40" + ] + }, + { + "pc": 459, + "op": "DUP3", + "gas": 2945568, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x182cae4f502", + "0x80" + ] + }, + { + "pc": 460, + "op": "PUSH4", + "gas": 2945565, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x182cae4f502", + "0x80", + "0xb0f2b72a" + ] + }, + { + "pc": 465, + "op": "AND", + "gas": 2945562, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x182cae4f502", + "0x80", + "0xb0f2b72a", + "0xffffffff" + ] + }, + { + "pc": 466, + "op": "PUSH1", + "gas": 2945559, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x182cae4f502", + "0x80", + "0xb0f2b72a" + ] + }, + { + "pc": 468, + "op": "SHL", + "gas": 2945556, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x182cae4f502", + "0x80", + "0xb0f2b72a", + "0xe0" + ] + }, + { + "pc": 469, + "op": "DUP2", + "gas": 2945553, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x182cae4f502", + "0x80", + "0xb0f2b72a00000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 470, + "op": "MSTORE", + "gas": 2945550, + "gasCost": 9, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x182cae4f502", + "0x80", + "0xb0f2b72a00000000000000000000000000000000000000000000000000000000", + "0x80" + ] + }, + { + "pc": 471, + "op": "PUSH1", + "gas": 2945541, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x182cae4f502", + "0x80" + ] + }, + { + "pc": 473, + "op": "ADD", + "gas": 2945538, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x182cae4f502", + "0x80", + "0x4" + ] + }, + { + "pc": 474, + "op": "PUSH2", + "gas": 2945535, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x182cae4f502", + "0x84" + ] + }, + { + "pc": 477, + "op": "SWAP2", + "gas": 2945532, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x182cae4f502", + "0x84", + "0x1e3" + ] + }, + { + "pc": 478, + "op": "SWAP1", + "gas": 2945529, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x1e3", + "0x84", + "0x182cae4f502" + ] + }, + { + "pc": 479, + "op": "PUSH2", + "gas": 2945526, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x1e3", + "0x182cae4f502", + "0x84" + ] + }, + { + "pc": 482, + "op": "JUMP", + "gas": 2945523, + "gasCost": 8, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x1e3", + "0x182cae4f502", + "0x84", + "0x447" + ] + }, + { + "pc": 1095, + "op": "JUMPDEST", + "gas": 2945515, + "gasCost": 1, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x1e3", + "0x182cae4f502", + "0x84" + ] + }, + { + "pc": 1096, + "op": "PUSH1", + "gas": 2945514, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x1e3", + "0x182cae4f502", + "0x84" + ] + }, + { + "pc": 1098, + "op": "PUSH1", + "gas": 2945511, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x1e3", + "0x182cae4f502", + "0x84", + "0x0" + ] + }, + { + "pc": 1100, + "op": "DUP3", + "gas": 2945508, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x1e3", + "0x182cae4f502", + "0x84", + "0x0", + "0x20" + ] + }, + { + "pc": 1101, + "op": "ADD", + "gas": 2945505, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x1e3", + "0x182cae4f502", + "0x84", + "0x0", + "0x20", + "0x84" + ] + }, + { + "pc": 1102, + "op": "SWAP1", + "gas": 2945502, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x1e3", + "0x182cae4f502", + "0x84", + "0x0", + "0xa4" + ] + }, + { + "pc": 1103, + "op": "POP", + "gas": 2945499, + "gasCost": 2, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x1e3", + "0x182cae4f502", + "0x84", + "0xa4", + "0x0" + ] + }, + { + "pc": 1104, + "op": "PUSH2", + "gas": 2945497, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x1e3", + "0x182cae4f502", + "0x84", + "0xa4" + ] + }, + { + "pc": 1107, + "op": "PUSH1", + "gas": 2945494, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x1e3", + "0x182cae4f502", + "0x84", + "0xa4", + "0x45c" + ] + }, + { + "pc": 1109, + "op": "DUP4", + "gas": 2945491, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x1e3", + "0x182cae4f502", + "0x84", + "0xa4", + "0x45c", + "0x0" + ] + }, + { + "pc": 1110, + "op": "ADD", + "gas": 2945488, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x1e3", + "0x182cae4f502", + "0x84", + "0xa4", + "0x45c", + "0x0", + "0x84" + ] + }, + { + "pc": 1111, + "op": "DUP5", + "gas": 2945485, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x1e3", + "0x182cae4f502", + "0x84", + "0xa4", + "0x45c", + "0x84" + ] + }, + { + "pc": 1112, + "op": "PUSH2", + "gas": 2945482, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x1e3", + "0x182cae4f502", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x182cae4f502" + ] + }, + { + "pc": 1115, + "op": "JUMP", + "gas": 2945479, + "gasCost": 8, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x1e3", + "0x182cae4f502", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x182cae4f502", + "0x3fb" + ] + }, + { + "pc": 1019, + "op": "JUMPDEST", + "gas": 2945471, + "gasCost": 1, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x1e3", + "0x182cae4f502", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x182cae4f502" + ] + }, + { + "pc": 1020, + "op": "PUSH2", + "gas": 2945470, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x1e3", + "0x182cae4f502", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x182cae4f502" + ] + }, + { + "pc": 1023, + "op": "DUP2", + "gas": 2945467, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x1e3", + "0x182cae4f502", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x182cae4f502", + "0x404" + ] + }, + { + "pc": 1024, + "op": "PUSH2", + "gas": 2945464, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x1e3", + "0x182cae4f502", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x182cae4f502", + "0x404", + "0x182cae4f502" + ] + }, + { + "pc": 1027, + "op": "JUMP", + "gas": 2945461, + "gasCost": 8, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x1e3", + "0x182cae4f502", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x182cae4f502", + "0x404", + "0x182cae4f502", + "0x4b0" + ] + }, + { + "pc": 1200, + "op": "JUMPDEST", + "gas": 2945453, + "gasCost": 1, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x1e3", + "0x182cae4f502", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x182cae4f502", + "0x404", + "0x182cae4f502" + ] + }, + { + "pc": 1201, + "op": "PUSH1", + "gas": 2945452, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x1e3", + "0x182cae4f502", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x182cae4f502", + "0x404", + "0x182cae4f502" + ] + }, + { + "pc": 1203, + "op": "DUP2", + "gas": 2945449, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x1e3", + "0x182cae4f502", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x182cae4f502", + "0x404", + "0x182cae4f502", + "0x0" + ] + }, + { + "pc": 1204, + "op": "SWAP1", + "gas": 2945446, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x1e3", + "0x182cae4f502", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x182cae4f502", + "0x404", + "0x182cae4f502", + "0x0", + "0x182cae4f502" + ] + }, + { + "pc": 1205, + "op": "POP", + "gas": 2945443, + "gasCost": 2, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x1e3", + "0x182cae4f502", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x182cae4f502", + "0x404", + "0x182cae4f502", + "0x182cae4f502", + "0x0" + ] + }, + { + "pc": 1206, + "op": "SWAP2", + "gas": 2945441, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x1e3", + "0x182cae4f502", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x182cae4f502", + "0x404", + "0x182cae4f502", + "0x182cae4f502" + ] + }, + { + "pc": 1207, + "op": "SWAP1", + "gas": 2945438, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x1e3", + "0x182cae4f502", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x182cae4f502", + "0x182cae4f502", + "0x182cae4f502", + "0x404" + ] + }, + { + "pc": 1208, + "op": "POP", + "gas": 2945435, + "gasCost": 2, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x1e3", + "0x182cae4f502", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x182cae4f502", + "0x182cae4f502", + "0x404", + "0x182cae4f502" + ] + }, + { + "pc": 1209, + "op": "JUMP", + "gas": 2945433, + "gasCost": 8, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x1e3", + "0x182cae4f502", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x182cae4f502", + "0x182cae4f502", + "0x404" + ] + }, + { + "pc": 1028, + "op": "JUMPDEST", + "gas": 2945425, + "gasCost": 1, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x1e3", + "0x182cae4f502", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x182cae4f502", + "0x182cae4f502" + ] + }, + { + "pc": 1029, + "op": "DUP3", + "gas": 2945424, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x1e3", + "0x182cae4f502", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x182cae4f502", + "0x182cae4f502" + ] + }, + { + "pc": 1030, + "op": "MSTORE", + "gas": 2945421, + "gasCost": 6, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x1e3", + "0x182cae4f502", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x182cae4f502", + "0x182cae4f502", + "0x84" + ] + }, + { + "pc": 1031, + "op": "POP", + "gas": 2945415, + "gasCost": 2, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x1e3", + "0x182cae4f502", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x182cae4f502" + ] + }, + { + "pc": 1032, + "op": "POP", + "gas": 2945413, + "gasCost": 2, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x1e3", + "0x182cae4f502", + "0x84", + "0xa4", + "0x45c", + "0x84" + ] + }, + { + "pc": 1033, + "op": "JUMP", + "gas": 2945411, + "gasCost": 8, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x1e3", + "0x182cae4f502", + "0x84", + "0xa4", + "0x45c" + ] + }, + { + "pc": 1116, + "op": "JUMPDEST", + "gas": 2945403, + "gasCost": 1, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x1e3", + "0x182cae4f502", + "0x84", + "0xa4" + ] + }, + { + "pc": 1117, + "op": "SWAP3", + "gas": 2945402, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x1e3", + "0x182cae4f502", + "0x84", + "0xa4" + ] + }, + { + "pc": 1118, + "op": "SWAP2", + "gas": 2945399, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0xa4", + "0x182cae4f502", + "0x84", + "0x1e3" + ] + }, + { + "pc": 1119, + "op": "POP", + "gas": 2945396, + "gasCost": 2, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0xa4", + "0x1e3", + "0x84", + "0x182cae4f502" + ] + }, + { + "pc": 1120, + "op": "POP", + "gas": 2945394, + "gasCost": 2, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0xa4", + "0x1e3", + "0x84" + ] + }, + { + "pc": 1121, + "op": "JUMP", + "gas": 2945392, + "gasCost": 8, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0xa4", + "0x1e3" + ] + }, + { + "pc": 483, + "op": "JUMPDEST", + "gas": 2945384, + "gasCost": 1, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0xa4" + ] + }, + { + "pc": 484, + "op": "PUSH1", + "gas": 2945383, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0xa4" + ] + }, + { + "pc": 486, + "op": "PUSH1", + "gas": 2945380, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0xa4", + "0x0" + ] + }, + { + "pc": 488, + "op": "MLOAD", + "gas": 2945377, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0xa4", + "0x0", + "0x40" + ] + }, + { + "pc": 489, + "op": "DUP1", + "gas": 2945374, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0xa4", + "0x0", + "0x80" + ] + }, + { + "pc": 490, + "op": "DUP4", + "gas": 2945371, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0xa4", + "0x0", + "0x80", + "0x80" + ] + }, + { + "pc": 491, + "op": "SUB", + "gas": 2945368, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0xa4", + "0x0", + "0x80", + "0x80", + "0xa4" + ] + }, + { + "pc": 492, + "op": "DUP2", + "gas": 2945365, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0xa4", + "0x0", + "0x80", + "0x24" + ] + }, + { + "pc": 493, + "op": "PUSH1", + "gas": 2945362, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80" + ] + }, + { + "pc": 495, + "op": "DUP8", + "gas": 2945359, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0" + ] + }, + { + "pc": 496, + "op": "DUP1", + "gas": 2945356, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4" + ] + }, + { + "pc": 497, + "op": "EXTCODESIZE", + "gas": 2945353, + "gasCost": 2600, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4" + ], + "extraData": { + "codeList": [ + "0x6080604052600436106100555760003560e01c806321848c461461005a5780632e64cec114610083578063b0f2b72a146100ae578063c4e96ec0146100d7578063e5223f88146100f3578063f34176731461010f575b600080fd5b34801561006657600080fd5b50610081600480360381019061007c91906101d7565b61013a565b005b34801561008f57600080fd5b5061009861014f565b6040516100a59190610252565b60405180910390f35b3480156100ba57600080fd5b506100d560048036038101906100d091906101d7565b610158565b005b6100f160048036038101906100ec91906101d7565b610162565b005b61010d600480360381019061010891906101d7565b6101a4565b005b34801561011b57600080fd5b506101246101ae565b6040516101319190610252565b60405180910390f35b80600081905550600061014c57600080fd5b50565b60008054905090565b8060008190555050565b806000819055506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161019b90610232565b60405180910390fd5b8060008190555050565b6000806101ba57600080fd5b600054905090565b6000813590506101d1816102b1565b92915050565b6000602082840312156101e957600080fd5b60006101f7848285016101c2565b91505092915050565b600061020d600c8361026d565b915061021882610288565b602082019050919050565b61022c8161027e565b82525050565b6000602082019050818103600083015261024b81610200565b9050919050565b60006020820190506102676000830184610223565b92915050565b600082825260208201905092915050565b6000819050919050565b7f64656c696265726174656c790000000000000000000000000000000000000000600082015250565b6102ba8161027e565b81146102c557600080fd5b5056fea26469706673582212206fa6988b66dece47dc22658a0058d7f113ce303b23abdbfb3e29ee300a66489464736f6c63430008040033" + ] + } + }, + { + "pc": 498, + "op": "ISZERO", + "gas": 2942753, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x2fe" + ] + }, + { + "pc": 499, + "op": "DUP1", + "gas": 2942750, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x0" + ] + }, + { + "pc": 500, + "op": "ISZERO", + "gas": 2942747, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x0", + "0x0" + ] + }, + { + "pc": 501, + "op": "PUSH2", + "gas": 2942744, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x0", + "0x1" + ] + }, + { + "pc": 504, + "op": "JUMPI", + "gas": 2942741, + "gasCost": 10, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x0", + "0x1", + "0x1fd" + ] + }, + { + "pc": 509, + "op": "JUMPDEST", + "gas": 2942731, + "gasCost": 1, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x0" + ] + }, + { + "pc": 510, + "op": "POP", + "gas": 2942730, + "gasCost": 2, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x0" + ] + }, + { + "pc": 511, + "op": "GAS", + "gas": 2942728, + "gasCost": 2, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4" + ] + }, + { + "pc": 512, + "op": "CALL", + "gas": 2942726, + "gasCost": 2896748, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x2ce706" + ], + "extraData": { + "codeList": [ + "0x608060405234801561001057600080fd5b506004361061007d5760003560e01c80633e23ee431161005b5780633e23ee43146100d8578063651b4aa5146100f6578063a0a4868814610112578063cb4ec52e1461012e5761007d565b8063127017e114610082578063200d2ed21461009e57806336864b1b146100bc575b600080fd5b61009c6004803603810190610097919061050c565b61014a565b005b6100a66101e6565b6040516100b391906105b1565b60405180910390f35b6100d660048036038101906100d1919061050c565b6101f0565b005b6100e06102c3565b6040516100ed9190610576565b60405180910390f35b610110600480360381019061010b919061050c565b6102ec565b005b61012c6004803603810190610127919061050c565b610388565b005b6101486004803603810190610143919061050c565b61045b565b005b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663ed231420836040518263ffffffff1660e01b81526004016101a991906105b1565b600060405180830381600087803b1580156101c357600080fd5b505af11580156101d7573d6000803e3d6000fd5b50505050816001819055505050565b6000600154905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663b0f2b72a836040518263ffffffff1660e01b815260040161024f91906105b1565b600060405180830381600087803b15801561026957600080fd5b505af115801561027d573d6000803e3d6000fd5b50505050816001819055506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016102ba90610591565b60405180910390fd5b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff166321848c46836040518263ffffffff1660e01b815260040161034b91906105b1565b600060405180830381600087803b15801561036557600080fd5b505af1158015610379573d6000803e3d6000fd5b50505050816001819055505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff166321848c46836040518263ffffffff1660e01b81526004016103e791906105b1565b600060405180830381600087803b15801561040157600080fd5b505af1158015610415573d6000803e3d6000fd5b50505050816001819055506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161045290610591565b60405180910390fd5b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663b0f2b72a836040518263ffffffff1660e01b81526004016104ba91906105b1565b600060405180830381600087803b1580156104d457600080fd5b505af11580156104e8573d6000803e3d6000fd5b50505050816001819055505050565b60008135905061050681610642565b92915050565b60006020828403121561051e57600080fd5b600061052c848285016104f7565b91505092915050565b61053e816105dd565b82525050565b6000610551600c836105cc565b915061055c82610619565b602082019050919050565b6105708161060f565b82525050565b600060208201905061058b6000830184610535565b92915050565b600060208201905081810360008301526105aa81610544565b9050919050565b60006020820190506105c66000830184610567565b92915050565b600082825260208201905092915050565b60006105e8826105ef565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b7f64656c696265726174656c790000000000000000000000000000000000000000600082015250565b61064b8161060f565b811461065657600080fd5b5056fea2646970667358221220fc037ef9cac015a49b5d1fa3ef3193503e4aef8398dd3d8a477cd8726cb8d54a64736f6c63430008040033", + "0x6080604052600436106100555760003560e01c806321848c461461005a5780632e64cec114610083578063b0f2b72a146100ae578063c4e96ec0146100d7578063e5223f88146100f3578063f34176731461010f575b600080fd5b34801561006657600080fd5b50610081600480360381019061007c91906101d7565b61013a565b005b34801561008f57600080fd5b5061009861014f565b6040516100a59190610252565b60405180910390f35b3480156100ba57600080fd5b506100d560048036038101906100d091906101d7565b610158565b005b6100f160048036038101906100ec91906101d7565b610162565b005b61010d600480360381019061010891906101d7565b6101a4565b005b34801561011b57600080fd5b506101246101ae565b6040516101319190610252565b60405180910390f35b80600081905550600061014c57600080fd5b50565b60008054905090565b8060008190555050565b806000819055506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161019b90610232565b60405180910390fd5b8060008190555050565b6000806101ba57600080fd5b600054905090565b6000813590506101d1816102b1565b92915050565b6000602082840312156101e957600080fd5b60006101f7848285016101c2565b91505092915050565b600061020d600c8361026d565b915061021882610288565b602082019050919050565b61022c8161027e565b82525050565b6000602082019050818103600083015261024b81610200565b9050919050565b60006020820190506102676000830184610223565b92915050565b600082825260208201905092915050565b6000819050919050565b7f64656c696265726174656c790000000000000000000000000000000000000000600082015250565b6102ba8161027e565b81146102c557600080fd5b5056fea26469706673582212206fa6988b66dece47dc22658a0058d7f113ce303b23abdbfb3e29ee300a66489464736f6c63430008040033" + ], + "proofList": [ + { + "address": "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "nonce": 1, + "balance": "0x0", + "codeHash": "0x5a58c210f99d8c05214f392685ce9711a7538fb5ed7bcd81fba60e035e56f163" + }, + { + "address": "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "nonce": 1, + "balance": "0x0", + "codeHash": "0x4ee2afb169bef88abed9792edc0230c2cda9c19a48639d2db199479f1176928e" + }, + { + "address": "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "nonce": 1, + "balance": "0x0", + "codeHash": "0x4ee2afb169bef88abed9792edc0230c2cda9c19a48639d2db199479f1176928e" + } + ], + "caller": [ + { + "address": "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "nonce": 1, + "balance": "0x0", + "codeHash": "0x5a58c210f99d8c05214f392685ce9711a7538fb5ed7bcd81fba60e035e56f163" + }, + { + "address": "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "nonce": 1, + "balance": "0x0", + "codeHash": "0x5a58c210f99d8c05214f392685ce9711a7538fb5ed7bcd81fba60e035e56f163" + } + ] + } + }, + { + "pc": 0, + "op": "PUSH1", + "gas": 2896648, + "gasCost": 3, + "depth": 3 + }, + { + "pc": 2, + "op": "PUSH1", + "gas": 2896645, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x80" + ] + }, + { + "pc": 4, + "op": "MSTORE", + "gas": 2896642, + "gasCost": 12, + "depth": 3, + "stack": [ + "0x80", + "0x40" + ] + }, + { + "pc": 5, + "op": "PUSH1", + "gas": 2896630, + "gasCost": 3, + "depth": 3 + }, + { + "pc": 7, + "op": "CALLDATASIZE", + "gas": 2896627, + "gasCost": 2, + "depth": 3, + "stack": [ + "0x4" + ] + }, + { + "pc": 8, + "op": "LT", + "gas": 2896625, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x4", + "0x24" + ] + }, + { + "pc": 9, + "op": "PUSH2", + "gas": 2896622, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x0" + ] + }, + { + "pc": 12, + "op": "JUMPI", + "gas": 2896619, + "gasCost": 10, + "depth": 3, + "stack": [ + "0x0", + "0x55" + ] + }, + { + "pc": 13, + "op": "PUSH1", + "gas": 2896609, + "gasCost": 3, + "depth": 3 + }, + { + "pc": 15, + "op": "CALLDATALOAD", + "gas": 2896606, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x0" + ] + }, + { + "pc": 16, + "op": "PUSH1", + "gas": 2896603, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a00000000000000000000000000000000000000000000000000000182" + ] + }, + { + "pc": 18, + "op": "SHR", + "gas": 2896600, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a00000000000000000000000000000000000000000000000000000182", + "0xe0" + ] + }, + { + "pc": 19, + "op": "DUP1", + "gas": 2896597, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a" + ] + }, + { + "pc": 20, + "op": "PUSH4", + "gas": 2896594, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xb0f2b72a" + ] + }, + { + "pc": 25, + "op": "EQ", + "gas": 2896591, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xb0f2b72a", + "0x21848c46" + ] + }, + { + "pc": 26, + "op": "PUSH2", + "gas": 2896588, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0x0" + ] + }, + { + "pc": 29, + "op": "JUMPI", + "gas": 2896585, + "gasCost": 10, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0x0", + "0x5a" + ] + }, + { + "pc": 30, + "op": "DUP1", + "gas": 2896575, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a" + ] + }, + { + "pc": 31, + "op": "PUSH4", + "gas": 2896572, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xb0f2b72a" + ] + }, + { + "pc": 36, + "op": "EQ", + "gas": 2896569, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xb0f2b72a", + "0x2e64cec1" + ] + }, + { + "pc": 37, + "op": "PUSH2", + "gas": 2896566, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0x0" + ] + }, + { + "pc": 40, + "op": "JUMPI", + "gas": 2896563, + "gasCost": 10, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0x0", + "0x83" + ] + }, + { + "pc": 41, + "op": "DUP1", + "gas": 2896553, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a" + ] + }, + { + "pc": 42, + "op": "PUSH4", + "gas": 2896550, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xb0f2b72a" + ] + }, + { + "pc": 47, + "op": "EQ", + "gas": 2896547, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xb0f2b72a", + "0xb0f2b72a" + ] + }, + { + "pc": 48, + "op": "PUSH2", + "gas": 2896544, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0x1" + ] + }, + { + "pc": 51, + "op": "JUMPI", + "gas": 2896541, + "gasCost": 10, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0x1", + "0xae" + ] + }, + { + "pc": 174, + "op": "JUMPDEST", + "gas": 2896531, + "gasCost": 1, + "depth": 3, + "stack": [ + "0xb0f2b72a" + ] + }, + { + "pc": 175, + "op": "CALLVALUE", + "gas": 2896530, + "gasCost": 2, + "depth": 3, + "stack": [ + "0xb0f2b72a" + ] + }, + { + "pc": 176, + "op": "DUP1", + "gas": 2896528, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0x0" + ] + }, + { + "pc": 177, + "op": "ISZERO", + "gas": 2896525, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0x0", + "0x0" + ] + }, + { + "pc": 178, + "op": "PUSH2", + "gas": 2896522, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0x0", + "0x1" + ] + }, + { + "pc": 181, + "op": "JUMPI", + "gas": 2896519, + "gasCost": 10, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0x0", + "0x1", + "0xba" + ] + }, + { + "pc": 186, + "op": "JUMPDEST", + "gas": 2896509, + "gasCost": 1, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0x0" + ] + }, + { + "pc": 187, + "op": "POP", + "gas": 2896508, + "gasCost": 2, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0x0" + ] + }, + { + "pc": 188, + "op": "PUSH2", + "gas": 2896506, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a" + ] + }, + { + "pc": 191, + "op": "PUSH1", + "gas": 2896503, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5" + ] + }, + { + "pc": 193, + "op": "DUP1", + "gas": 2896500, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0x4" + ] + }, + { + "pc": 194, + "op": "CALLDATASIZE", + "gas": 2896497, + "gasCost": 2, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0x4", + "0x4" + ] + }, + { + "pc": 195, + "op": "SUB", + "gas": 2896495, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0x4", + "0x4", + "0x24" + ] + }, + { + "pc": 196, + "op": "DUP2", + "gas": 2896492, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0x4", + "0x20" + ] + }, + { + "pc": 197, + "op": "ADD", + "gas": 2896489, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0x4", + "0x20", + "0x4" + ] + }, + { + "pc": 198, + "op": "SWAP1", + "gas": 2896486, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0x4", + "0x24" + ] + }, + { + "pc": 199, + "op": "PUSH2", + "gas": 2896483, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0x24", + "0x4" + ] + }, + { + "pc": 202, + "op": "SWAP2", + "gas": 2896480, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0x24", + "0x4", + "0xd0" + ] + }, + { + "pc": 203, + "op": "SWAP1", + "gas": 2896477, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x4", + "0x24" + ] + }, + { + "pc": 204, + "op": "PUSH2", + "gas": 2896474, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4" + ] + }, + { + "pc": 207, + "op": "JUMP", + "gas": 2896471, + "gasCost": 8, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x1d7" + ] + }, + { + "pc": 471, + "op": "JUMPDEST", + "gas": 2896463, + "gasCost": 1, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4" + ] + }, + { + "pc": 472, + "op": "PUSH1", + "gas": 2896462, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4" + ] + }, + { + "pc": 474, + "op": "PUSH1", + "gas": 2896459, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 476, + "op": "DUP3", + "gas": 2896456, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x20" + ] + }, + { + "pc": 477, + "op": "DUP5", + "gas": 2896453, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x20", + "0x4" + ] + }, + { + "pc": 478, + "op": "SUB", + "gas": 2896450, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x20", + "0x4", + "0x24" + ] + }, + { + "pc": 479, + "op": "SLT", + "gas": 2896447, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x20", + "0x20" + ] + }, + { + "pc": 480, + "op": "ISZERO", + "gas": 2896444, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0" + ] + }, + { + "pc": 481, + "op": "PUSH2", + "gas": 2896441, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x1" + ] + }, + { + "pc": 484, + "op": "JUMPI", + "gas": 2896438, + "gasCost": 10, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x1", + "0x1e9" + ] + }, + { + "pc": 489, + "op": "JUMPDEST", + "gas": 2896428, + "gasCost": 1, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 490, + "op": "PUSH1", + "gas": 2896427, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 492, + "op": "PUSH2", + "gas": 2896424, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0" + ] + }, + { + "pc": 495, + "op": "DUP5", + "gas": 2896421, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7" + ] + }, + { + "pc": 496, + "op": "DUP3", + "gas": 2896418, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24" + ] + }, + { + "pc": 497, + "op": "DUP6", + "gas": 2896415, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x0" + ] + }, + { + "pc": 498, + "op": "ADD", + "gas": 2896412, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x0", + "0x4" + ] + }, + { + "pc": 499, + "op": "PUSH2", + "gas": 2896409, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4" + ] + }, + { + "pc": 502, + "op": "JUMP", + "gas": 2896406, + "gasCost": 8, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x1c2" + ] + }, + { + "pc": 450, + "op": "JUMPDEST", + "gas": 2896398, + "gasCost": 1, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4" + ] + }, + { + "pc": 451, + "op": "PUSH1", + "gas": 2896397, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4" + ] + }, + { + "pc": 453, + "op": "DUP2", + "gas": 2896394, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 454, + "op": "CALLDATALOAD", + "gas": 2896391, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x0", + "0x4" + ] + }, + { + "pc": 455, + "op": "SWAP1", + "gas": 2896388, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x0", + "0x182cae4f502" + ] + }, + { + "pc": 456, + "op": "POP", + "gas": 2896385, + "gasCost": 2, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cae4f502", + "0x0" + ] + }, + { + "pc": 457, + "op": "PUSH2", + "gas": 2896383, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cae4f502" + ] + }, + { + "pc": 460, + "op": "DUP2", + "gas": 2896380, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cae4f502", + "0x1d1" + ] + }, + { + "pc": 461, + "op": "PUSH2", + "gas": 2896377, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cae4f502", + "0x1d1", + "0x182cae4f502" + ] + }, + { + "pc": 464, + "op": "JUMP", + "gas": 2896374, + "gasCost": 8, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cae4f502", + "0x1d1", + "0x182cae4f502", + "0x2b1" + ] + }, + { + "pc": 689, + "op": "JUMPDEST", + "gas": 2896366, + "gasCost": 1, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cae4f502", + "0x1d1", + "0x182cae4f502" + ] + }, + { + "pc": 690, + "op": "PUSH2", + "gas": 2896365, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cae4f502", + "0x1d1", + "0x182cae4f502" + ] + }, + { + "pc": 693, + "op": "DUP2", + "gas": 2896362, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cae4f502", + "0x1d1", + "0x182cae4f502", + "0x2ba" + ] + }, + { + "pc": 694, + "op": "PUSH2", + "gas": 2896359, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cae4f502", + "0x1d1", + "0x182cae4f502", + "0x2ba", + "0x182cae4f502" + ] + }, + { + "pc": 697, + "op": "JUMP", + "gas": 2896356, + "gasCost": 8, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cae4f502", + "0x1d1", + "0x182cae4f502", + "0x2ba", + "0x182cae4f502", + "0x27e" + ] + }, + { + "pc": 638, + "op": "JUMPDEST", + "gas": 2896348, + "gasCost": 1, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cae4f502", + "0x1d1", + "0x182cae4f502", + "0x2ba", + "0x182cae4f502" + ] + }, + { + "pc": 639, + "op": "PUSH1", + "gas": 2896347, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cae4f502", + "0x1d1", + "0x182cae4f502", + "0x2ba", + "0x182cae4f502" + ] + }, + { + "pc": 641, + "op": "DUP2", + "gas": 2896344, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cae4f502", + "0x1d1", + "0x182cae4f502", + "0x2ba", + "0x182cae4f502", + "0x0" + ] + }, + { + "pc": 642, + "op": "SWAP1", + "gas": 2896341, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cae4f502", + "0x1d1", + "0x182cae4f502", + "0x2ba", + "0x182cae4f502", + "0x0", + "0x182cae4f502" + ] + }, + { + "pc": 643, + "op": "POP", + "gas": 2896338, + "gasCost": 2, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cae4f502", + "0x1d1", + "0x182cae4f502", + "0x2ba", + "0x182cae4f502", + "0x182cae4f502", + "0x0" + ] + }, + { + "pc": 644, + "op": "SWAP2", + "gas": 2896336, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cae4f502", + "0x1d1", + "0x182cae4f502", + "0x2ba", + "0x182cae4f502", + "0x182cae4f502" + ] + }, + { + "pc": 645, + "op": "SWAP1", + "gas": 2896333, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cae4f502", + "0x1d1", + "0x182cae4f502", + "0x182cae4f502", + "0x182cae4f502", + "0x2ba" + ] + }, + { + "pc": 646, + "op": "POP", + "gas": 2896330, + "gasCost": 2, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cae4f502", + "0x1d1", + "0x182cae4f502", + "0x182cae4f502", + "0x2ba", + "0x182cae4f502" + ] + }, + { + "pc": 647, + "op": "JUMP", + "gas": 2896328, + "gasCost": 8, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cae4f502", + "0x1d1", + "0x182cae4f502", + "0x182cae4f502", + "0x2ba" + ] + }, + { + "pc": 698, + "op": "JUMPDEST", + "gas": 2896320, + "gasCost": 1, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cae4f502", + "0x1d1", + "0x182cae4f502", + "0x182cae4f502" + ] + }, + { + "pc": 699, + "op": "DUP2", + "gas": 2896319, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cae4f502", + "0x1d1", + "0x182cae4f502", + "0x182cae4f502" + ] + }, + { + "pc": 700, + "op": "EQ", + "gas": 2896316, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cae4f502", + "0x1d1", + "0x182cae4f502", + "0x182cae4f502", + "0x182cae4f502" + ] + }, + { + "pc": 701, + "op": "PUSH2", + "gas": 2896313, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cae4f502", + "0x1d1", + "0x182cae4f502", + "0x1" + ] + }, + { + "pc": 704, + "op": "JUMPI", + "gas": 2896310, + "gasCost": 10, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cae4f502", + "0x1d1", + "0x182cae4f502", + "0x1", + "0x2c5" + ] + }, + { + "pc": 709, + "op": "JUMPDEST", + "gas": 2896300, + "gasCost": 1, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cae4f502", + "0x1d1", + "0x182cae4f502" + ] + }, + { + "pc": 710, + "op": "POP", + "gas": 2896299, + "gasCost": 2, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cae4f502", + "0x1d1", + "0x182cae4f502" + ] + }, + { + "pc": 711, + "op": "JUMP", + "gas": 2896297, + "gasCost": 8, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cae4f502", + "0x1d1" + ] + }, + { + "pc": 465, + "op": "JUMPDEST", + "gas": 2896289, + "gasCost": 1, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cae4f502" + ] + }, + { + "pc": 466, + "op": "SWAP3", + "gas": 2896288, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cae4f502" + ] + }, + { + "pc": 467, + "op": "SWAP2", + "gas": 2896285, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x182cae4f502", + "0x24", + "0x4", + "0x1f7" + ] + }, + { + "pc": 468, + "op": "POP", + "gas": 2896282, + "gasCost": 2, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x182cae4f502", + "0x1f7", + "0x4", + "0x24" + ] + }, + { + "pc": 469, + "op": "POP", + "gas": 2896280, + "gasCost": 2, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x182cae4f502", + "0x1f7", + "0x4" + ] + }, + { + "pc": 470, + "op": "JUMP", + "gas": 2896278, + "gasCost": 8, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x182cae4f502", + "0x1f7" + ] + }, + { + "pc": 503, + "op": "JUMPDEST", + "gas": 2896270, + "gasCost": 1, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x182cae4f502" + ] + }, + { + "pc": 504, + "op": "SWAP2", + "gas": 2896269, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x182cae4f502" + ] + }, + { + "pc": 505, + "op": "POP", + "gas": 2896266, + "gasCost": 2, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x182cae4f502", + "0x0", + "0x0" + ] + }, + { + "pc": 506, + "op": "POP", + "gas": 2896264, + "gasCost": 2, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x182cae4f502", + "0x0" + ] + }, + { + "pc": 507, + "op": "SWAP3", + "gas": 2896262, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x182cae4f502" + ] + }, + { + "pc": 508, + "op": "SWAP2", + "gas": 2896259, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0x182cae4f502", + "0x24", + "0x4", + "0xd0" + ] + }, + { + "pc": 509, + "op": "POP", + "gas": 2896256, + "gasCost": 2, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0x182cae4f502", + "0xd0", + "0x4", + "0x24" + ] + }, + { + "pc": 510, + "op": "POP", + "gas": 2896254, + "gasCost": 2, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0x182cae4f502", + "0xd0", + "0x4" + ] + }, + { + "pc": 511, + "op": "JUMP", + "gas": 2896252, + "gasCost": 8, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0x182cae4f502", + "0xd0" + ] + }, + { + "pc": 208, + "op": "JUMPDEST", + "gas": 2896244, + "gasCost": 1, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0x182cae4f502" + ] + }, + { + "pc": 209, + "op": "PUSH2", + "gas": 2896243, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0x182cae4f502" + ] + }, + { + "pc": 212, + "op": "JUMP", + "gas": 2896240, + "gasCost": 8, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0x182cae4f502", + "0x158" + ] + }, + { + "pc": 344, + "op": "JUMPDEST", + "gas": 2896232, + "gasCost": 1, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0x182cae4f502" + ] + }, + { + "pc": 345, + "op": "DUP1", + "gas": 2896231, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0x182cae4f502" + ] + }, + { + "pc": 346, + "op": "PUSH1", + "gas": 2896228, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0x182cae4f502", + "0x182cae4f502" + ] + }, + { + "pc": 348, + "op": "DUP2", + "gas": 2896225, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0x182cae4f502", + "0x182cae4f502", + "0x0" + ] + }, + { + "pc": 349, + "op": "SWAP1", + "gas": 2896222, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0x182cae4f502", + "0x182cae4f502", + "0x0", + "0x182cae4f502" + ] + }, + { + "pc": 350, + "op": "SSTORE", + "gas": 2896219, + "gasCost": 2200, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0x182cae4f502", + "0x182cae4f502", + "0x182cae4f502", + "0x0" + ], + "storage": { + "0x0000000000000000000000000000000000000000000000000000000000000000": "0x00000000000000000000000000000000000000000000000000000182cae4f502" + }, + "extraData": { + "proofList": [ + { + "address": "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "nonce": 1, + "balance": "0x0", + "codeHash": "0x4ee2afb169bef88abed9792edc0230c2cda9c19a48639d2db199479f1176928e", + "storage": { + "key": "0x0000000000000000000000000000000000000000000000000000000000000000", + "value": "0x00000000000000000000000000000000000000000000000000000182cae4f502" + } + } + ] + } + }, + { + "pc": 351, + "op": "POP", + "gas": 2894019, + "gasCost": 2, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0x182cae4f502", + "0x182cae4f502" + ] + }, + { + "pc": 352, + "op": "POP", + "gas": 2894017, + "gasCost": 2, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0x182cae4f502" + ] + }, + { + "pc": 353, + "op": "JUMP", + "gas": 2894015, + "gasCost": 8, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5" + ] + }, + { + "pc": 213, + "op": "JUMPDEST", + "gas": 2894007, + "gasCost": 1, + "depth": 3, + "stack": [ + "0xb0f2b72a" + ] + }, + { + "pc": 214, + "op": "STOP", + "gas": 2894006, + "gasCost": 0, + "depth": 3, + "stack": [ + "0xb0f2b72a" + ] + }, + { + "pc": 513, + "op": "ISZERO", + "gas": 2939984, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0xa4", + "0x1" + ] + }, + { + "pc": 514, + "op": "DUP1", + "gas": 2939981, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0xa4", + "0x0" + ] + }, + { + "pc": 515, + "op": "ISZERO", + "gas": 2939978, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0xa4", + "0x0", + "0x0" + ] + }, + { + "pc": 516, + "op": "PUSH2", + "gas": 2939975, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0xa4", + "0x0", + "0x1" + ] + }, + { + "pc": 519, + "op": "JUMPI", + "gas": 2939972, + "gasCost": 10, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0xa4", + "0x0", + "0x1", + "0x211" + ] + }, + { + "pc": 529, + "op": "JUMPDEST", + "gas": 2939962, + "gasCost": 1, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0xa4", + "0x0" + ] + }, + { + "pc": 530, + "op": "POP", + "gas": 2939961, + "gasCost": 2, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0xa4", + "0x0" + ] + }, + { + "pc": 531, + "op": "POP", + "gas": 2939959, + "gasCost": 2, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0xa4" + ] + }, + { + "pc": 532, + "op": "POP", + "gas": 2939957, + "gasCost": 2, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a" + ] + }, + { + "pc": 533, + "op": "POP", + "gas": 2939955, + "gasCost": 2, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4" + ] + }, + { + "pc": 534, + "op": "POP", + "gas": 2939953, + "gasCost": 2, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4" + ] + }, + { + "pc": 535, + "op": "POP", + "gas": 2939951, + "gasCost": 2, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cae4f502" + ] + }, + { + "pc": 536, + "op": "JUMP", + "gas": 2939949, + "gasCost": 8, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5" + ] + }, + { + "pc": 165, + "op": "JUMPDEST", + "gas": 2939941, + "gasCost": 1, + "depth": 2, + "stack": [ + "0xb0f2b72a" + ] + }, + { + "pc": 166, + "op": "STOP", + "gas": 2939940, + "gasCost": 0, + "depth": 2, + "stack": [ + "0xb0f2b72a" + ] + }, + { + "pc": 1240, + "op": "ISZERO", + "gas": 2986736, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x182cae4f502", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0xa4", + "0x1" + ] + }, + { + "pc": 1241, + "op": "DUP1", + "gas": 2986733, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x182cae4f502", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0xa4", + "0x0" + ] + }, + { + "pc": 1242, + "op": "ISZERO", + "gas": 2986730, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x182cae4f502", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0xa4", + "0x0", + "0x0" + ] + }, + { + "pc": 1243, + "op": "PUSH2", + "gas": 2986727, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x182cae4f502", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0xa4", + "0x0", + "0x1" + ] + }, + { + "pc": 1246, + "op": "JUMPI", + "gas": 2986724, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x182cae4f502", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0xa4", + "0x0", + "0x1", + "0x4e8" + ] + }, + { + "pc": 1256, + "op": "JUMPDEST", + "gas": 2986714, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x182cae4f502", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0xa4", + "0x0" + ] + }, + { + "pc": 1257, + "op": "POP", + "gas": 2986713, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x182cae4f502", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0xa4", + "0x0" + ] + }, + { + "pc": 1258, + "op": "POP", + "gas": 2986711, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x182cae4f502", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0xa4" + ] + }, + { + "pc": 1259, + "op": "POP", + "gas": 2986709, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x182cae4f502", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a" + ] + }, + { + "pc": 1260, + "op": "POP", + "gas": 2986707, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x182cae4f502", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5" + ] + }, + { + "pc": 1261, + "op": "DUP2", + "gas": 2986705, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x182cae4f502", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5" + ] + }, + { + "pc": 1262, + "op": "PUSH1", + "gas": 2986702, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x182cae4f502", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x182cae4f502" + ] + }, + { + "pc": 1264, + "op": "DUP2", + "gas": 2986699, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x182cae4f502", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x182cae4f502", + "0x1" + ] + }, + { + "pc": 1265, + "op": "SWAP1", + "gas": 2986696, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x182cae4f502", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x182cae4f502", + "0x1", + "0x182cae4f502" + ] + }, + { + "pc": 1266, + "op": "SSTORE", + "gas": 2986693, + "gasCost": 5000, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x182cae4f502", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x182cae4f502", + "0x182cae4f502", + "0x1" + ], + "storage": { + "0x0000000000000000000000000000000000000000000000000000000000000000": "0x000000000000000000000000ed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x0000000000000000000000000000000000000000000000000000000000000001": "0x00000000000000000000000000000000000000000000000000000182cae4f502" + }, + "extraData": { + "proofList": [ + { + "address": "0x9cb1b5b04b4dcd5c3ab9bafd2c0ad4fd8a9b3d29", + "nonce": 1, + "balance": "0x0", + "codeHash": "0xb058876f2963a74146d29465bbd582cbc6f2c03a2ec5adc6e6d74513470072a4", + "storage": { + "key": "0x0000000000000000000000000000000000000000000000000000000000000001", + "value": "0x0000000000000000000000000000000000000000000000000000000000000064" + } + } + ] + } + }, + { + "pc": 1267, + "op": "POP", + "gas": 2981693, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x182cae4f502", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x182cae4f502" + ] + }, + { + "pc": 1268, + "op": "POP", + "gas": 2981691, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x182cae4f502", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5" + ] + }, + { + "pc": 1269, + "op": "POP", + "gas": 2981689, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148", + "0x182cae4f502" + ] + }, + { + "pc": 1270, + "op": "JUMP", + "gas": 2981687, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xcb4ec52e", + "0x148" + ] + }, + { + "pc": 328, + "op": "JUMPDEST", + "gas": 2981679, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xcb4ec52e" + ] + }, + { + "pc": 329, + "op": "STOP", + "gas": 2981678, + "gasCost": 0, + "depth": 1, + "stack": [ + "0xcb4ec52e" + ] + } + ] + }, + { + "gas": 37936, + "failed": false, + "from": { + "address": "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "nonce": 231, + "balance": "0x56bc75e2d630ffffffffffffffffffffffffffffffffffff334673c1a3e586", + "codeHash": "0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470" + }, + "to": { + "address": "0x9cb1b5b04b4dcd5c3ab9bafd2c0ad4fd8a9b3d29", + "nonce": 1, + "balance": "0x0", + "codeHash": "0xb058876f2963a74146d29465bbd582cbc6f2c03a2ec5adc6e6d74513470072a4" + }, + "accountAfter": [ + { + "address": "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "nonce": 232, + "balance": "0x56bc75e2d630ffffffffffffffffffffffffffffffffffff334673c0d4aa66", + "codeHash": "0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470" + }, + { + "address": "0x9cb1b5b04b4dcd5c3ab9bafd2c0ad4fd8a9b3d29", + "nonce": 1, + "balance": "0x0", + "codeHash": "0xb058876f2963a74146d29465bbd582cbc6f2c03a2ec5adc6e6d74513470072a4" + } + ], + "codeHash": "0xb058876f2963a74146d29465bbd582cbc6f2c03a2ec5adc6e6d74513470072a4", + "byteCode": "0x608060405234801561001057600080fd5b506004361061007d5760003560e01c80633e23ee431161005b5780633e23ee43146100d8578063651b4aa5146100f6578063a0a4868814610112578063cb4ec52e1461012e5761007d565b8063127017e114610082578063200d2ed21461009e57806336864b1b146100bc575b600080fd5b61009c6004803603810190610097919061050c565b61014a565b005b6100a66101e6565b6040516100b391906105b1565b60405180910390f35b6100d660048036038101906100d1919061050c565b6101f0565b005b6100e06102c3565b6040516100ed9190610576565b60405180910390f35b610110600480360381019061010b919061050c565b6102ec565b005b61012c6004803603810190610127919061050c565b610388565b005b6101486004803603810190610143919061050c565b61045b565b005b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663ed231420836040518263ffffffff1660e01b81526004016101a991906105b1565b600060405180830381600087803b1580156101c357600080fd5b505af11580156101d7573d6000803e3d6000fd5b50505050816001819055505050565b6000600154905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663b0f2b72a836040518263ffffffff1660e01b815260040161024f91906105b1565b600060405180830381600087803b15801561026957600080fd5b505af115801561027d573d6000803e3d6000fd5b50505050816001819055506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016102ba90610591565b60405180910390fd5b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff166321848c46836040518263ffffffff1660e01b815260040161034b91906105b1565b600060405180830381600087803b15801561036557600080fd5b505af1158015610379573d6000803e3d6000fd5b50505050816001819055505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff166321848c46836040518263ffffffff1660e01b81526004016103e791906105b1565b600060405180830381600087803b15801561040157600080fd5b505af1158015610415573d6000803e3d6000fd5b50505050816001819055506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161045290610591565b60405180910390fd5b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663b0f2b72a836040518263ffffffff1660e01b81526004016104ba91906105b1565b600060405180830381600087803b1580156104d457600080fd5b505af11580156104e8573d6000803e3d6000fd5b50505050816001819055505050565b60008135905061050681610642565b92915050565b60006020828403121561051e57600080fd5b600061052c848285016104f7565b91505092915050565b61053e816105dd565b82525050565b6000610551600c836105cc565b915061055c82610619565b602082019050919050565b6105708161060f565b82525050565b600060208201905061058b6000830184610535565b92915050565b600060208201905081810360008301526105aa81610544565b9050919050565b60006020820190506105c66000830184610567565b92915050565b600082825260208201905092915050565b60006105e8826105ef565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b7f64656c696265726174656c790000000000000000000000000000000000000000600082015250565b61064b8161060f565b811461065657600080fd5b5056fea2646970667358221220fc037ef9cac015a49b5d1fa3ef3193503e4aef8398dd3d8a477cd8726cb8d54a64736f6c63430008040033", + "structLogs": [ + { + "pc": 0, + "op": "PUSH1", + "gas": 3000208, + "gasCost": 3, + "depth": 1 + }, + { + "pc": 2, + "op": "PUSH1", + "gas": 3000205, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80" + ] + }, + { + "pc": 4, + "op": "MSTORE", + "gas": 3000202, + "gasCost": 12, + "depth": 1, + "stack": [ + "0x80", + "0x40" + ] + }, + { + "pc": 5, + "op": "CALLVALUE", + "gas": 3000190, + "gasCost": 2, + "depth": 1 + }, + { + "pc": 6, + "op": "DUP1", + "gas": 3000188, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 7, + "op": "ISZERO", + "gas": 3000185, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0", + "0x0" + ] + }, + { + "pc": 8, + "op": "PUSH2", + "gas": 3000182, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0", + "0x1" + ] + }, + { + "pc": 11, + "op": "JUMPI", + "gas": 3000179, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x0", + "0x1", + "0x10" + ] + }, + { + "pc": 16, + "op": "JUMPDEST", + "gas": 3000169, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 17, + "op": "POP", + "gas": 3000168, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 18, + "op": "PUSH1", + "gas": 3000166, + "gasCost": 3, + "depth": 1 + }, + { + "pc": 20, + "op": "CALLDATASIZE", + "gas": 3000163, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x4" + ] + }, + { + "pc": 21, + "op": "LT", + "gas": 3000161, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4", + "0x24" + ] + }, + { + "pc": 22, + "op": "PUSH2", + "gas": 3000158, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 25, + "op": "JUMPI", + "gas": 3000155, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x0", + "0x7d" + ] + }, + { + "pc": 26, + "op": "PUSH1", + "gas": 3000145, + "gasCost": 3, + "depth": 1 + }, + { + "pc": 28, + "op": "CALLDATALOAD", + "gas": 3000142, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 29, + "op": "PUSH1", + "gas": 3000139, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa500000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 31, + "op": "SHR", + "gas": 3000136, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa500000000000000000000000000000000000000000000000000000000", + "0xe0" + ] + }, + { + "pc": 32, + "op": "DUP1", + "gas": 3000133, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5" + ] + }, + { + "pc": 33, + "op": "PUSH4", + "gas": 3000130, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x651b4aa5" + ] + }, + { + "pc": 38, + "op": "GT", + "gas": 3000127, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x651b4aa5", + "0x3e23ee43" + ] + }, + { + "pc": 39, + "op": "PUSH2", + "gas": 3000124, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x0" + ] + }, + { + "pc": 42, + "op": "JUMPI", + "gas": 3000121, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x0", + "0x5b" + ] + }, + { + "pc": 43, + "op": "DUP1", + "gas": 3000111, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5" + ] + }, + { + "pc": 44, + "op": "PUSH4", + "gas": 3000108, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x651b4aa5" + ] + }, + { + "pc": 49, + "op": "EQ", + "gas": 3000105, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x651b4aa5", + "0x3e23ee43" + ] + }, + { + "pc": 50, + "op": "PUSH2", + "gas": 3000102, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x0" + ] + }, + { + "pc": 53, + "op": "JUMPI", + "gas": 3000099, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x0", + "0xd8" + ] + }, + { + "pc": 54, + "op": "DUP1", + "gas": 3000089, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5" + ] + }, + { + "pc": 55, + "op": "PUSH4", + "gas": 3000086, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x651b4aa5" + ] + }, + { + "pc": 60, + "op": "EQ", + "gas": 3000083, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x651b4aa5", + "0x651b4aa5" + ] + }, + { + "pc": 61, + "op": "PUSH2", + "gas": 3000080, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x1" + ] + }, + { + "pc": 64, + "op": "JUMPI", + "gas": 3000077, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x1", + "0xf6" + ] + }, + { + "pc": 246, + "op": "JUMPDEST", + "gas": 3000067, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x651b4aa5" + ] + }, + { + "pc": 247, + "op": "PUSH2", + "gas": 3000066, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5" + ] + }, + { + "pc": 250, + "op": "PUSH1", + "gas": 3000063, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110" + ] + }, + { + "pc": 252, + "op": "DUP1", + "gas": 3000060, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x4" + ] + }, + { + "pc": 253, + "op": "CALLDATASIZE", + "gas": 3000057, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x4", + "0x4" + ] + }, + { + "pc": 254, + "op": "SUB", + "gas": 3000055, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x4", + "0x4", + "0x24" + ] + }, + { + "pc": 255, + "op": "DUP2", + "gas": 3000052, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x4", + "0x20" + ] + }, + { + "pc": 256, + "op": "ADD", + "gas": 3000049, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x4", + "0x20", + "0x4" + ] + }, + { + "pc": 257, + "op": "SWAP1", + "gas": 3000046, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x4", + "0x24" + ] + }, + { + "pc": 258, + "op": "PUSH2", + "gas": 3000043, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x24", + "0x4" + ] + }, + { + "pc": 261, + "op": "SWAP2", + "gas": 3000040, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x24", + "0x4", + "0x10b" + ] + }, + { + "pc": 262, + "op": "SWAP1", + "gas": 3000037, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x10b", + "0x4", + "0x24" + ] + }, + { + "pc": 263, + "op": "PUSH2", + "gas": 3000034, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x10b", + "0x24", + "0x4" + ] + }, + { + "pc": 266, + "op": "JUMP", + "gas": 3000031, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x50c" + ] + }, + { + "pc": 1292, + "op": "JUMPDEST", + "gas": 3000023, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x10b", + "0x24", + "0x4" + ] + }, + { + "pc": 1293, + "op": "PUSH1", + "gas": 3000022, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x10b", + "0x24", + "0x4" + ] + }, + { + "pc": 1295, + "op": "PUSH1", + "gas": 3000019, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 1297, + "op": "DUP3", + "gas": 3000016, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x20" + ] + }, + { + "pc": 1298, + "op": "DUP5", + "gas": 3000013, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x20", + "0x4" + ] + }, + { + "pc": 1299, + "op": "SUB", + "gas": 3000010, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x20", + "0x4", + "0x24" + ] + }, + { + "pc": 1300, + "op": "SLT", + "gas": 3000007, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x20", + "0x20" + ] + }, + { + "pc": 1301, + "op": "ISZERO", + "gas": 3000004, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0" + ] + }, + { + "pc": 1302, + "op": "PUSH2", + "gas": 3000001, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x1" + ] + }, + { + "pc": 1305, + "op": "JUMPI", + "gas": 2999998, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x1", + "0x51e" + ] + }, + { + "pc": 1310, + "op": "JUMPDEST", + "gas": 2999988, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 1311, + "op": "PUSH1", + "gas": 2999987, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 1313, + "op": "PUSH2", + "gas": 2999984, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0" + ] + }, + { + "pc": 1316, + "op": "DUP5", + "gas": 2999981, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c" + ] + }, + { + "pc": 1317, + "op": "DUP3", + "gas": 2999978, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24" + ] + }, + { + "pc": 1318, + "op": "DUP6", + "gas": 2999975, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x0" + ] + }, + { + "pc": 1319, + "op": "ADD", + "gas": 2999972, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x0", + "0x4" + ] + }, + { + "pc": 1320, + "op": "PUSH2", + "gas": 2999969, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4" + ] + }, + { + "pc": 1323, + "op": "JUMP", + "gas": 2999966, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x4f7" + ] + }, + { + "pc": 1271, + "op": "JUMPDEST", + "gas": 2999958, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4" + ] + }, + { + "pc": 1272, + "op": "PUSH1", + "gas": 2999957, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4" + ] + }, + { + "pc": 1274, + "op": "DUP2", + "gas": 2999954, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 1275, + "op": "CALLDATALOAD", + "gas": 2999951, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x0", + "0x4" + ] + }, + { + "pc": 1276, + "op": "SWAP1", + "gas": 2999948, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x0", + "0x0" + ] + }, + { + "pc": 1277, + "op": "POP", + "gas": 2999945, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x0", + "0x0" + ] + }, + { + "pc": 1278, + "op": "PUSH2", + "gas": 2999943, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 1281, + "op": "DUP2", + "gas": 2999940, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x0", + "0x506" + ] + }, + { + "pc": 1282, + "op": "PUSH2", + "gas": 2999937, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x0", + "0x506", + "0x0" + ] + }, + { + "pc": 1285, + "op": "JUMP", + "gas": 2999934, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x0", + "0x506", + "0x0", + "0x642" + ] + }, + { + "pc": 1602, + "op": "JUMPDEST", + "gas": 2999926, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x0", + "0x506", + "0x0" + ] + }, + { + "pc": 1603, + "op": "PUSH2", + "gas": 2999925, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x0", + "0x506", + "0x0" + ] + }, + { + "pc": 1606, + "op": "DUP2", + "gas": 2999922, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x0", + "0x506", + "0x0", + "0x64b" + ] + }, + { + "pc": 1607, + "op": "PUSH2", + "gas": 2999919, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x0", + "0x506", + "0x0", + "0x64b", + "0x0" + ] + }, + { + "pc": 1610, + "op": "JUMP", + "gas": 2999916, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x0", + "0x506", + "0x0", + "0x64b", + "0x0", + "0x60f" + ] + }, + { + "pc": 1551, + "op": "JUMPDEST", + "gas": 2999908, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x0", + "0x506", + "0x0", + "0x64b", + "0x0" + ] + }, + { + "pc": 1552, + "op": "PUSH1", + "gas": 2999907, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x0", + "0x506", + "0x0", + "0x64b", + "0x0" + ] + }, + { + "pc": 1554, + "op": "DUP2", + "gas": 2999904, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x0", + "0x506", + "0x0", + "0x64b", + "0x0", + "0x0" + ] + }, + { + "pc": 1555, + "op": "SWAP1", + "gas": 2999901, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x0", + "0x506", + "0x0", + "0x64b", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 1556, + "op": "POP", + "gas": 2999898, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x0", + "0x506", + "0x0", + "0x64b", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 1557, + "op": "SWAP2", + "gas": 2999896, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x0", + "0x506", + "0x0", + "0x64b", + "0x0", + "0x0" + ] + }, + { + "pc": 1558, + "op": "SWAP1", + "gas": 2999893, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x0", + "0x506", + "0x0", + "0x0", + "0x0", + "0x64b" + ] + }, + { + "pc": 1559, + "op": "POP", + "gas": 2999890, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x0", + "0x506", + "0x0", + "0x0", + "0x64b", + "0x0" + ] + }, + { + "pc": 1560, + "op": "JUMP", + "gas": 2999888, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x0", + "0x506", + "0x0", + "0x0", + "0x64b" + ] + }, + { + "pc": 1611, + "op": "JUMPDEST", + "gas": 2999880, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x0", + "0x506", + "0x0", + "0x0" + ] + }, + { + "pc": 1612, + "op": "DUP2", + "gas": 2999879, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x0", + "0x506", + "0x0", + "0x0" + ] + }, + { + "pc": 1613, + "op": "EQ", + "gas": 2999876, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x0", + "0x506", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 1614, + "op": "PUSH2", + "gas": 2999873, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x0", + "0x506", + "0x0", + "0x1" + ] + }, + { + "pc": 1617, + "op": "JUMPI", + "gas": 2999870, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x0", + "0x506", + "0x0", + "0x1", + "0x656" + ] + }, + { + "pc": 1622, + "op": "JUMPDEST", + "gas": 2999860, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x0", + "0x506", + "0x0" + ] + }, + { + "pc": 1623, + "op": "POP", + "gas": 2999859, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x0", + "0x506", + "0x0" + ] + }, + { + "pc": 1624, + "op": "JUMP", + "gas": 2999857, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x0", + "0x506" + ] + }, + { + "pc": 1286, + "op": "JUMPDEST", + "gas": 2999849, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 1287, + "op": "SWAP3", + "gas": 2999848, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 1288, + "op": "SWAP2", + "gas": 2999845, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x0", + "0x24", + "0x4", + "0x52c" + ] + }, + { + "pc": 1289, + "op": "POP", + "gas": 2999842, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x0", + "0x52c", + "0x4", + "0x24" + ] + }, + { + "pc": 1290, + "op": "POP", + "gas": 2999840, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x0", + "0x52c", + "0x4" + ] + }, + { + "pc": 1291, + "op": "JUMP", + "gas": 2999838, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x0", + "0x52c" + ] + }, + { + "pc": 1324, + "op": "JUMPDEST", + "gas": 2999830, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 1325, + "op": "SWAP2", + "gas": 2999829, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 1326, + "op": "POP", + "gas": 2999826, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 1327, + "op": "POP", + "gas": 2999824, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0" + ] + }, + { + "pc": 1328, + "op": "SWAP3", + "gas": 2999822, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 1329, + "op": "SWAP2", + "gas": 2999819, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x0", + "0x24", + "0x4", + "0x10b" + ] + }, + { + "pc": 1330, + "op": "POP", + "gas": 2999816, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x0", + "0x10b", + "0x4", + "0x24" + ] + }, + { + "pc": 1331, + "op": "POP", + "gas": 2999814, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x0", + "0x10b", + "0x4" + ] + }, + { + "pc": 1332, + "op": "JUMP", + "gas": 2999812, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x0", + "0x10b" + ] + }, + { + "pc": 267, + "op": "JUMPDEST", + "gas": 2999804, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x0" + ] + }, + { + "pc": 268, + "op": "PUSH2", + "gas": 2999803, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x0" + ] + }, + { + "pc": 271, + "op": "JUMP", + "gas": 2999800, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x0", + "0x2ec" + ] + }, + { + "pc": 748, + "op": "JUMPDEST", + "gas": 2999792, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x0" + ] + }, + { + "pc": 749, + "op": "PUSH1", + "gas": 2999791, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x0" + ] + }, + { + "pc": 751, + "op": "DUP1", + "gas": 2999788, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x0", + "0x0" + ] + }, + { + "pc": 752, + "op": "PUSH1", + "gas": 2999785, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 754, + "op": "SWAP1", + "gas": 2999782, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x0", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 755, + "op": "SLOAD", + "gas": 2999779, + "gasCost": 2100, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "storage": { + "0x0000000000000000000000000000000000000000000000000000000000000000": "0x000000000000000000000000ed491d2c35f615cf1591bb6322486f1efcc9f6b5" + }, + "extraData": { + "proofList": [ + { + "address": "0x9cb1b5b04b4dcd5c3ab9bafd2c0ad4fd8a9b3d29", + "nonce": 1, + "balance": "0x0", + "codeHash": "0xb058876f2963a74146d29465bbd582cbc6f2c03a2ec5adc6e6d74513470072a4", + "storage": { + "key": "0x0000000000000000000000000000000000000000000000000000000000000000", + "value": "0x000000000000000000000000ed491d2c35f615cf1591bb6322486f1efcc9f6b5" + } + } + ] + } + }, + { + "pc": 756, + "op": "SWAP1", + "gas": 2997679, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x0", + "0x0", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5" + ] + }, + { + "pc": 757, + "op": "PUSH2", + "gas": 2997676, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x0", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x0" + ] + }, + { + "pc": 760, + "op": "EXP", + "gas": 2997673, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x0", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x0", + "0x100" + ] + }, + { + "pc": 761, + "op": "SWAP1", + "gas": 2997663, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x0", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x1" + ] + }, + { + "pc": 762, + "op": "DIV", + "gas": 2997660, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x0", + "0x0", + "0x1", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5" + ] + }, + { + "pc": 763, + "op": "PUSH20", + "gas": 2997655, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x0", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5" + ] + }, + { + "pc": 784, + "op": "AND", + "gas": 2997652, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x0", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 785, + "op": "SWAP1", + "gas": 2997649, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x0", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5" + ] + }, + { + "pc": 786, + "op": "POP", + "gas": 2997646, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x0" + ] + }, + { + "pc": 787, + "op": "DUP1", + "gas": 2997644, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5" + ] + }, + { + "pc": 788, + "op": "PUSH20", + "gas": 2997641, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5" + ] + }, + { + "pc": 809, + "op": "AND", + "gas": 2997638, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 810, + "op": "PUSH4", + "gas": 2997635, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5" + ] + }, + { + "pc": 815, + "op": "DUP4", + "gas": 2997632, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46" + ] + }, + { + "pc": 816, + "op": "PUSH1", + "gas": 2997629, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0x0" + ] + }, + { + "pc": 818, + "op": "MLOAD", + "gas": 2997626, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0x0", + "0x40" + ] + }, + { + "pc": 819, + "op": "DUP3", + "gas": 2997623, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0x0", + "0x80" + ] + }, + { + "pc": 820, + "op": "PUSH4", + "gas": 2997620, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0x0", + "0x80", + "0x21848c46" + ] + }, + { + "pc": 825, + "op": "AND", + "gas": 2997617, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0x0", + "0x80", + "0x21848c46", + "0xffffffff" + ] + }, + { + "pc": 826, + "op": "PUSH1", + "gas": 2997614, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0x0", + "0x80", + "0x21848c46" + ] + }, + { + "pc": 828, + "op": "SHL", + "gas": 2997611, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0x0", + "0x80", + "0x21848c46", + "0xe0" + ] + }, + { + "pc": 829, + "op": "DUP2", + "gas": 2997608, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0x0", + "0x80", + "0x21848c4600000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 830, + "op": "MSTORE", + "gas": 2997605, + "gasCost": 9, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0x0", + "0x80", + "0x21848c4600000000000000000000000000000000000000000000000000000000", + "0x80" + ] + }, + { + "pc": 831, + "op": "PUSH1", + "gas": 2997596, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0x0", + "0x80" + ] + }, + { + "pc": 833, + "op": "ADD", + "gas": 2997593, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0x0", + "0x80", + "0x4" + ] + }, + { + "pc": 834, + "op": "PUSH2", + "gas": 2997590, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0x0", + "0x84" + ] + }, + { + "pc": 837, + "op": "SWAP2", + "gas": 2997587, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0x0", + "0x84", + "0x34b" + ] + }, + { + "pc": 838, + "op": "SWAP1", + "gas": 2997584, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0x34b", + "0x84", + "0x0" + ] + }, + { + "pc": 839, + "op": "PUSH2", + "gas": 2997581, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0x34b", + "0x0", + "0x84" + ] + }, + { + "pc": 842, + "op": "JUMP", + "gas": 2997578, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0x34b", + "0x0", + "0x84", + "0x5b1" + ] + }, + { + "pc": 1457, + "op": "JUMPDEST", + "gas": 2997570, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0x34b", + "0x0", + "0x84" + ] + }, + { + "pc": 1458, + "op": "PUSH1", + "gas": 2997569, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0x34b", + "0x0", + "0x84" + ] + }, + { + "pc": 1460, + "op": "PUSH1", + "gas": 2997566, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0x34b", + "0x0", + "0x84", + "0x0" + ] + }, + { + "pc": 1462, + "op": "DUP3", + "gas": 2997563, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0x34b", + "0x0", + "0x84", + "0x0", + "0x20" + ] + }, + { + "pc": 1463, + "op": "ADD", + "gas": 2997560, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0x34b", + "0x0", + "0x84", + "0x0", + "0x20", + "0x84" + ] + }, + { + "pc": 1464, + "op": "SWAP1", + "gas": 2997557, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0x34b", + "0x0", + "0x84", + "0x0", + "0xa4" + ] + }, + { + "pc": 1465, + "op": "POP", + "gas": 2997554, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0x34b", + "0x0", + "0x84", + "0xa4", + "0x0" + ] + }, + { + "pc": 1466, + "op": "PUSH2", + "gas": 2997552, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0x34b", + "0x0", + "0x84", + "0xa4" + ] + }, + { + "pc": 1469, + "op": "PUSH1", + "gas": 2997549, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0x34b", + "0x0", + "0x84", + "0xa4", + "0x5c6" + ] + }, + { + "pc": 1471, + "op": "DUP4", + "gas": 2997546, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0x34b", + "0x0", + "0x84", + "0xa4", + "0x5c6", + "0x0" + ] + }, + { + "pc": 1472, + "op": "ADD", + "gas": 2997543, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0x34b", + "0x0", + "0x84", + "0xa4", + "0x5c6", + "0x0", + "0x84" + ] + }, + { + "pc": 1473, + "op": "DUP5", + "gas": 2997540, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0x34b", + "0x0", + "0x84", + "0xa4", + "0x5c6", + "0x84" + ] + }, + { + "pc": 1474, + "op": "PUSH2", + "gas": 2997537, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0x34b", + "0x0", + "0x84", + "0xa4", + "0x5c6", + "0x84", + "0x0" + ] + }, + { + "pc": 1477, + "op": "JUMP", + "gas": 2997534, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0x34b", + "0x0", + "0x84", + "0xa4", + "0x5c6", + "0x84", + "0x0", + "0x567" + ] + }, + { + "pc": 1383, + "op": "JUMPDEST", + "gas": 2997526, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0x34b", + "0x0", + "0x84", + "0xa4", + "0x5c6", + "0x84", + "0x0" + ] + }, + { + "pc": 1384, + "op": "PUSH2", + "gas": 2997525, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0x34b", + "0x0", + "0x84", + "0xa4", + "0x5c6", + "0x84", + "0x0" + ] + }, + { + "pc": 1387, + "op": "DUP2", + "gas": 2997522, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0x34b", + "0x0", + "0x84", + "0xa4", + "0x5c6", + "0x84", + "0x0", + "0x570" + ] + }, + { + "pc": 1388, + "op": "PUSH2", + "gas": 2997519, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0x34b", + "0x0", + "0x84", + "0xa4", + "0x5c6", + "0x84", + "0x0", + "0x570", + "0x0" + ] + }, + { + "pc": 1391, + "op": "JUMP", + "gas": 2997516, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0x34b", + "0x0", + "0x84", + "0xa4", + "0x5c6", + "0x84", + "0x0", + "0x570", + "0x0", + "0x60f" + ] + }, + { + "pc": 1551, + "op": "JUMPDEST", + "gas": 2997508, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0x34b", + "0x0", + "0x84", + "0xa4", + "0x5c6", + "0x84", + "0x0", + "0x570", + "0x0" + ] + }, + { + "pc": 1552, + "op": "PUSH1", + "gas": 2997507, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0x34b", + "0x0", + "0x84", + "0xa4", + "0x5c6", + "0x84", + "0x0", + "0x570", + "0x0" + ] + }, + { + "pc": 1554, + "op": "DUP2", + "gas": 2997504, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0x34b", + "0x0", + "0x84", + "0xa4", + "0x5c6", + "0x84", + "0x0", + "0x570", + "0x0", + "0x0" + ] + }, + { + "pc": 1555, + "op": "SWAP1", + "gas": 2997501, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0x34b", + "0x0", + "0x84", + "0xa4", + "0x5c6", + "0x84", + "0x0", + "0x570", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 1556, + "op": "POP", + "gas": 2997498, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0x34b", + "0x0", + "0x84", + "0xa4", + "0x5c6", + "0x84", + "0x0", + "0x570", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 1557, + "op": "SWAP2", + "gas": 2997496, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0x34b", + "0x0", + "0x84", + "0xa4", + "0x5c6", + "0x84", + "0x0", + "0x570", + "0x0", + "0x0" + ] + }, + { + "pc": 1558, + "op": "SWAP1", + "gas": 2997493, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0x34b", + "0x0", + "0x84", + "0xa4", + "0x5c6", + "0x84", + "0x0", + "0x0", + "0x0", + "0x570" + ] + }, + { + "pc": 1559, + "op": "POP", + "gas": 2997490, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0x34b", + "0x0", + "0x84", + "0xa4", + "0x5c6", + "0x84", + "0x0", + "0x0", + "0x570", + "0x0" + ] + }, + { + "pc": 1560, + "op": "JUMP", + "gas": 2997488, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0x34b", + "0x0", + "0x84", + "0xa4", + "0x5c6", + "0x84", + "0x0", + "0x0", + "0x570" + ] + }, + { + "pc": 1392, + "op": "JUMPDEST", + "gas": 2997480, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0x34b", + "0x0", + "0x84", + "0xa4", + "0x5c6", + "0x84", + "0x0", + "0x0" + ] + }, + { + "pc": 1393, + "op": "DUP3", + "gas": 2997479, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0x34b", + "0x0", + "0x84", + "0xa4", + "0x5c6", + "0x84", + "0x0", + "0x0" + ] + }, + { + "pc": 1394, + "op": "MSTORE", + "gas": 2997476, + "gasCost": 6, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0x34b", + "0x0", + "0x84", + "0xa4", + "0x5c6", + "0x84", + "0x0", + "0x0", + "0x84" + ] + }, + { + "pc": 1395, + "op": "POP", + "gas": 2997470, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0x34b", + "0x0", + "0x84", + "0xa4", + "0x5c6", + "0x84", + "0x0" + ] + }, + { + "pc": 1396, + "op": "POP", + "gas": 2997468, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0x34b", + "0x0", + "0x84", + "0xa4", + "0x5c6", + "0x84" + ] + }, + { + "pc": 1397, + "op": "JUMP", + "gas": 2997466, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0x34b", + "0x0", + "0x84", + "0xa4", + "0x5c6" + ] + }, + { + "pc": 1478, + "op": "JUMPDEST", + "gas": 2997458, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0x34b", + "0x0", + "0x84", + "0xa4" + ] + }, + { + "pc": 1479, + "op": "SWAP3", + "gas": 2997457, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0x34b", + "0x0", + "0x84", + "0xa4" + ] + }, + { + "pc": 1480, + "op": "SWAP2", + "gas": 2997454, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0xa4", + "0x0", + "0x84", + "0x34b" + ] + }, + { + "pc": 1481, + "op": "POP", + "gas": 2997451, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0xa4", + "0x34b", + "0x84", + "0x0" + ] + }, + { + "pc": 1482, + "op": "POP", + "gas": 2997449, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0xa4", + "0x34b", + "0x84" + ] + }, + { + "pc": 1483, + "op": "JUMP", + "gas": 2997447, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0xa4", + "0x34b" + ] + }, + { + "pc": 843, + "op": "JUMPDEST", + "gas": 2997439, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0xa4" + ] + }, + { + "pc": 844, + "op": "PUSH1", + "gas": 2997438, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0xa4" + ] + }, + { + "pc": 846, + "op": "PUSH1", + "gas": 2997435, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0xa4", + "0x0" + ] + }, + { + "pc": 848, + "op": "MLOAD", + "gas": 2997432, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0xa4", + "0x0", + "0x40" + ] + }, + { + "pc": 849, + "op": "DUP1", + "gas": 2997429, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0xa4", + "0x0", + "0x80" + ] + }, + { + "pc": 850, + "op": "DUP4", + "gas": 2997426, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0xa4", + "0x0", + "0x80", + "0x80" + ] + }, + { + "pc": 851, + "op": "SUB", + "gas": 2997423, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0xa4", + "0x0", + "0x80", + "0x80", + "0xa4" + ] + }, + { + "pc": 852, + "op": "DUP2", + "gas": 2997420, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0xa4", + "0x0", + "0x80", + "0x24" + ] + }, + { + "pc": 853, + "op": "PUSH1", + "gas": 2997417, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80" + ] + }, + { + "pc": 855, + "op": "DUP8", + "gas": 2997414, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0" + ] + }, + { + "pc": 856, + "op": "DUP1", + "gas": 2997411, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5" + ] + }, + { + "pc": 857, + "op": "EXTCODESIZE", + "gas": 2997408, + "gasCost": 2600, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5" + ], + "extraData": { + "codeList": [ + "0x608060405234801561001057600080fd5b506004361061004c5760003560e01c806321848c46146100515780633e23ee431461006d578063b0f2b72a1461008b578063ed231420146100a7575b600080fd5b61006b6004803603810190610066919061038a565b6100c3565b005b61007561015b565b604051610082919061040a565b60405180910390f35b6100a560048036038101906100a0919061038a565b610184565b005b6100c160048036038101906100bc919061038a565b610219565b005b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff166321848c46836040518263ffffffff1660e01b81526004016101229190610447565b600060405180830381600087803b15801561013c57600080fd5b505af192505050801561014d575060015b61015657610157565b5b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663b0f2b72a836040518263ffffffff1660e01b81526004016101e39190610447565b600060405180830381600087803b1580156101fd57600080fd5b505af1158015610211573d6000803e3d6000fd5b505050505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663e5223f886064846040518363ffffffff1660e01b815260040161027a9190610447565b6000604051808303818588803b15801561029357600080fd5b505af1935050505080156102a5575060015b6102ae576102af565b5b5050565b610349816040516024016102c79190610425565b6040516020818303038152906040527f41304fac000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff838183161783525050505061034c565b50565b60008151905060006a636f6e736f6c652e6c6f679050602083016000808483855afa5050505050565b600081359050610384816104fe565b92915050565b60006020828403121561039c57600080fd5b60006103aa84828501610375565b91505092915050565b6103bc8161047e565b82525050565b60006103cd82610462565b6103d7818561046d565b93506103e78185602086016104ba565b6103f0816104ed565b840191505092915050565b610404816104b0565b82525050565b600060208201905061041f60008301846103b3565b92915050565b6000602082019050818103600083015261043f81846103c2565b905092915050565b600060208201905061045c60008301846103fb565b92915050565b600081519050919050565b600082825260208201905092915050565b600061048982610490565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b838110156104d85780820151818401526020810190506104bd565b838111156104e7576000848401525b50505050565b6000601f19601f8301169050919050565b610507816104b0565b811461051257600080fd5b5056fea2646970667358221220f5cc0a3497437233916ec484eed596fa82d20198cc5e4e12a1bc76d6907526b864736f6c63430008040033" + ] + } + }, + { + "pc": 858, + "op": "ISZERO", + "gas": 2994808, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x54b" + ] + }, + { + "pc": 859, + "op": "DUP1", + "gas": 2994805, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x0" + ] + }, + { + "pc": 860, + "op": "ISZERO", + "gas": 2994802, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x0", + "0x0" + ] + }, + { + "pc": 861, + "op": "PUSH2", + "gas": 2994799, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x0", + "0x1" + ] + }, + { + "pc": 864, + "op": "JUMPI", + "gas": 2994796, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x0", + "0x1", + "0x365" + ] + }, + { + "pc": 869, + "op": "JUMPDEST", + "gas": 2994786, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x0" + ] + }, + { + "pc": 870, + "op": "POP", + "gas": 2994785, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x0" + ] + }, + { + "pc": 871, + "op": "GAS", + "gas": 2994783, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5" + ] + }, + { + "pc": 872, + "op": "CALL", + "gas": 2994781, + "gasCost": 2947990, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x2db25d" + ], + "extraData": { + "codeList": [ + "0x608060405234801561001057600080fd5b506004361061007d5760003560e01c80633e23ee431161005b5780633e23ee43146100d8578063651b4aa5146100f6578063a0a4868814610112578063cb4ec52e1461012e5761007d565b8063127017e114610082578063200d2ed21461009e57806336864b1b146100bc575b600080fd5b61009c6004803603810190610097919061050c565b61014a565b005b6100a66101e6565b6040516100b391906105b1565b60405180910390f35b6100d660048036038101906100d1919061050c565b6101f0565b005b6100e06102c3565b6040516100ed9190610576565b60405180910390f35b610110600480360381019061010b919061050c565b6102ec565b005b61012c6004803603810190610127919061050c565b610388565b005b6101486004803603810190610143919061050c565b61045b565b005b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663ed231420836040518263ffffffff1660e01b81526004016101a991906105b1565b600060405180830381600087803b1580156101c357600080fd5b505af11580156101d7573d6000803e3d6000fd5b50505050816001819055505050565b6000600154905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663b0f2b72a836040518263ffffffff1660e01b815260040161024f91906105b1565b600060405180830381600087803b15801561026957600080fd5b505af115801561027d573d6000803e3d6000fd5b50505050816001819055506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016102ba90610591565b60405180910390fd5b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff166321848c46836040518263ffffffff1660e01b815260040161034b91906105b1565b600060405180830381600087803b15801561036557600080fd5b505af1158015610379573d6000803e3d6000fd5b50505050816001819055505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff166321848c46836040518263ffffffff1660e01b81526004016103e791906105b1565b600060405180830381600087803b15801561040157600080fd5b505af1158015610415573d6000803e3d6000fd5b50505050816001819055506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161045290610591565b60405180910390fd5b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663b0f2b72a836040518263ffffffff1660e01b81526004016104ba91906105b1565b600060405180830381600087803b1580156104d457600080fd5b505af11580156104e8573d6000803e3d6000fd5b50505050816001819055505050565b60008135905061050681610642565b92915050565b60006020828403121561051e57600080fd5b600061052c848285016104f7565b91505092915050565b61053e816105dd565b82525050565b6000610551600c836105cc565b915061055c82610619565b602082019050919050565b6105708161060f565b82525050565b600060208201905061058b6000830184610535565b92915050565b600060208201905081810360008301526105aa81610544565b9050919050565b60006020820190506105c66000830184610567565b92915050565b600082825260208201905092915050565b60006105e8826105ef565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b7f64656c696265726174656c790000000000000000000000000000000000000000600082015250565b61064b8161060f565b811461065657600080fd5b5056fea2646970667358221220fc037ef9cac015a49b5d1fa3ef3193503e4aef8398dd3d8a477cd8726cb8d54a64736f6c63430008040033", + "0x608060405234801561001057600080fd5b506004361061004c5760003560e01c806321848c46146100515780633e23ee431461006d578063b0f2b72a1461008b578063ed231420146100a7575b600080fd5b61006b6004803603810190610066919061038a565b6100c3565b005b61007561015b565b604051610082919061040a565b60405180910390f35b6100a560048036038101906100a0919061038a565b610184565b005b6100c160048036038101906100bc919061038a565b610219565b005b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff166321848c46836040518263ffffffff1660e01b81526004016101229190610447565b600060405180830381600087803b15801561013c57600080fd5b505af192505050801561014d575060015b61015657610157565b5b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663b0f2b72a836040518263ffffffff1660e01b81526004016101e39190610447565b600060405180830381600087803b1580156101fd57600080fd5b505af1158015610211573d6000803e3d6000fd5b505050505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663e5223f886064846040518363ffffffff1660e01b815260040161027a9190610447565b6000604051808303818588803b15801561029357600080fd5b505af1935050505080156102a5575060015b6102ae576102af565b5b5050565b610349816040516024016102c79190610425565b6040516020818303038152906040527f41304fac000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff838183161783525050505061034c565b50565b60008151905060006a636f6e736f6c652e6c6f679050602083016000808483855afa5050505050565b600081359050610384816104fe565b92915050565b60006020828403121561039c57600080fd5b60006103aa84828501610375565b91505092915050565b6103bc8161047e565b82525050565b60006103cd82610462565b6103d7818561046d565b93506103e78185602086016104ba565b6103f0816104ed565b840191505092915050565b610404816104b0565b82525050565b600060208201905061041f60008301846103b3565b92915050565b6000602082019050818103600083015261043f81846103c2565b905092915050565b600060208201905061045c60008301846103fb565b92915050565b600081519050919050565b600082825260208201905092915050565b600061048982610490565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b838110156104d85780820151818401526020810190506104bd565b838111156104e7576000848401525b50505050565b6000601f19601f8301169050919050565b610507816104b0565b811461051257600080fd5b5056fea2646970667358221220f5cc0a3497437233916ec484eed596fa82d20198cc5e4e12a1bc76d6907526b864736f6c63430008040033" + ], + "proofList": [ + { + "address": "0x9cb1b5b04b4dcd5c3ab9bafd2c0ad4fd8a9b3d29", + "nonce": 1, + "balance": "0x0", + "codeHash": "0xb058876f2963a74146d29465bbd582cbc6f2c03a2ec5adc6e6d74513470072a4" + }, + { + "address": "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "nonce": 1, + "balance": "0x0", + "codeHash": "0x5a58c210f99d8c05214f392685ce9711a7538fb5ed7bcd81fba60e035e56f163" + }, + { + "address": "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "nonce": 1, + "balance": "0x0", + "codeHash": "0x5a58c210f99d8c05214f392685ce9711a7538fb5ed7bcd81fba60e035e56f163" + } + ], + "caller": [ + { + "address": "0x9cb1b5b04b4dcd5c3ab9bafd2c0ad4fd8a9b3d29", + "nonce": 1, + "balance": "0x0", + "codeHash": "0xb058876f2963a74146d29465bbd582cbc6f2c03a2ec5adc6e6d74513470072a4" + }, + { + "address": "0x9cb1b5b04b4dcd5c3ab9bafd2c0ad4fd8a9b3d29", + "nonce": 1, + "balance": "0x0", + "codeHash": "0xb058876f2963a74146d29465bbd582cbc6f2c03a2ec5adc6e6d74513470072a4" + } + ] + } + }, + { + "pc": 0, + "op": "PUSH1", + "gas": 2947890, + "gasCost": 3, + "depth": 2 + }, + { + "pc": 2, + "op": "PUSH1", + "gas": 2947887, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x80" + ] + }, + { + "pc": 4, + "op": "MSTORE", + "gas": 2947884, + "gasCost": 12, + "depth": 2, + "stack": [ + "0x80", + "0x40" + ] + }, + { + "pc": 5, + "op": "CALLVALUE", + "gas": 2947872, + "gasCost": 2, + "depth": 2 + }, + { + "pc": 6, + "op": "DUP1", + "gas": 2947870, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x0" + ] + }, + { + "pc": 7, + "op": "ISZERO", + "gas": 2947867, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x0", + "0x0" + ] + }, + { + "pc": 8, + "op": "PUSH2", + "gas": 2947864, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x0", + "0x1" + ] + }, + { + "pc": 11, + "op": "JUMPI", + "gas": 2947861, + "gasCost": 10, + "depth": 2, + "stack": [ + "0x0", + "0x1", + "0x10" + ] + }, + { + "pc": 16, + "op": "JUMPDEST", + "gas": 2947851, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x0" + ] + }, + { + "pc": 17, + "op": "POP", + "gas": 2947850, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x0" + ] + }, + { + "pc": 18, + "op": "PUSH1", + "gas": 2947848, + "gasCost": 3, + "depth": 2 + }, + { + "pc": 20, + "op": "CALLDATASIZE", + "gas": 2947845, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x4" + ] + }, + { + "pc": 21, + "op": "LT", + "gas": 2947843, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x4", + "0x24" + ] + }, + { + "pc": 22, + "op": "PUSH2", + "gas": 2947840, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x0" + ] + }, + { + "pc": 25, + "op": "JUMPI", + "gas": 2947837, + "gasCost": 10, + "depth": 2, + "stack": [ + "0x0", + "0x4c" + ] + }, + { + "pc": 26, + "op": "PUSH1", + "gas": 2947827, + "gasCost": 3, + "depth": 2 + }, + { + "pc": 28, + "op": "CALLDATALOAD", + "gas": 2947824, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x0" + ] + }, + { + "pc": 29, + "op": "PUSH1", + "gas": 2947821, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c4600000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 31, + "op": "SHR", + "gas": 2947818, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c4600000000000000000000000000000000000000000000000000000000", + "0xe0" + ] + }, + { + "pc": 32, + "op": "DUP1", + "gas": 2947815, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46" + ] + }, + { + "pc": 33, + "op": "PUSH4", + "gas": 2947812, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x21848c46" + ] + }, + { + "pc": 38, + "op": "EQ", + "gas": 2947809, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x21848c46", + "0x21848c46" + ] + }, + { + "pc": 39, + "op": "PUSH2", + "gas": 2947806, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x1" + ] + }, + { + "pc": 42, + "op": "JUMPI", + "gas": 2947803, + "gasCost": 10, + "depth": 2, + "stack": [ + "0x21848c46", + "0x1", + "0x51" + ] + }, + { + "pc": 81, + "op": "JUMPDEST", + "gas": 2947793, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x21848c46" + ] + }, + { + "pc": 82, + "op": "PUSH2", + "gas": 2947792, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46" + ] + }, + { + "pc": 85, + "op": "PUSH1", + "gas": 2947789, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b" + ] + }, + { + "pc": 87, + "op": "DUP1", + "gas": 2947786, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x4" + ] + }, + { + "pc": 88, + "op": "CALLDATASIZE", + "gas": 2947783, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x4", + "0x4" + ] + }, + { + "pc": 89, + "op": "SUB", + "gas": 2947781, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x4", + "0x4", + "0x24" + ] + }, + { + "pc": 90, + "op": "DUP2", + "gas": 2947778, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x4", + "0x20" + ] + }, + { + "pc": 91, + "op": "ADD", + "gas": 2947775, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x4", + "0x20", + "0x4" + ] + }, + { + "pc": 92, + "op": "SWAP1", + "gas": 2947772, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x4", + "0x24" + ] + }, + { + "pc": 93, + "op": "PUSH2", + "gas": 2947769, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x24", + "0x4" + ] + }, + { + "pc": 96, + "op": "SWAP2", + "gas": 2947766, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x24", + "0x4", + "0x66" + ] + }, + { + "pc": 97, + "op": "SWAP1", + "gas": 2947763, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x4", + "0x24" + ] + }, + { + "pc": 98, + "op": "PUSH2", + "gas": 2947760, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4" + ] + }, + { + "pc": 101, + "op": "JUMP", + "gas": 2947757, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x38a" + ] + }, + { + "pc": 906, + "op": "JUMPDEST", + "gas": 2947749, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4" + ] + }, + { + "pc": 907, + "op": "PUSH1", + "gas": 2947748, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4" + ] + }, + { + "pc": 909, + "op": "PUSH1", + "gas": 2947745, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 911, + "op": "DUP3", + "gas": 2947742, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x20" + ] + }, + { + "pc": 912, + "op": "DUP5", + "gas": 2947739, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x20", + "0x4" + ] + }, + { + "pc": 913, + "op": "SUB", + "gas": 2947736, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x20", + "0x4", + "0x24" + ] + }, + { + "pc": 914, + "op": "SLT", + "gas": 2947733, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x20", + "0x20" + ] + }, + { + "pc": 915, + "op": "ISZERO", + "gas": 2947730, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0" + ] + }, + { + "pc": 916, + "op": "PUSH2", + "gas": 2947727, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x1" + ] + }, + { + "pc": 919, + "op": "JUMPI", + "gas": 2947724, + "gasCost": 10, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x1", + "0x39c" + ] + }, + { + "pc": 924, + "op": "JUMPDEST", + "gas": 2947714, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 925, + "op": "PUSH1", + "gas": 2947713, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 927, + "op": "PUSH2", + "gas": 2947710, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0" + ] + }, + { + "pc": 930, + "op": "DUP5", + "gas": 2947707, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa" + ] + }, + { + "pc": 931, + "op": "DUP3", + "gas": 2947704, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24" + ] + }, + { + "pc": 932, + "op": "DUP6", + "gas": 2947701, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x0" + ] + }, + { + "pc": 933, + "op": "ADD", + "gas": 2947698, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x0", + "0x4" + ] + }, + { + "pc": 934, + "op": "PUSH2", + "gas": 2947695, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4" + ] + }, + { + "pc": 937, + "op": "JUMP", + "gas": 2947692, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x375" + ] + }, + { + "pc": 885, + "op": "JUMPDEST", + "gas": 2947684, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4" + ] + }, + { + "pc": 886, + "op": "PUSH1", + "gas": 2947683, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4" + ] + }, + { + "pc": 888, + "op": "DUP2", + "gas": 2947680, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 889, + "op": "CALLDATALOAD", + "gas": 2947677, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x0", + "0x4" + ] + }, + { + "pc": 890, + "op": "SWAP1", + "gas": 2947674, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x0", + "0x0" + ] + }, + { + "pc": 891, + "op": "POP", + "gas": 2947671, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x0", + "0x0" + ] + }, + { + "pc": 892, + "op": "PUSH2", + "gas": 2947669, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 895, + "op": "DUP2", + "gas": 2947666, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x0", + "0x384" + ] + }, + { + "pc": 896, + "op": "PUSH2", + "gas": 2947663, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x0", + "0x384", + "0x0" + ] + }, + { + "pc": 899, + "op": "JUMP", + "gas": 2947660, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x0", + "0x384", + "0x0", + "0x4fe" + ] + }, + { + "pc": 1278, + "op": "JUMPDEST", + "gas": 2947652, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x0", + "0x384", + "0x0" + ] + }, + { + "pc": 1279, + "op": "PUSH2", + "gas": 2947651, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x0", + "0x384", + "0x0" + ] + }, + { + "pc": 1282, + "op": "DUP2", + "gas": 2947648, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x0", + "0x384", + "0x0", + "0x507" + ] + }, + { + "pc": 1283, + "op": "PUSH2", + "gas": 2947645, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x0", + "0x384", + "0x0", + "0x507", + "0x0" + ] + }, + { + "pc": 1286, + "op": "JUMP", + "gas": 2947642, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x0", + "0x384", + "0x0", + "0x507", + "0x0", + "0x4b0" + ] + }, + { + "pc": 1200, + "op": "JUMPDEST", + "gas": 2947634, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x0", + "0x384", + "0x0", + "0x507", + "0x0" + ] + }, + { + "pc": 1201, + "op": "PUSH1", + "gas": 2947633, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x0", + "0x384", + "0x0", + "0x507", + "0x0" + ] + }, + { + "pc": 1203, + "op": "DUP2", + "gas": 2947630, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x0", + "0x384", + "0x0", + "0x507", + "0x0", + "0x0" + ] + }, + { + "pc": 1204, + "op": "SWAP1", + "gas": 2947627, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x0", + "0x384", + "0x0", + "0x507", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 1205, + "op": "POP", + "gas": 2947624, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x0", + "0x384", + "0x0", + "0x507", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 1206, + "op": "SWAP2", + "gas": 2947622, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x0", + "0x384", + "0x0", + "0x507", + "0x0", + "0x0" + ] + }, + { + "pc": 1207, + "op": "SWAP1", + "gas": 2947619, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x0", + "0x384", + "0x0", + "0x0", + "0x0", + "0x507" + ] + }, + { + "pc": 1208, + "op": "POP", + "gas": 2947616, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x0", + "0x384", + "0x0", + "0x0", + "0x507", + "0x0" + ] + }, + { + "pc": 1209, + "op": "JUMP", + "gas": 2947614, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x0", + "0x384", + "0x0", + "0x0", + "0x507" + ] + }, + { + "pc": 1287, + "op": "JUMPDEST", + "gas": 2947606, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x0", + "0x384", + "0x0", + "0x0" + ] + }, + { + "pc": 1288, + "op": "DUP2", + "gas": 2947605, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x0", + "0x384", + "0x0", + "0x0" + ] + }, + { + "pc": 1289, + "op": "EQ", + "gas": 2947602, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x0", + "0x384", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 1290, + "op": "PUSH2", + "gas": 2947599, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x0", + "0x384", + "0x0", + "0x1" + ] + }, + { + "pc": 1293, + "op": "JUMPI", + "gas": 2947596, + "gasCost": 10, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x0", + "0x384", + "0x0", + "0x1", + "0x512" + ] + }, + { + "pc": 1298, + "op": "JUMPDEST", + "gas": 2947586, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x0", + "0x384", + "0x0" + ] + }, + { + "pc": 1299, + "op": "POP", + "gas": 2947585, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x0", + "0x384", + "0x0" + ] + }, + { + "pc": 1300, + "op": "JUMP", + "gas": 2947583, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x0", + "0x384" + ] + }, + { + "pc": 900, + "op": "JUMPDEST", + "gas": 2947575, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 901, + "op": "SWAP3", + "gas": 2947574, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 902, + "op": "SWAP2", + "gas": 2947571, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x0", + "0x24", + "0x4", + "0x3aa" + ] + }, + { + "pc": 903, + "op": "POP", + "gas": 2947568, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x0", + "0x3aa", + "0x4", + "0x24" + ] + }, + { + "pc": 904, + "op": "POP", + "gas": 2947566, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x0", + "0x3aa", + "0x4" + ] + }, + { + "pc": 905, + "op": "JUMP", + "gas": 2947564, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x0", + "0x3aa" + ] + }, + { + "pc": 938, + "op": "JUMPDEST", + "gas": 2947556, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 939, + "op": "SWAP2", + "gas": 2947555, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 940, + "op": "POP", + "gas": 2947552, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 941, + "op": "POP", + "gas": 2947550, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0" + ] + }, + { + "pc": 942, + "op": "SWAP3", + "gas": 2947548, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 943, + "op": "SWAP2", + "gas": 2947545, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x0", + "0x24", + "0x4", + "0x66" + ] + }, + { + "pc": 944, + "op": "POP", + "gas": 2947542, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x0", + "0x66", + "0x4", + "0x24" + ] + }, + { + "pc": 945, + "op": "POP", + "gas": 2947540, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x0", + "0x66", + "0x4" + ] + }, + { + "pc": 946, + "op": "JUMP", + "gas": 2947538, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x0", + "0x66" + ] + }, + { + "pc": 102, + "op": "JUMPDEST", + "gas": 2947530, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x0" + ] + }, + { + "pc": 103, + "op": "PUSH2", + "gas": 2947529, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x0" + ] + }, + { + "pc": 106, + "op": "JUMP", + "gas": 2947526, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x0", + "0xc3" + ] + }, + { + "pc": 195, + "op": "JUMPDEST", + "gas": 2947518, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x0" + ] + }, + { + "pc": 196, + "op": "PUSH1", + "gas": 2947517, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x0" + ] + }, + { + "pc": 198, + "op": "DUP1", + "gas": 2947514, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x0", + "0x0" + ] + }, + { + "pc": 199, + "op": "PUSH1", + "gas": 2947511, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 201, + "op": "SWAP1", + "gas": 2947508, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x0", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 202, + "op": "SLOAD", + "gas": 2947505, + "gasCost": 2100, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "storage": { + "0x0000000000000000000000000000000000000000000000000000000000000000": "0x0000000000000000000000007db8ae361a8746cb1346d3390b00d7122e3286e4" + }, + "extraData": { + "proofList": [ + { + "address": "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "nonce": 1, + "balance": "0x0", + "codeHash": "0x5a58c210f99d8c05214f392685ce9711a7538fb5ed7bcd81fba60e035e56f163", + "storage": { + "key": "0x0000000000000000000000000000000000000000000000000000000000000000", + "value": "0x0000000000000000000000007db8ae361a8746cb1346d3390b00d7122e3286e4" + } + } + ] + } + }, + { + "pc": 203, + "op": "SWAP1", + "gas": 2945405, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x0", + "0x0", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4" + ] + }, + { + "pc": 204, + "op": "PUSH2", + "gas": 2945402, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x0", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x0" + ] + }, + { + "pc": 207, + "op": "EXP", + "gas": 2945399, + "gasCost": 10, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x0", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x0", + "0x100" + ] + }, + { + "pc": 208, + "op": "SWAP1", + "gas": 2945389, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x0", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x1" + ] + }, + { + "pc": 209, + "op": "DIV", + "gas": 2945386, + "gasCost": 5, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x0", + "0x0", + "0x1", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4" + ] + }, + { + "pc": 210, + "op": "PUSH20", + "gas": 2945381, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x0", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4" + ] + }, + { + "pc": 231, + "op": "AND", + "gas": 2945378, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x0", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 232, + "op": "SWAP1", + "gas": 2945375, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x0", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4" + ] + }, + { + "pc": 233, + "op": "POP", + "gas": 2945372, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x0" + ] + }, + { + "pc": 234, + "op": "DUP1", + "gas": 2945370, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4" + ] + }, + { + "pc": 235, + "op": "PUSH20", + "gas": 2945367, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4" + ] + }, + { + "pc": 256, + "op": "AND", + "gas": 2945364, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 257, + "op": "PUSH4", + "gas": 2945361, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4" + ] + }, + { + "pc": 262, + "op": "DUP4", + "gas": 2945358, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46" + ] + }, + { + "pc": 263, + "op": "PUSH1", + "gas": 2945355, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x0" + ] + }, + { + "pc": 265, + "op": "MLOAD", + "gas": 2945352, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x0", + "0x40" + ] + }, + { + "pc": 266, + "op": "DUP3", + "gas": 2945349, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x0", + "0x80" + ] + }, + { + "pc": 267, + "op": "PUSH4", + "gas": 2945346, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x0", + "0x80", + "0x21848c46" + ] + }, + { + "pc": 272, + "op": "AND", + "gas": 2945343, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x0", + "0x80", + "0x21848c46", + "0xffffffff" + ] + }, + { + "pc": 273, + "op": "PUSH1", + "gas": 2945340, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x0", + "0x80", + "0x21848c46" + ] + }, + { + "pc": 275, + "op": "SHL", + "gas": 2945337, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x0", + "0x80", + "0x21848c46", + "0xe0" + ] + }, + { + "pc": 276, + "op": "DUP2", + "gas": 2945334, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x0", + "0x80", + "0x21848c4600000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 277, + "op": "MSTORE", + "gas": 2945331, + "gasCost": 9, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x0", + "0x80", + "0x21848c4600000000000000000000000000000000000000000000000000000000", + "0x80" + ] + }, + { + "pc": 278, + "op": "PUSH1", + "gas": 2945322, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x0", + "0x80" + ] + }, + { + "pc": 280, + "op": "ADD", + "gas": 2945319, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x0", + "0x80", + "0x4" + ] + }, + { + "pc": 281, + "op": "PUSH2", + "gas": 2945316, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x0", + "0x84" + ] + }, + { + "pc": 284, + "op": "SWAP2", + "gas": 2945313, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x0", + "0x84", + "0x122" + ] + }, + { + "pc": 285, + "op": "SWAP1", + "gas": 2945310, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x122", + "0x84", + "0x0" + ] + }, + { + "pc": 286, + "op": "PUSH2", + "gas": 2945307, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x122", + "0x0", + "0x84" + ] + }, + { + "pc": 289, + "op": "JUMP", + "gas": 2945304, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x122", + "0x0", + "0x84", + "0x447" + ] + }, + { + "pc": 1095, + "op": "JUMPDEST", + "gas": 2945296, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x122", + "0x0", + "0x84" + ] + }, + { + "pc": 1096, + "op": "PUSH1", + "gas": 2945295, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x122", + "0x0", + "0x84" + ] + }, + { + "pc": 1098, + "op": "PUSH1", + "gas": 2945292, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x122", + "0x0", + "0x84", + "0x0" + ] + }, + { + "pc": 1100, + "op": "DUP3", + "gas": 2945289, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x122", + "0x0", + "0x84", + "0x0", + "0x20" + ] + }, + { + "pc": 1101, + "op": "ADD", + "gas": 2945286, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x122", + "0x0", + "0x84", + "0x0", + "0x20", + "0x84" + ] + }, + { + "pc": 1102, + "op": "SWAP1", + "gas": 2945283, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x122", + "0x0", + "0x84", + "0x0", + "0xa4" + ] + }, + { + "pc": 1103, + "op": "POP", + "gas": 2945280, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x122", + "0x0", + "0x84", + "0xa4", + "0x0" + ] + }, + { + "pc": 1104, + "op": "PUSH2", + "gas": 2945278, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x122", + "0x0", + "0x84", + "0xa4" + ] + }, + { + "pc": 1107, + "op": "PUSH1", + "gas": 2945275, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x122", + "0x0", + "0x84", + "0xa4", + "0x45c" + ] + }, + { + "pc": 1109, + "op": "DUP4", + "gas": 2945272, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x122", + "0x0", + "0x84", + "0xa4", + "0x45c", + "0x0" + ] + }, + { + "pc": 1110, + "op": "ADD", + "gas": 2945269, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x122", + "0x0", + "0x84", + "0xa4", + "0x45c", + "0x0", + "0x84" + ] + }, + { + "pc": 1111, + "op": "DUP5", + "gas": 2945266, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x122", + "0x0", + "0x84", + "0xa4", + "0x45c", + "0x84" + ] + }, + { + "pc": 1112, + "op": "PUSH2", + "gas": 2945263, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x122", + "0x0", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x0" + ] + }, + { + "pc": 1115, + "op": "JUMP", + "gas": 2945260, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x122", + "0x0", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x0", + "0x3fb" + ] + }, + { + "pc": 1019, + "op": "JUMPDEST", + "gas": 2945252, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x122", + "0x0", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x0" + ] + }, + { + "pc": 1020, + "op": "PUSH2", + "gas": 2945251, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x122", + "0x0", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x0" + ] + }, + { + "pc": 1023, + "op": "DUP2", + "gas": 2945248, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x122", + "0x0", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x0", + "0x404" + ] + }, + { + "pc": 1024, + "op": "PUSH2", + "gas": 2945245, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x122", + "0x0", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x0", + "0x404", + "0x0" + ] + }, + { + "pc": 1027, + "op": "JUMP", + "gas": 2945242, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x122", + "0x0", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x0", + "0x404", + "0x0", + "0x4b0" + ] + }, + { + "pc": 1200, + "op": "JUMPDEST", + "gas": 2945234, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x122", + "0x0", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x0", + "0x404", + "0x0" + ] + }, + { + "pc": 1201, + "op": "PUSH1", + "gas": 2945233, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x122", + "0x0", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x0", + "0x404", + "0x0" + ] + }, + { + "pc": 1203, + "op": "DUP2", + "gas": 2945230, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x122", + "0x0", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x0", + "0x404", + "0x0", + "0x0" + ] + }, + { + "pc": 1204, + "op": "SWAP1", + "gas": 2945227, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x122", + "0x0", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x0", + "0x404", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 1205, + "op": "POP", + "gas": 2945224, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x122", + "0x0", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x0", + "0x404", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 1206, + "op": "SWAP2", + "gas": 2945222, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x122", + "0x0", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x0", + "0x404", + "0x0", + "0x0" + ] + }, + { + "pc": 1207, + "op": "SWAP1", + "gas": 2945219, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x122", + "0x0", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x0", + "0x0", + "0x0", + "0x404" + ] + }, + { + "pc": 1208, + "op": "POP", + "gas": 2945216, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x122", + "0x0", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x0", + "0x0", + "0x404", + "0x0" + ] + }, + { + "pc": 1209, + "op": "JUMP", + "gas": 2945214, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x122", + "0x0", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x0", + "0x0", + "0x404" + ] + }, + { + "pc": 1028, + "op": "JUMPDEST", + "gas": 2945206, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x122", + "0x0", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x0", + "0x0" + ] + }, + { + "pc": 1029, + "op": "DUP3", + "gas": 2945205, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x122", + "0x0", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x0", + "0x0" + ] + }, + { + "pc": 1030, + "op": "MSTORE", + "gas": 2945202, + "gasCost": 6, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x122", + "0x0", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x0", + "0x0", + "0x84" + ] + }, + { + "pc": 1031, + "op": "POP", + "gas": 2945196, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x122", + "0x0", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x0" + ] + }, + { + "pc": 1032, + "op": "POP", + "gas": 2945194, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x122", + "0x0", + "0x84", + "0xa4", + "0x45c", + "0x84" + ] + }, + { + "pc": 1033, + "op": "JUMP", + "gas": 2945192, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x122", + "0x0", + "0x84", + "0xa4", + "0x45c" + ] + }, + { + "pc": 1116, + "op": "JUMPDEST", + "gas": 2945184, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x122", + "0x0", + "0x84", + "0xa4" + ] + }, + { + "pc": 1117, + "op": "SWAP3", + "gas": 2945183, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x122", + "0x0", + "0x84", + "0xa4" + ] + }, + { + "pc": 1118, + "op": "SWAP2", + "gas": 2945180, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0xa4", + "0x0", + "0x84", + "0x122" + ] + }, + { + "pc": 1119, + "op": "POP", + "gas": 2945177, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0xa4", + "0x122", + "0x84", + "0x0" + ] + }, + { + "pc": 1120, + "op": "POP", + "gas": 2945175, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0xa4", + "0x122", + "0x84" + ] + }, + { + "pc": 1121, + "op": "JUMP", + "gas": 2945173, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0xa4", + "0x122" + ] + }, + { + "pc": 290, + "op": "JUMPDEST", + "gas": 2945165, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0xa4" + ] + }, + { + "pc": 291, + "op": "PUSH1", + "gas": 2945164, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0xa4" + ] + }, + { + "pc": 293, + "op": "PUSH1", + "gas": 2945161, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0xa4", + "0x0" + ] + }, + { + "pc": 295, + "op": "MLOAD", + "gas": 2945158, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0xa4", + "0x0", + "0x40" + ] + }, + { + "pc": 296, + "op": "DUP1", + "gas": 2945155, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0xa4", + "0x0", + "0x80" + ] + }, + { + "pc": 297, + "op": "DUP4", + "gas": 2945152, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0xa4", + "0x0", + "0x80", + "0x80" + ] + }, + { + "pc": 298, + "op": "SUB", + "gas": 2945149, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0xa4", + "0x0", + "0x80", + "0x80", + "0xa4" + ] + }, + { + "pc": 299, + "op": "DUP2", + "gas": 2945146, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0xa4", + "0x0", + "0x80", + "0x24" + ] + }, + { + "pc": 300, + "op": "PUSH1", + "gas": 2945143, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80" + ] + }, + { + "pc": 302, + "op": "DUP8", + "gas": 2945140, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0" + ] + }, + { + "pc": 303, + "op": "DUP1", + "gas": 2945137, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4" + ] + }, + { + "pc": 304, + "op": "EXTCODESIZE", + "gas": 2945134, + "gasCost": 2600, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4" + ], + "extraData": { + "codeList": [ + "0x6080604052600436106100555760003560e01c806321848c461461005a5780632e64cec114610083578063b0f2b72a146100ae578063c4e96ec0146100d7578063e5223f88146100f3578063f34176731461010f575b600080fd5b34801561006657600080fd5b50610081600480360381019061007c91906101d7565b61013a565b005b34801561008f57600080fd5b5061009861014f565b6040516100a59190610252565b60405180910390f35b3480156100ba57600080fd5b506100d560048036038101906100d091906101d7565b610158565b005b6100f160048036038101906100ec91906101d7565b610162565b005b61010d600480360381019061010891906101d7565b6101a4565b005b34801561011b57600080fd5b506101246101ae565b6040516101319190610252565b60405180910390f35b80600081905550600061014c57600080fd5b50565b60008054905090565b8060008190555050565b806000819055506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161019b90610232565b60405180910390fd5b8060008190555050565b6000806101ba57600080fd5b600054905090565b6000813590506101d1816102b1565b92915050565b6000602082840312156101e957600080fd5b60006101f7848285016101c2565b91505092915050565b600061020d600c8361026d565b915061021882610288565b602082019050919050565b61022c8161027e565b82525050565b6000602082019050818103600083015261024b81610200565b9050919050565b60006020820190506102676000830184610223565b92915050565b600082825260208201905092915050565b6000819050919050565b7f64656c696265726174656c790000000000000000000000000000000000000000600082015250565b6102ba8161027e565b81146102c557600080fd5b5056fea26469706673582212206fa6988b66dece47dc22658a0058d7f113ce303b23abdbfb3e29ee300a66489464736f6c63430008040033" + ] + } + }, + { + "pc": 305, + "op": "ISZERO", + "gas": 2942534, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x2fe" + ] + }, + { + "pc": 306, + "op": "DUP1", + "gas": 2942531, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x0" + ] + }, + { + "pc": 307, + "op": "ISZERO", + "gas": 2942528, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x0", + "0x0" + ] + }, + { + "pc": 308, + "op": "PUSH2", + "gas": 2942525, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x0", + "0x1" + ] + }, + { + "pc": 311, + "op": "JUMPI", + "gas": 2942522, + "gasCost": 10, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x0", + "0x1", + "0x13c" + ] + }, + { + "pc": 316, + "op": "JUMPDEST", + "gas": 2942512, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x0" + ] + }, + { + "pc": 317, + "op": "POP", + "gas": 2942511, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x0" + ] + }, + { + "pc": 318, + "op": "GAS", + "gas": 2942509, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4" + ] + }, + { + "pc": 319, + "op": "CALL", + "gas": 2942507, + "gasCost": 2896532, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x2ce62b" + ], + "extraData": { + "callFailed": true, + "codeList": [ + "0x608060405234801561001057600080fd5b506004361061007d5760003560e01c80633e23ee431161005b5780633e23ee43146100d8578063651b4aa5146100f6578063a0a4868814610112578063cb4ec52e1461012e5761007d565b8063127017e114610082578063200d2ed21461009e57806336864b1b146100bc575b600080fd5b61009c6004803603810190610097919061050c565b61014a565b005b6100a66101e6565b6040516100b391906105b1565b60405180910390f35b6100d660048036038101906100d1919061050c565b6101f0565b005b6100e06102c3565b6040516100ed9190610576565b60405180910390f35b610110600480360381019061010b919061050c565b6102ec565b005b61012c6004803603810190610127919061050c565b610388565b005b6101486004803603810190610143919061050c565b61045b565b005b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663ed231420836040518263ffffffff1660e01b81526004016101a991906105b1565b600060405180830381600087803b1580156101c357600080fd5b505af11580156101d7573d6000803e3d6000fd5b50505050816001819055505050565b6000600154905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663b0f2b72a836040518263ffffffff1660e01b815260040161024f91906105b1565b600060405180830381600087803b15801561026957600080fd5b505af115801561027d573d6000803e3d6000fd5b50505050816001819055506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016102ba90610591565b60405180910390fd5b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff166321848c46836040518263ffffffff1660e01b815260040161034b91906105b1565b600060405180830381600087803b15801561036557600080fd5b505af1158015610379573d6000803e3d6000fd5b50505050816001819055505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff166321848c46836040518263ffffffff1660e01b81526004016103e791906105b1565b600060405180830381600087803b15801561040157600080fd5b505af1158015610415573d6000803e3d6000fd5b50505050816001819055506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161045290610591565b60405180910390fd5b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663b0f2b72a836040518263ffffffff1660e01b81526004016104ba91906105b1565b600060405180830381600087803b1580156104d457600080fd5b505af11580156104e8573d6000803e3d6000fd5b50505050816001819055505050565b60008135905061050681610642565b92915050565b60006020828403121561051e57600080fd5b600061052c848285016104f7565b91505092915050565b61053e816105dd565b82525050565b6000610551600c836105cc565b915061055c82610619565b602082019050919050565b6105708161060f565b82525050565b600060208201905061058b6000830184610535565b92915050565b600060208201905081810360008301526105aa81610544565b9050919050565b60006020820190506105c66000830184610567565b92915050565b600082825260208201905092915050565b60006105e8826105ef565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b7f64656c696265726174656c790000000000000000000000000000000000000000600082015250565b61064b8161060f565b811461065657600080fd5b5056fea2646970667358221220fc037ef9cac015a49b5d1fa3ef3193503e4aef8398dd3d8a477cd8726cb8d54a64736f6c63430008040033", + "0x6080604052600436106100555760003560e01c806321848c461461005a5780632e64cec114610083578063b0f2b72a146100ae578063c4e96ec0146100d7578063e5223f88146100f3578063f34176731461010f575b600080fd5b34801561006657600080fd5b50610081600480360381019061007c91906101d7565b61013a565b005b34801561008f57600080fd5b5061009861014f565b6040516100a59190610252565b60405180910390f35b3480156100ba57600080fd5b506100d560048036038101906100d091906101d7565b610158565b005b6100f160048036038101906100ec91906101d7565b610162565b005b61010d600480360381019061010891906101d7565b6101a4565b005b34801561011b57600080fd5b506101246101ae565b6040516101319190610252565b60405180910390f35b80600081905550600061014c57600080fd5b50565b60008054905090565b8060008190555050565b806000819055506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161019b90610232565b60405180910390fd5b8060008190555050565b6000806101ba57600080fd5b600054905090565b6000813590506101d1816102b1565b92915050565b6000602082840312156101e957600080fd5b60006101f7848285016101c2565b91505092915050565b600061020d600c8361026d565b915061021882610288565b602082019050919050565b61022c8161027e565b82525050565b6000602082019050818103600083015261024b81610200565b9050919050565b60006020820190506102676000830184610223565b92915050565b600082825260208201905092915050565b6000819050919050565b7f64656c696265726174656c790000000000000000000000000000000000000000600082015250565b6102ba8161027e565b81146102c557600080fd5b5056fea26469706673582212206fa6988b66dece47dc22658a0058d7f113ce303b23abdbfb3e29ee300a66489464736f6c63430008040033" + ], + "proofList": [ + { + "address": "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "nonce": 1, + "balance": "0x0", + "codeHash": "0x5a58c210f99d8c05214f392685ce9711a7538fb5ed7bcd81fba60e035e56f163" + }, + { + "address": "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "nonce": 1, + "balance": "0x0", + "codeHash": "0x4ee2afb169bef88abed9792edc0230c2cda9c19a48639d2db199479f1176928e" + }, + { + "address": "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "nonce": 1, + "balance": "0x0", + "codeHash": "0x4ee2afb169bef88abed9792edc0230c2cda9c19a48639d2db199479f1176928e" + } + ], + "caller": [ + { + "address": "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "nonce": 1, + "balance": "0x0", + "codeHash": "0x5a58c210f99d8c05214f392685ce9711a7538fb5ed7bcd81fba60e035e56f163" + }, + { + "address": "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "nonce": 1, + "balance": "0x0", + "codeHash": "0x5a58c210f99d8c05214f392685ce9711a7538fb5ed7bcd81fba60e035e56f163" + } + ] + } + }, + { + "pc": 0, + "op": "PUSH1", + "gas": 2896432, + "gasCost": 3, + "depth": 3 + }, + { + "pc": 2, + "op": "PUSH1", + "gas": 2896429, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x80" + ] + }, + { + "pc": 4, + "op": "MSTORE", + "gas": 2896426, + "gasCost": 12, + "depth": 3, + "stack": [ + "0x80", + "0x40" + ] + }, + { + "pc": 5, + "op": "PUSH1", + "gas": 2896414, + "gasCost": 3, + "depth": 3 + }, + { + "pc": 7, + "op": "CALLDATASIZE", + "gas": 2896411, + "gasCost": 2, + "depth": 3, + "stack": [ + "0x4" + ] + }, + { + "pc": 8, + "op": "LT", + "gas": 2896409, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x4", + "0x24" + ] + }, + { + "pc": 9, + "op": "PUSH2", + "gas": 2896406, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x0" + ] + }, + { + "pc": 12, + "op": "JUMPI", + "gas": 2896403, + "gasCost": 10, + "depth": 3, + "stack": [ + "0x0", + "0x55" + ] + }, + { + "pc": 13, + "op": "PUSH1", + "gas": 2896393, + "gasCost": 3, + "depth": 3 + }, + { + "pc": 15, + "op": "CALLDATALOAD", + "gas": 2896390, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x0" + ] + }, + { + "pc": 16, + "op": "PUSH1", + "gas": 2896387, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c4600000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 18, + "op": "SHR", + "gas": 2896384, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c4600000000000000000000000000000000000000000000000000000000", + "0xe0" + ] + }, + { + "pc": 19, + "op": "DUP1", + "gas": 2896381, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46" + ] + }, + { + "pc": 20, + "op": "PUSH4", + "gas": 2896378, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x21848c46" + ] + }, + { + "pc": 25, + "op": "EQ", + "gas": 2896375, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x21848c46", + "0x21848c46" + ] + }, + { + "pc": 26, + "op": "PUSH2", + "gas": 2896372, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x1" + ] + }, + { + "pc": 29, + "op": "JUMPI", + "gas": 2896369, + "gasCost": 10, + "depth": 3, + "stack": [ + "0x21848c46", + "0x1", + "0x5a" + ] + }, + { + "pc": 90, + "op": "JUMPDEST", + "gas": 2896359, + "gasCost": 1, + "depth": 3, + "stack": [ + "0x21848c46" + ] + }, + { + "pc": 91, + "op": "CALLVALUE", + "gas": 2896358, + "gasCost": 2, + "depth": 3, + "stack": [ + "0x21848c46" + ] + }, + { + "pc": 92, + "op": "DUP1", + "gas": 2896356, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x0" + ] + }, + { + "pc": 93, + "op": "ISZERO", + "gas": 2896353, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x0", + "0x0" + ] + }, + { + "pc": 94, + "op": "PUSH2", + "gas": 2896350, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x0", + "0x1" + ] + }, + { + "pc": 97, + "op": "JUMPI", + "gas": 2896347, + "gasCost": 10, + "depth": 3, + "stack": [ + "0x21848c46", + "0x0", + "0x1", + "0x66" + ] + }, + { + "pc": 102, + "op": "JUMPDEST", + "gas": 2896337, + "gasCost": 1, + "depth": 3, + "stack": [ + "0x21848c46", + "0x0" + ] + }, + { + "pc": 103, + "op": "POP", + "gas": 2896336, + "gasCost": 2, + "depth": 3, + "stack": [ + "0x21848c46", + "0x0" + ] + }, + { + "pc": 104, + "op": "PUSH2", + "gas": 2896334, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46" + ] + }, + { + "pc": 107, + "op": "PUSH1", + "gas": 2896331, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81" + ] + }, + { + "pc": 109, + "op": "DUP1", + "gas": 2896328, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x4" + ] + }, + { + "pc": 110, + "op": "CALLDATASIZE", + "gas": 2896325, + "gasCost": 2, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x4", + "0x4" + ] + }, + { + "pc": 111, + "op": "SUB", + "gas": 2896323, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x4", + "0x4", + "0x24" + ] + }, + { + "pc": 112, + "op": "DUP2", + "gas": 2896320, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x4", + "0x20" + ] + }, + { + "pc": 113, + "op": "ADD", + "gas": 2896317, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x4", + "0x20", + "0x4" + ] + }, + { + "pc": 114, + "op": "SWAP1", + "gas": 2896314, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x4", + "0x24" + ] + }, + { + "pc": 115, + "op": "PUSH2", + "gas": 2896311, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x24", + "0x4" + ] + }, + { + "pc": 118, + "op": "SWAP2", + "gas": 2896308, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x24", + "0x4", + "0x7c" + ] + }, + { + "pc": 119, + "op": "SWAP1", + "gas": 2896305, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x4", + "0x24" + ] + }, + { + "pc": 120, + "op": "PUSH2", + "gas": 2896302, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4" + ] + }, + { + "pc": 123, + "op": "JUMP", + "gas": 2896299, + "gasCost": 8, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x1d7" + ] + }, + { + "pc": 471, + "op": "JUMPDEST", + "gas": 2896291, + "gasCost": 1, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4" + ] + }, + { + "pc": 472, + "op": "PUSH1", + "gas": 2896290, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4" + ] + }, + { + "pc": 474, + "op": "PUSH1", + "gas": 2896287, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 476, + "op": "DUP3", + "gas": 2896284, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x20" + ] + }, + { + "pc": 477, + "op": "DUP5", + "gas": 2896281, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x20", + "0x4" + ] + }, + { + "pc": 478, + "op": "SUB", + "gas": 2896278, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x20", + "0x4", + "0x24" + ] + }, + { + "pc": 479, + "op": "SLT", + "gas": 2896275, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x20", + "0x20" + ] + }, + { + "pc": 480, + "op": "ISZERO", + "gas": 2896272, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0" + ] + }, + { + "pc": 481, + "op": "PUSH2", + "gas": 2896269, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x1" + ] + }, + { + "pc": 484, + "op": "JUMPI", + "gas": 2896266, + "gasCost": 10, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x1", + "0x1e9" + ] + }, + { + "pc": 489, + "op": "JUMPDEST", + "gas": 2896256, + "gasCost": 1, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 490, + "op": "PUSH1", + "gas": 2896255, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 492, + "op": "PUSH2", + "gas": 2896252, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0" + ] + }, + { + "pc": 495, + "op": "DUP5", + "gas": 2896249, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7" + ] + }, + { + "pc": 496, + "op": "DUP3", + "gas": 2896246, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24" + ] + }, + { + "pc": 497, + "op": "DUP6", + "gas": 2896243, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x0" + ] + }, + { + "pc": 498, + "op": "ADD", + "gas": 2896240, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x0", + "0x4" + ] + }, + { + "pc": 499, + "op": "PUSH2", + "gas": 2896237, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4" + ] + }, + { + "pc": 502, + "op": "JUMP", + "gas": 2896234, + "gasCost": 8, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x1c2" + ] + }, + { + "pc": 450, + "op": "JUMPDEST", + "gas": 2896226, + "gasCost": 1, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4" + ] + }, + { + "pc": 451, + "op": "PUSH1", + "gas": 2896225, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4" + ] + }, + { + "pc": 453, + "op": "DUP2", + "gas": 2896222, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 454, + "op": "CALLDATALOAD", + "gas": 2896219, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x0", + "0x4" + ] + }, + { + "pc": 455, + "op": "SWAP1", + "gas": 2896216, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x0", + "0x0" + ] + }, + { + "pc": 456, + "op": "POP", + "gas": 2896213, + "gasCost": 2, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x0", + "0x0" + ] + }, + { + "pc": 457, + "op": "PUSH2", + "gas": 2896211, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 460, + "op": "DUP2", + "gas": 2896208, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x0", + "0x1d1" + ] + }, + { + "pc": 461, + "op": "PUSH2", + "gas": 2896205, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x0", + "0x1d1", + "0x0" + ] + }, + { + "pc": 464, + "op": "JUMP", + "gas": 2896202, + "gasCost": 8, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x0", + "0x1d1", + "0x0", + "0x2b1" + ] + }, + { + "pc": 689, + "op": "JUMPDEST", + "gas": 2896194, + "gasCost": 1, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x0", + "0x1d1", + "0x0" + ] + }, + { + "pc": 690, + "op": "PUSH2", + "gas": 2896193, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x0", + "0x1d1", + "0x0" + ] + }, + { + "pc": 693, + "op": "DUP2", + "gas": 2896190, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x0", + "0x1d1", + "0x0", + "0x2ba" + ] + }, + { + "pc": 694, + "op": "PUSH2", + "gas": 2896187, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x0", + "0x1d1", + "0x0", + "0x2ba", + "0x0" + ] + }, + { + "pc": 697, + "op": "JUMP", + "gas": 2896184, + "gasCost": 8, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x0", + "0x1d1", + "0x0", + "0x2ba", + "0x0", + "0x27e" + ] + }, + { + "pc": 638, + "op": "JUMPDEST", + "gas": 2896176, + "gasCost": 1, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x0", + "0x1d1", + "0x0", + "0x2ba", + "0x0" + ] + }, + { + "pc": 639, + "op": "PUSH1", + "gas": 2896175, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x0", + "0x1d1", + "0x0", + "0x2ba", + "0x0" + ] + }, + { + "pc": 641, + "op": "DUP2", + "gas": 2896172, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x0", + "0x1d1", + "0x0", + "0x2ba", + "0x0", + "0x0" + ] + }, + { + "pc": 642, + "op": "SWAP1", + "gas": 2896169, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x0", + "0x1d1", + "0x0", + "0x2ba", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 643, + "op": "POP", + "gas": 2896166, + "gasCost": 2, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x0", + "0x1d1", + "0x0", + "0x2ba", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 644, + "op": "SWAP2", + "gas": 2896164, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x0", + "0x1d1", + "0x0", + "0x2ba", + "0x0", + "0x0" + ] + }, + { + "pc": 645, + "op": "SWAP1", + "gas": 2896161, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x0", + "0x1d1", + "0x0", + "0x0", + "0x0", + "0x2ba" + ] + }, + { + "pc": 646, + "op": "POP", + "gas": 2896158, + "gasCost": 2, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x0", + "0x1d1", + "0x0", + "0x0", + "0x2ba", + "0x0" + ] + }, + { + "pc": 647, + "op": "JUMP", + "gas": 2896156, + "gasCost": 8, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x0", + "0x1d1", + "0x0", + "0x0", + "0x2ba" + ] + }, + { + "pc": 698, + "op": "JUMPDEST", + "gas": 2896148, + "gasCost": 1, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x0", + "0x1d1", + "0x0", + "0x0" + ] + }, + { + "pc": 699, + "op": "DUP2", + "gas": 2896147, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x0", + "0x1d1", + "0x0", + "0x0" + ] + }, + { + "pc": 700, + "op": "EQ", + "gas": 2896144, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x0", + "0x1d1", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 701, + "op": "PUSH2", + "gas": 2896141, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x0", + "0x1d1", + "0x0", + "0x1" + ] + }, + { + "pc": 704, + "op": "JUMPI", + "gas": 2896138, + "gasCost": 10, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x0", + "0x1d1", + "0x0", + "0x1", + "0x2c5" + ] + }, + { + "pc": 709, + "op": "JUMPDEST", + "gas": 2896128, + "gasCost": 1, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x0", + "0x1d1", + "0x0" + ] + }, + { + "pc": 710, + "op": "POP", + "gas": 2896127, + "gasCost": 2, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x0", + "0x1d1", + "0x0" + ] + }, + { + "pc": 711, + "op": "JUMP", + "gas": 2896125, + "gasCost": 8, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x0", + "0x1d1" + ] + }, + { + "pc": 465, + "op": "JUMPDEST", + "gas": 2896117, + "gasCost": 1, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 466, + "op": "SWAP3", + "gas": 2896116, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 467, + "op": "SWAP2", + "gas": 2896113, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x0", + "0x24", + "0x4", + "0x1f7" + ] + }, + { + "pc": 468, + "op": "POP", + "gas": 2896110, + "gasCost": 2, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x0", + "0x1f7", + "0x4", + "0x24" + ] + }, + { + "pc": 469, + "op": "POP", + "gas": 2896108, + "gasCost": 2, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x0", + "0x1f7", + "0x4" + ] + }, + { + "pc": 470, + "op": "JUMP", + "gas": 2896106, + "gasCost": 8, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x0", + "0x1f7" + ] + }, + { + "pc": 503, + "op": "JUMPDEST", + "gas": 2896098, + "gasCost": 1, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 504, + "op": "SWAP2", + "gas": 2896097, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 505, + "op": "POP", + "gas": 2896094, + "gasCost": 2, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 506, + "op": "POP", + "gas": 2896092, + "gasCost": 2, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0" + ] + }, + { + "pc": 507, + "op": "SWAP3", + "gas": 2896090, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 508, + "op": "SWAP2", + "gas": 2896087, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x0", + "0x24", + "0x4", + "0x7c" + ] + }, + { + "pc": 509, + "op": "POP", + "gas": 2896084, + "gasCost": 2, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x0", + "0x7c", + "0x4", + "0x24" + ] + }, + { + "pc": 510, + "op": "POP", + "gas": 2896082, + "gasCost": 2, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x0", + "0x7c", + "0x4" + ] + }, + { + "pc": 511, + "op": "JUMP", + "gas": 2896080, + "gasCost": 8, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x0", + "0x7c" + ] + }, + { + "pc": 124, + "op": "JUMPDEST", + "gas": 2896072, + "gasCost": 1, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x0" + ] + }, + { + "pc": 125, + "op": "PUSH2", + "gas": 2896071, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x0" + ] + }, + { + "pc": 128, + "op": "JUMP", + "gas": 2896068, + "gasCost": 8, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x0", + "0x13a" + ] + }, + { + "pc": 314, + "op": "JUMPDEST", + "gas": 2896060, + "gasCost": 1, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x0" + ] + }, + { + "pc": 315, + "op": "DUP1", + "gas": 2896059, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x0" + ] + }, + { + "pc": 316, + "op": "PUSH1", + "gas": 2896056, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x0", + "0x0" + ] + }, + { + "pc": 318, + "op": "DUP2", + "gas": 2896053, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 319, + "op": "SWAP1", + "gas": 2896050, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x0", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 320, + "op": "SSTORE", + "gas": 2896047, + "gasCost": 5000, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "storage": { + "0x0000000000000000000000000000000000000000000000000000000000000000": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "refund": 4800, + "extraData": { + "proofList": [ + { + "address": "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "nonce": 1, + "balance": "0x0", + "codeHash": "0x4ee2afb169bef88abed9792edc0230c2cda9c19a48639d2db199479f1176928e", + "storage": { + "key": "0x0000000000000000000000000000000000000000000000000000000000000000", + "value": "0x00000000000000000000000000000000000000000000000000000182cae4f502" + } + } + ] + } + }, + { + "pc": 321, + "op": "POP", + "gas": 2891047, + "gasCost": 2, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x0", + "0x0" + ], + "refund": 4800 + }, + { + "pc": 322, + "op": "PUSH1", + "gas": 2891045, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x0" + ], + "refund": 4800 + }, + { + "pc": 324, + "op": "PUSH2", + "gas": 2891042, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x0", + "0x0" + ], + "refund": 4800 + }, + { + "pc": 327, + "op": "JUMPI", + "gas": 2891039, + "gasCost": 10, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x0", + "0x0", + "0x14c" + ], + "refund": 4800 + }, + { + "pc": 328, + "op": "PUSH1", + "gas": 2891029, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x0" + ], + "refund": 4800 + }, + { + "pc": 330, + "op": "DUP1", + "gas": 2891026, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x0", + "0x0" + ], + "refund": 4800 + }, + { + "pc": 331, + "op": "REVERT", + "gas": 2891023, + "gasCost": 0, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x0", + "0x0", + "0x0" + ], + "refund": 4800 + }, + { + "pc": 320, + "op": "SWAP3", + "gas": 2936998, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0xa4", + "0x0" + ] + }, + { + "pc": 321, + "op": "POP", + "gas": 2936995, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x0", + "0x21848c46", + "0xa4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4" + ] + }, + { + "pc": 322, + "op": "POP", + "gas": 2936993, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x0", + "0x21848c46", + "0xa4" + ] + }, + { + "pc": 323, + "op": "POP", + "gas": 2936991, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x0", + "0x21848c46" + ] + }, + { + "pc": 324, + "op": "DUP1", + "gas": 2936989, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x0" + ] + }, + { + "pc": 325, + "op": "ISZERO", + "gas": 2936986, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x0", + "0x0" + ] + }, + { + "pc": 326, + "op": "PUSH2", + "gas": 2936983, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x0", + "0x1" + ] + }, + { + "pc": 329, + "op": "JUMPI", + "gas": 2936980, + "gasCost": 10, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x0", + "0x1", + "0x14d" + ] + }, + { + "pc": 333, + "op": "JUMPDEST", + "gas": 2936970, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x0" + ] + }, + { + "pc": 334, + "op": "PUSH2", + "gas": 2936969, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x0" + ] + }, + { + "pc": 337, + "op": "JUMPI", + "gas": 2936966, + "gasCost": 10, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x0", + "0x156" + ] + }, + { + "pc": 338, + "op": "PUSH2", + "gas": 2936956, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4" + ] + }, + { + "pc": 341, + "op": "JUMP", + "gas": 2936953, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x157" + ] + }, + { + "pc": 343, + "op": "JUMPDEST", + "gas": 2936945, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4" + ] + }, + { + "pc": 344, + "op": "POP", + "gas": 2936944, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4" + ] + }, + { + "pc": 345, + "op": "POP", + "gas": 2936942, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x0" + ] + }, + { + "pc": 346, + "op": "JUMP", + "gas": 2936940, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b" + ] + }, + { + "pc": 107, + "op": "JUMPDEST", + "gas": 2936932, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x21848c46" + ] + }, + { + "pc": 108, + "op": "STOP", + "gas": 2936931, + "gasCost": 0, + "depth": 2, + "stack": [ + "0x21848c46" + ] + }, + { + "pc": 873, + "op": "ISZERO", + "gas": 2983722, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0xa4", + "0x1" + ] + }, + { + "pc": 874, + "op": "DUP1", + "gas": 2983719, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0xa4", + "0x0" + ] + }, + { + "pc": 875, + "op": "ISZERO", + "gas": 2983716, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0xa4", + "0x0", + "0x0" + ] + }, + { + "pc": 876, + "op": "PUSH2", + "gas": 2983713, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0xa4", + "0x0", + "0x1" + ] + }, + { + "pc": 879, + "op": "JUMPI", + "gas": 2983710, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0xa4", + "0x0", + "0x1", + "0x379" + ] + }, + { + "pc": 889, + "op": "JUMPDEST", + "gas": 2983700, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0xa4", + "0x0" + ] + }, + { + "pc": 890, + "op": "POP", + "gas": 2983699, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0xa4", + "0x0" + ] + }, + { + "pc": 891, + "op": "POP", + "gas": 2983697, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0xa4" + ] + }, + { + "pc": 892, + "op": "POP", + "gas": 2983695, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46" + ] + }, + { + "pc": 893, + "op": "POP", + "gas": 2983693, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5" + ] + }, + { + "pc": 894, + "op": "DUP2", + "gas": 2983691, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5" + ] + }, + { + "pc": 895, + "op": "PUSH1", + "gas": 2983688, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x0" + ] + }, + { + "pc": 897, + "op": "DUP2", + "gas": 2983685, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x0", + "0x1" + ] + }, + { + "pc": 898, + "op": "SWAP1", + "gas": 2983682, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x0", + "0x1", + "0x0" + ] + }, + { + "pc": 899, + "op": "SSTORE", + "gas": 2983679, + "gasCost": 5000, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x0", + "0x0", + "0x1" + ], + "storage": { + "0x0000000000000000000000000000000000000000000000000000000000000000": "0x000000000000000000000000ed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x0000000000000000000000000000000000000000000000000000000000000001": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "refund": 4800, + "extraData": { + "proofList": [ + { + "address": "0x9cb1b5b04b4dcd5c3ab9bafd2c0ad4fd8a9b3d29", + "nonce": 1, + "balance": "0x0", + "codeHash": "0xb058876f2963a74146d29465bbd582cbc6f2c03a2ec5adc6e6d74513470072a4", + "storage": { + "key": "0x0000000000000000000000000000000000000000000000000000000000000001", + "value": "0x00000000000000000000000000000000000000000000000000000182cae4f502" + } + } + ] + } + }, + { + "pc": 900, + "op": "POP", + "gas": 2978679, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x0" + ], + "refund": 4800 + }, + { + "pc": 901, + "op": "POP", + "gas": 2978677, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5" + ], + "refund": 4800 + }, + { + "pc": 902, + "op": "POP", + "gas": 2978675, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x0" + ], + "refund": 4800 + }, + { + "pc": 903, + "op": "JUMP", + "gas": 2978673, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110" + ], + "refund": 4800 + }, + { + "pc": 272, + "op": "JUMPDEST", + "gas": 2978665, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x651b4aa5" + ], + "refund": 4800 + }, + { + "pc": 273, + "op": "STOP", + "gas": 2978664, + "gasCost": 0, + "depth": 1, + "stack": [ + "0x651b4aa5" + ], + "refund": 4800 + } + ] + } + ] +} \ No newline at end of file diff --git a/internal/utesting/blocktraces/call_edge.json b/internal/utesting/blocktraces/call_edge.json new file mode 100644 index 0000000000..05680ab678 --- /dev/null +++ b/internal/utesting/blocktraces/call_edge.json @@ -0,0 +1,9834 @@ +{ + "blockTrace": { + "number": "0x9f", + "hash": "0xcac13e2e549b53085bec70476ef70f5a134cc437cd725c22e8725f4c2a7c765d", + "gasLimit": 7850267, + "difficulty": "0x2", + "baseFee": "0xbf", + "coinbase": { + "address": "0x0000000000000000000000000000000000000000", + "nonce": 0, + "balance": "0x0", + "codeHash": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "time": 1661305010, + "transactions": [ + { + "type": 2, + "nonce": 240, + "txHash": "0xaa613faee55111f8af4af3f5478dedb6ff7bc8fc1379e1650073ba4c36724d61", + "gas": 158877, + "gasPrice": "0xf1", + "from": "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "to": null, + "chainId": "0xcf55", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b506100596040518060400160405280600481526020017f746573740000000000000000000000000000000000000000000000000000000081525061005e60201b6100091760201c565b6101e1565b6100fa81604051602401610072919061015f565b6040516020818303038152906040527f41304fac000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506100fd60201b60201c565b50565b60008151905060006a636f6e736f6c652e6c6f679050602083016000808483855afa5050505050565b600061013182610181565b61013b818561018c565b935061014b81856020860161019d565b610154816101d0565b840191505092915050565b600060208201905081810360008301526101798184610126565b905092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156101bb5780820151818401526020810190506101a0565b838111156101ca576000848401525b50505050565b6000601f19601f8301169050919050565b6101bc806101f06000396000f3fe6080604052600080fd5b61009f8160405160240161001d9190610104565b6040516020818303038152906040527f41304fac000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506100a2565b50565b60008151905060006a636f6e736f6c652e6c6f679050602083016000808483855afa5050505050565b60006100d682610126565b6100e08185610131565b93506100f0818560208601610142565b6100f981610175565b840191505092915050565b6000602082019050818103600083015261011e81846100cb565b905092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610160578082015181840152602081019050610145565b8381111561016f576000848401525b50505050565b6000601f19601f830116905091905056fea2646970667358221220325eab903412c8473722231b3bc907d0df8e3cb8feba060b5da2f1776cc5b11264736f6c63430008040033", + "isCreate": true, + "v": "0x1", + "r": "0x91d9b7b064a40bdeaa60a5fe3a802dea9e30cbe289cc311fd1a81f885d41607b", + "s": "0x3804733b92e345f886c5b86a7009908ccf15f4c48c1cf2fd1c3ea0d1040d89a7" + }, + { + "type": 2, + "nonce": 241, + "txHash": "0x045441df35ac03dbd8c57e82d05d3960fdbfe2775133eca0f1edb5c1c39eafac", + "gas": 3021464, + "gasPrice": "0xf1", + "from": "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "to": "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "chainId": "0xcf55", + "value": "0x0", + "data": "0xed231420000000000000000000000000000000000000000000000000000000000000000a", + "isCreate": false, + "v": "0x0", + "r": "0x903aa2a381064cc5fc389fa445d27b83fdd736663c11d054d70abb10f8d47be5", + "s": "0x619421eea52b09d2c2ea68f975caa9c9704e41650443bdc2744858a00ca93b69" + }, + { + "type": 2, + "nonce": 242, + "txHash": "0x54fe5ea4647ccbe07d542adbc34aa760cd189d2453af2e4ceb14f6363265cc82", + "gas": 3021464, + "gasPrice": "0xf1", + "from": "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "to": "0xffffffff00000000000000000000000000000000", + "chainId": "0xcf55", + "value": "0x0", + "data": "0xed231420000000000000000000000000000000000000000000000000000000000000000a", + "isCreate": false, + "v": "0x1", + "r": "0xd991befa66fa0132d446e8946b15cf26ad89ca57f22110f6bbb08c8bad7dbd6f", + "s": "0x21778f7b7c9266ca98afbad341458695525c887b9a51649b9eb2405b78d49bc4" + } + ] + }, + "storageTrace": { + "rootBefore": "0x0eca32cb58c13a8ff4f327cfa1d55cb726c9e1b993ea80dc973d0f8e75b178ba", + "rootAfter": "0x1e93f5694178e85738ce08284d1fdd6b867f46f69a3bd87899791104449af8ce", + "proofs": { + "0x000000000000000000636F6e736F6c652e6c6f67": [ + "0x001f8d5d42a0d7c6e62fc4d0fc963bb94e650ea838cf949bd8b0fc041ef4a58cf81fc8f1e835f9e77c24589195302c4fae80288aadf73a2302899c118e5f1649c9", + "0x001663fe64e6b92027ec16151726659f5bbba1d178fbf000285c28613a21c78b711fb2f78dc4edceeae0424b59310236ab12781d2c54169acd4c6da921be5d1107", + "0x001d3dcc7cb85d1cd5b47ab7adc81ac8604d93c0025d363bb5f924640d9727d5ec0f690105b729c07324ca79276fd4e04cdc24d7b6c0958a1b4f4414cbba1fbbd0", + "0x002ce2ab02b571c39f8ec2b2f70d7549f95c54e888da6403c8e922fa6ad6ed296a22de217a821ca10394e3c0f7a99762e37d87f50e2a61f48a154a26a4c4c7c5e7", + "0x000ef81a6c68d20d9d29dd6322d851e57c54c031ac00ee05e60c2f21424d4924f6033e49fafe2f809c42b482a03ea4dc7dfb5364569e48df266ca027969d49181c", + "0x00000000000000000000000000000000000000000000000000000000000000000021e50746a79672bce41e388dba54bdb4839365f321b977543d1f62f6d51b4f94", + "0x02", + "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" + ], + "0x4cb1aB63aF5D8931Ce09673EbD8ae2ce16fD6571": [ + "0x001f8d5d42a0d7c6e62fc4d0fc963bb94e650ea838cf949bd8b0fc041ef4a58cf81fc8f1e835f9e77c24589195302c4fae80288aadf73a2302899c118e5f1649c9", + "0x001663fe64e6b92027ec16151726659f5bbba1d178fbf000285c28613a21c78b711fb2f78dc4edceeae0424b59310236ab12781d2c54169acd4c6da921be5d1107", + "0x001d3dcc7cb85d1cd5b47ab7adc81ac8604d93c0025d363bb5f924640d9727d5ec0f690105b729c07324ca79276fd4e04cdc24d7b6c0958a1b4f4414cbba1fbbd0", + "0x002ce2ab02b571c39f8ec2b2f70d7549f95c54e888da6403c8e922fa6ad6ed296a22de217a821ca10394e3c0f7a99762e37d87f50e2a61f48a154a26a4c4c7c5e7", + "0x000ef81a6c68d20d9d29dd6322d851e57c54c031ac00ee05e60c2f21424d4924f6033e49fafe2f809c42b482a03ea4dc7dfb5364569e48df266ca027969d49181c", + "0x001db4319f6b754b52f844f8f02e8e954e8075d04ab8521e8e83fb0ccfc01cbe6a04bff2169a6a1c4792896e52f55f99ec1819ca9938605a8cb47b1096faf75934", + "0x00240595687c8fa1172547dcc9450ef9f30519743088365ea537ff0a5a0263eef80f9c3d544a66df7a189991606e126a0b7dd4c5b443d1d52b66d4cce4200affe2", + "0x0027f6b3373eec843fce0ce146c1160fca72cd7cefa25b93ce4549342268f4dffb2fe8b70043185278f8f6c75d7057d75ebc62e82052f480dfc207de3b0e89700e", + "0x0129bdbea092f4f7e6de593fd1a16ddb50b1c2a6297d4ae141a60f8da631e481750404000000000000000000000000000000000000000000000000000000000000000000f00056bc75e2d630ffffffffffffffffffffffffffffffffffff3346737fe00244c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470000000000000000000000000000000000000000000000000000000000000000000", + "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" + ], + "0x7deCCafb9354D46b2f8629588E688C75C7bcbf63": [ + "0x001f8d5d42a0d7c6e62fc4d0fc963bb94e650ea838cf949bd8b0fc041ef4a58cf81fc8f1e835f9e77c24589195302c4fae80288aadf73a2302899c118e5f1649c9", + "0x001c83a698cad42234e960b79a43d66583319a7f8cf6a892cbb3b1af315d5cf1402b42961b4531b48a39e50771bff69e37850a57fb7d62604208a6a17f5c045069", + "0x000ad759d56e4ffc2b28047297c4d249ae2a33172c14893658975046661b8c57620e2bd6d8d0a5eb004e7512647df4a4e2cb4a6e5c7afb8fc88341db572dc4fca8", + "0x001be854efd466d8f6fb2ad9da76a92003cab8b581330e2e7b4f942feb5504d9cc00eecfd3d862d894dd2aa7012cc00b017c5b016808448dbf8a7c7e54a9518cc0", + "0x000f19703d160ae56a97c2d17d18c594f20926065a91ed3e05092cc2cffa82b8b100f00cf67fa7857f1a9064700beb0f22f02f4d937f162c193d45cfb2d3169975", + "0x00280ca2cdd5f3b185ddb1cedb46caeb85ea7810ad1d7b0b4bf652a0357ec977a5026a809c1ea8c388f93b998ce4f9172b4d16019f23084f1973698ac383915c5c", + "0x00000000000000000000000000000000000000000000000000000000000000000003fddae55eb4c52385a413407d93c8b9791da7376a4469848576d724774759f5", + "0x02", + "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" + ], + "0xED491d2c35f615CF1591bB6322486f1EFcC9F6B5": [ + "0x001f8d5d42a0d7c6e62fc4d0fc963bb94e650ea838cf949bd8b0fc041ef4a58cf81fc8f1e835f9e77c24589195302c4fae80288aadf73a2302899c118e5f1649c9", + "0x001663fe64e6b92027ec16151726659f5bbba1d178fbf000285c28613a21c78b711fb2f78dc4edceeae0424b59310236ab12781d2c54169acd4c6da921be5d1107", + "0x001d3dcc7cb85d1cd5b47ab7adc81ac8604d93c0025d363bb5f924640d9727d5ec0f690105b729c07324ca79276fd4e04cdc24d7b6c0958a1b4f4414cbba1fbbd0", + "0x00180f3161b63243d98543a035b0b05d516542f8e5c998e91847a8fc5a03236db81f6042ebb8accbafb4a84e0623e6a11de98f9c685587345c8a9a3ea0d8753263", + "0x00012d4ee8f7f3ab4f7749da5b89493e061b7867c513eb01e6bda5e3be3714046a2ae5f2690a2a068846a918c9f315d5fb7545ef202c80b91839792fdf1db962e7", + "0x00000000000000000000000000000000000000000000000000000000000000000021a13825df3a2e44d116b730a9f9fae9d1009b0d93775c959008c0ff39a6baf1", + "0x00145b2a9022fb338f5ca771385004ae0dd96e58dd66da195e2002f6339b220b810000000000000000000000000000000000000000000000000000000000000000", + "0x00000000000000000000000000000000000000000000000000000000000000000021ecb6ec05411b84bfb132448a057521a4e5d78386cd6e3e6ae18ee82d408705", + "0x00000000000000000000000000000000000000000000000000000000000000000022a65ff4975f65726dd7610e5952dcb0cdb90e3362d06026713d9af3b0e443ce", + "0x0005aa97d091fa51170d4af9a7e10e089bb2d247491a795cfd494ddbfa4a4ae97a25c7887bd154235bc95dd2c100ad2c6ef2bff09d124942faa084e6436241a513", + "0x01176926261560230603f6c6ab7ddcf6878f0150ad2f6c5d55ca3afb99711123b904040000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000005a58c210f99d8c05214f392685ce9711a7538fb5ed7bcd81fba60e035e56f1631178fcc81e2780c1e73e34fa1e93d9d4ed7f7e4f04c48ef0862e72fb9d9041ec00", + "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" + ], + "0xffFFfFFf00000000000000000000000000000000": [ + "0x001f8d5d42a0d7c6e62fc4d0fc963bb94e650ea838cf949bd8b0fc041ef4a58cf81fc8f1e835f9e77c24589195302c4fae80288aadf73a2302899c118e5f1649c9", + "0x001c83a698cad42234e960b79a43d66583319a7f8cf6a892cbb3b1af315d5cf1402b42961b4531b48a39e50771bff69e37850a57fb7d62604208a6a17f5c045069", + "0x002f240ffd8c29fabbde0617c18971d4e304269c804eb41aa5daf0a13409971dc30b3a7916c7d0d5ae5c206f612a9fb49cee928bd1013640b439e7e6f9d85f0055", + "0x001c84ee8fa063db3739f8fe9ab01daeab4e835e86cbedb92d7dacc802f75666dd0a8cdcbf52bf9227374c874d7861e9e6e4eaee78014d79feb4264795af4d6d22", + "0x0028609b0245b9dcf8bb601d69a49a52dd60c30f06b4d9e308800ed96896663bd31a494075c554a3b57866982cb24e5983a5703edf99f33eba1bfbcb578e00c429", + "0x00194f6b9316b90e6d012f4c0957aaf9e288c6a7553bef6077d2c4662bcc5f155605ce58573cc1643f110173568ead05852da851cdf3f3eb60b2b9f7989b7d803f", + "0x011079e9ec711722b15bdac9a6dc25cc507fa43a173a29cdc67a1ff616ead867c604040000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000009b5ea0519f6e20c36338989b6accc7cf3384eac2f0a083e82730bca1775444092123cf0921e58e3a53d79d438adbc9cb408dce5eb3290c4b6834a73bd465bff000", + "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" + ] + }, + "storageProofs": { + "0xED491d2c35f615CF1591bB6322486f1EFcC9F6B5": { + "0x0000000000000000000000000000000000000000000000000000000000000000": [ + "0x012098f5fb9e239eab3ceac3f27b81e481dc3124d55ffed523a839ee8446b64864010100000000000000000000000000007db8ae361a8746cb1346d3390b00d7122e3286e400", + "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" + ] + } + } + }, + "executionResults": [ + { + "gas": 158877, + "failed": false, + "returnValue": "6080604052600080fd5b61009f8160405160240161001d9190610104565b6040516020818303038152906040527f41304fac000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506100a2565b50565b60008151905060006a636f6e736f6c652e6c6f679050602083016000808483855afa5050505050565b60006100d682610126565b6100e08185610131565b93506100f0818560208601610142565b6100f981610175565b840191505092915050565b6000602082019050818103600083015261011e81846100cb565b905092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610160578082015181840152602081019050610145565b8381111561016f576000848401525b50505050565b6000601f19601f830116905091905056fea2646970667358221220325eab903412c8473722231b3bc907d0df8e3cb8feba060b5da2f1776cc5b11264736f6c63430008040033", + "from": { + "address": "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "nonce": 240, + "balance": "0x56bc75e2d630ffffffffffffffffffffffffffffffffffff3346737fe00244", + "codeHash": "0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470" + }, + "accountCreated": { + "address": "0x7deccafb9354d46b2f8629588e688c75c7bcbf63", + "nonce": 1, + "balance": "0x0", + "codeHash": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "accountAfter": [ + { + "address": "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "nonce": 241, + "balance": "0x56bc75e2d630ffffffffffffffffffffffffffffffffffff3346737e10f921", + "codeHash": "0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470" + }, + { + "address": "0x7deccafb9354d46b2f8629588e688c75c7bcbf63", + "nonce": 1, + "balance": "0x0", + "codeHash": "0xc6f52282b77f5cd26cc7869f246a73aef152a7698e8b4d63e528d5617006f094" + } + ], + "byteCode": "0x608060405234801561001057600080fd5b506100596040518060400160405280600481526020017f746573740000000000000000000000000000000000000000000000000000000081525061005e60201b6100091760201c565b6101e1565b6100fa81604051602401610072919061015f565b6040516020818303038152906040527f41304fac000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506100fd60201b60201c565b50565b60008151905060006a636f6e736f6c652e6c6f679050602083016000808483855afa5050505050565b600061013182610181565b61013b818561018c565b935061014b81856020860161019d565b610154816101d0565b840191505092915050565b600060208201905081810360008301526101798184610126565b905092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156101bb5780820151818401526020810190506101a0565b838111156101ca576000848401525b50505050565b6000601f19601f8301169050919050565b6101bc806101f06000396000f3fe6080604052600080fd5b61009f8160405160240161001d9190610104565b6040516020818303038152906040527f41304fac000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506100a2565b50565b60008151905060006a636f6e736f6c652e6c6f679050602083016000808483855afa5050505050565b60006100d682610126565b6100e08185610131565b93506100f0818560208601610142565b6100f981610175565b840191505092915050565b6000602082019050818103600083015261011e81846100cb565b905092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610160578082015181840152602081019050610145565b8381111561016f576000848401525b50505050565b6000601f19601f830116905091905056fea2646970667358221220325eab903412c8473722231b3bc907d0df8e3cb8feba060b5da2f1776cc5b11264736f6c63430008040033", + "structLogs": [ + { + "pc": 0, + "op": "PUSH1", + "gas": 92361, + "gasCost": 3, + "depth": 1 + }, + { + "pc": 2, + "op": "PUSH1", + "gas": 92358, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80" + ] + }, + { + "pc": 4, + "op": "MSTORE", + "gas": 92355, + "gasCost": 12, + "depth": 1, + "stack": [ + "0x80", + "0x40" + ] + }, + { + "pc": 5, + "op": "CALLVALUE", + "gas": 92343, + "gasCost": 2, + "depth": 1 + }, + { + "pc": 6, + "op": "DUP1", + "gas": 92341, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 7, + "op": "ISZERO", + "gas": 92338, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0", + "0x0" + ] + }, + { + "pc": 8, + "op": "PUSH2", + "gas": 92335, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0", + "0x1" + ] + }, + { + "pc": 11, + "op": "JUMPI", + "gas": 92332, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x0", + "0x1", + "0x10" + ] + }, + { + "pc": 16, + "op": "JUMPDEST", + "gas": 92322, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 17, + "op": "POP", + "gas": 92321, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 18, + "op": "PUSH2", + "gas": 92319, + "gasCost": 3, + "depth": 1 + }, + { + "pc": 21, + "op": "PUSH1", + "gas": 92316, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59" + ] + }, + { + "pc": 23, + "op": "MLOAD", + "gas": 92313, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x40" + ] + }, + { + "pc": 24, + "op": "DUP1", + "gas": 92310, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80" + ] + }, + { + "pc": 25, + "op": "PUSH1", + "gas": 92307, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0x80" + ] + }, + { + "pc": 27, + "op": "ADD", + "gas": 92304, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0x80", + "0x40" + ] + }, + { + "pc": 28, + "op": "PUSH1", + "gas": 92301, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xc0" + ] + }, + { + "pc": 30, + "op": "MSTORE", + "gas": 92298, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xc0", + "0x40" + ] + }, + { + "pc": 31, + "op": "DUP1", + "gas": 92295, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80" + ] + }, + { + "pc": 32, + "op": "PUSH1", + "gas": 92292, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0x80" + ] + }, + { + "pc": 34, + "op": "DUP2", + "gas": 92289, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0x80", + "0x4" + ] + }, + { + "pc": 35, + "op": "MSTORE", + "gas": 92286, + "gasCost": 9, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0x80", + "0x4", + "0x80" + ] + }, + { + "pc": 36, + "op": "PUSH1", + "gas": 92277, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0x80" + ] + }, + { + "pc": 38, + "op": "ADD", + "gas": 92274, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0x80", + "0x20" + ] + }, + { + "pc": 39, + "op": "PUSH32", + "gas": 92271, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xa0" + ] + }, + { + "pc": 72, + "op": "DUP2", + "gas": 92268, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xa0", + "0x7465737400000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 73, + "op": "MSTORE", + "gas": 92265, + "gasCost": 6, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xa0", + "0x7465737400000000000000000000000000000000000000000000000000000000", + "0xa0" + ] + }, + { + "pc": 74, + "op": "POP", + "gas": 92259, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xa0" + ] + }, + { + "pc": 75, + "op": "PUSH2", + "gas": 92257, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80" + ] + }, + { + "pc": 78, + "op": "PUSH1", + "gas": 92254, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0x5e" + ] + }, + { + "pc": 80, + "op": "SHL", + "gas": 92251, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0x5e", + "0x20" + ] + }, + { + "pc": 81, + "op": "PUSH2", + "gas": 92248, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0x5e00000000" + ] + }, + { + "pc": 84, + "op": "OR", + "gas": 92245, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0x5e00000000", + "0x9" + ] + }, + { + "pc": 85, + "op": "PUSH1", + "gas": 92242, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0x5e00000009" + ] + }, + { + "pc": 87, + "op": "SHR", + "gas": 92239, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0x5e00000009", + "0x20" + ] + }, + { + "pc": 88, + "op": "JUMP", + "gas": 92236, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0x5e" + ] + }, + { + "pc": 94, + "op": "JUMPDEST", + "gas": 92228, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x59", + "0x80" + ] + }, + { + "pc": 95, + "op": "PUSH2", + "gas": 92227, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80" + ] + }, + { + "pc": 98, + "op": "DUP2", + "gas": 92224, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa" + ] + }, + { + "pc": 99, + "op": "PUSH1", + "gas": 92221, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x80" + ] + }, + { + "pc": 101, + "op": "MLOAD", + "gas": 92218, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x80", + "0x40" + ] + }, + { + "pc": 102, + "op": "PUSH1", + "gas": 92215, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x80", + "0xc0" + ] + }, + { + "pc": 104, + "op": "ADD", + "gas": 92212, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x80", + "0xc0", + "0x24" + ] + }, + { + "pc": 105, + "op": "PUSH2", + "gas": 92209, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x80", + "0xe4" + ] + }, + { + "pc": 108, + "op": "SWAP2", + "gas": 92206, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x80", + "0xe4", + "0x72" + ] + }, + { + "pc": 109, + "op": "SWAP1", + "gas": 92203, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0xe4", + "0x80" + ] + }, + { + "pc": 110, + "op": "PUSH2", + "gas": 92200, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4" + ] + }, + { + "pc": 113, + "op": "JUMP", + "gas": 92197, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x15f" + ] + }, + { + "pc": 351, + "op": "JUMPDEST", + "gas": 92189, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4" + ] + }, + { + "pc": 352, + "op": "PUSH1", + "gas": 92188, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4" + ] + }, + { + "pc": 354, + "op": "PUSH1", + "gas": 92185, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x0" + ] + }, + { + "pc": 356, + "op": "DUP3", + "gas": 92182, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x0", + "0x20" + ] + }, + { + "pc": 357, + "op": "ADD", + "gas": 92179, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x0", + "0x20", + "0xe4" + ] + }, + { + "pc": 358, + "op": "SWAP1", + "gas": 92176, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x0", + "0x104" + ] + }, + { + "pc": 359, + "op": "POP", + "gas": 92173, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x0" + ] + }, + { + "pc": 360, + "op": "DUP2", + "gas": 92171, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104" + ] + }, + { + "pc": 361, + "op": "DUP2", + "gas": 92168, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0xe4" + ] + }, + { + "pc": 362, + "op": "SUB", + "gas": 92165, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0xe4", + "0x104" + ] + }, + { + "pc": 363, + "op": "PUSH1", + "gas": 92162, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x20" + ] + }, + { + "pc": 365, + "op": "DUP4", + "gas": 92159, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x20", + "0x0" + ] + }, + { + "pc": 366, + "op": "ADD", + "gas": 92156, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x20", + "0x0", + "0xe4" + ] + }, + { + "pc": 367, + "op": "MSTORE", + "gas": 92153, + "gasCost": 12, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x20", + "0xe4" + ] + }, + { + "pc": 368, + "op": "PUSH2", + "gas": 92141, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104" + ] + }, + { + "pc": 371, + "op": "DUP2", + "gas": 92138, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x179" + ] + }, + { + "pc": 372, + "op": "DUP5", + "gas": 92135, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x179", + "0x104" + ] + }, + { + "pc": 373, + "op": "PUSH2", + "gas": 92132, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x179", + "0x104", + "0x80" + ] + }, + { + "pc": 376, + "op": "JUMP", + "gas": 92129, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x179", + "0x104", + "0x80", + "0x126" + ] + }, + { + "pc": 294, + "op": "JUMPDEST", + "gas": 92121, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x179", + "0x104", + "0x80" + ] + }, + { + "pc": 295, + "op": "PUSH1", + "gas": 92120, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x179", + "0x104", + "0x80" + ] + }, + { + "pc": 297, + "op": "PUSH2", + "gas": 92117, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x179", + "0x104", + "0x80", + "0x0" + ] + }, + { + "pc": 300, + "op": "DUP3", + "gas": 92114, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x179", + "0x104", + "0x80", + "0x0", + "0x131" + ] + }, + { + "pc": 301, + "op": "PUSH2", + "gas": 92111, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x179", + "0x104", + "0x80", + "0x0", + "0x131", + "0x80" + ] + }, + { + "pc": 304, + "op": "JUMP", + "gas": 92108, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x179", + "0x104", + "0x80", + "0x0", + "0x131", + "0x80", + "0x181" + ] + }, + { + "pc": 385, + "op": "JUMPDEST", + "gas": 92100, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x179", + "0x104", + "0x80", + "0x0", + "0x131", + "0x80" + ] + }, + { + "pc": 386, + "op": "PUSH1", + "gas": 92099, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x179", + "0x104", + "0x80", + "0x0", + "0x131", + "0x80" + ] + }, + { + "pc": 388, + "op": "DUP2", + "gas": 92096, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x179", + "0x104", + "0x80", + "0x0", + "0x131", + "0x80", + "0x0" + ] + }, + { + "pc": 389, + "op": "MLOAD", + "gas": 92093, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x179", + "0x104", + "0x80", + "0x0", + "0x131", + "0x80", + "0x0", + "0x80" + ] + }, + { + "pc": 390, + "op": "SWAP1", + "gas": 92090, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x179", + "0x104", + "0x80", + "0x0", + "0x131", + "0x80", + "0x0", + "0x4" + ] + }, + { + "pc": 391, + "op": "POP", + "gas": 92087, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x179", + "0x104", + "0x80", + "0x0", + "0x131", + "0x80", + "0x4", + "0x0" + ] + }, + { + "pc": 392, + "op": "SWAP2", + "gas": 92085, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x179", + "0x104", + "0x80", + "0x0", + "0x131", + "0x80", + "0x4" + ] + }, + { + "pc": 393, + "op": "SWAP1", + "gas": 92082, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x179", + "0x104", + "0x80", + "0x0", + "0x4", + "0x80", + "0x131" + ] + }, + { + "pc": 394, + "op": "POP", + "gas": 92079, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x179", + "0x104", + "0x80", + "0x0", + "0x4", + "0x131", + "0x80" + ] + }, + { + "pc": 395, + "op": "JUMP", + "gas": 92077, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x179", + "0x104", + "0x80", + "0x0", + "0x4", + "0x131" + ] + }, + { + "pc": 305, + "op": "JUMPDEST", + "gas": 92069, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x179", + "0x104", + "0x80", + "0x0", + "0x4" + ] + }, + { + "pc": 306, + "op": "PUSH2", + "gas": 92068, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x179", + "0x104", + "0x80", + "0x0", + "0x4" + ] + }, + { + "pc": 309, + "op": "DUP2", + "gas": 92065, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x179", + "0x104", + "0x80", + "0x0", + "0x4", + "0x13b" + ] + }, + { + "pc": 310, + "op": "DUP6", + "gas": 92062, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x179", + "0x104", + "0x80", + "0x0", + "0x4", + "0x13b", + "0x4" + ] + }, + { + "pc": 311, + "op": "PUSH2", + "gas": 92059, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x179", + "0x104", + "0x80", + "0x0", + "0x4", + "0x13b", + "0x4", + "0x104" + ] + }, + { + "pc": 314, + "op": "JUMP", + "gas": 92056, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x179", + "0x104", + "0x80", + "0x0", + "0x4", + "0x13b", + "0x4", + "0x104", + "0x18c" + ] + }, + { + "pc": 396, + "op": "JUMPDEST", + "gas": 92048, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x179", + "0x104", + "0x80", + "0x0", + "0x4", + "0x13b", + "0x4", + "0x104" + ] + }, + { + "pc": 397, + "op": "PUSH1", + "gas": 92047, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x179", + "0x104", + "0x80", + "0x0", + "0x4", + "0x13b", + "0x4", + "0x104" + ] + }, + { + "pc": 399, + "op": "DUP3", + "gas": 92044, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x179", + "0x104", + "0x80", + "0x0", + "0x4", + "0x13b", + "0x4", + "0x104", + "0x0" + ] + }, + { + "pc": 400, + "op": "DUP3", + "gas": 92041, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x179", + "0x104", + "0x80", + "0x0", + "0x4", + "0x13b", + "0x4", + "0x104", + "0x0", + "0x4" + ] + }, + { + "pc": 401, + "op": "MSTORE", + "gas": 92038, + "gasCost": 6, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x179", + "0x104", + "0x80", + "0x0", + "0x4", + "0x13b", + "0x4", + "0x104", + "0x0", + "0x4", + "0x104" + ] + }, + { + "pc": 402, + "op": "PUSH1", + "gas": 92032, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x179", + "0x104", + "0x80", + "0x0", + "0x4", + "0x13b", + "0x4", + "0x104", + "0x0" + ] + }, + { + "pc": 404, + "op": "DUP3", + "gas": 92029, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x179", + "0x104", + "0x80", + "0x0", + "0x4", + "0x13b", + "0x4", + "0x104", + "0x0", + "0x20" + ] + }, + { + "pc": 405, + "op": "ADD", + "gas": 92026, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x179", + "0x104", + "0x80", + "0x0", + "0x4", + "0x13b", + "0x4", + "0x104", + "0x0", + "0x20", + "0x104" + ] + }, + { + "pc": 406, + "op": "SWAP1", + "gas": 92023, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x179", + "0x104", + "0x80", + "0x0", + "0x4", + "0x13b", + "0x4", + "0x104", + "0x0", + "0x124" + ] + }, + { + "pc": 407, + "op": "POP", + "gas": 92020, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x179", + "0x104", + "0x80", + "0x0", + "0x4", + "0x13b", + "0x4", + "0x104", + "0x124", + "0x0" + ] + }, + { + "pc": 408, + "op": "SWAP3", + "gas": 92018, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x179", + "0x104", + "0x80", + "0x0", + "0x4", + "0x13b", + "0x4", + "0x104", + "0x124" + ] + }, + { + "pc": 409, + "op": "SWAP2", + "gas": 92015, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x179", + "0x104", + "0x80", + "0x0", + "0x4", + "0x124", + "0x4", + "0x104", + "0x13b" + ] + }, + { + "pc": 410, + "op": "POP", + "gas": 92012, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x179", + "0x104", + "0x80", + "0x0", + "0x4", + "0x124", + "0x13b", + "0x104", + "0x4" + ] + }, + { + "pc": 411, + "op": "POP", + "gas": 92010, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x179", + "0x104", + "0x80", + "0x0", + "0x4", + "0x124", + "0x13b", + "0x104" + ] + }, + { + "pc": 412, + "op": "JUMP", + "gas": 92008, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x179", + "0x104", + "0x80", + "0x0", + "0x4", + "0x124", + "0x13b" + ] + }, + { + "pc": 315, + "op": "JUMPDEST", + "gas": 92000, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x179", + "0x104", + "0x80", + "0x0", + "0x4", + "0x124" + ] + }, + { + "pc": 316, + "op": "SWAP4", + "gas": 91999, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x179", + "0x104", + "0x80", + "0x0", + "0x4", + "0x124" + ] + }, + { + "pc": 317, + "op": "POP", + "gas": 91996, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x179", + "0x124", + "0x80", + "0x0", + "0x4", + "0x104" + ] + }, + { + "pc": 318, + "op": "PUSH2", + "gas": 91994, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x179", + "0x124", + "0x80", + "0x0", + "0x4" + ] + }, + { + "pc": 321, + "op": "DUP2", + "gas": 91991, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x179", + "0x124", + "0x80", + "0x0", + "0x4", + "0x14b" + ] + }, + { + "pc": 322, + "op": "DUP6", + "gas": 91988, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x179", + "0x124", + "0x80", + "0x0", + "0x4", + "0x14b", + "0x4" + ] + }, + { + "pc": 323, + "op": "PUSH1", + "gas": 91985, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x179", + "0x124", + "0x80", + "0x0", + "0x4", + "0x14b", + "0x4", + "0x124" + ] + }, + { + "pc": 325, + "op": "DUP7", + "gas": 91982, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x179", + "0x124", + "0x80", + "0x0", + "0x4", + "0x14b", + "0x4", + "0x124", + "0x20" + ] + }, + { + "pc": 326, + "op": "ADD", + "gas": 91979, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x179", + "0x124", + "0x80", + "0x0", + "0x4", + "0x14b", + "0x4", + "0x124", + "0x20", + "0x80" + ] + }, + { + "pc": 327, + "op": "PUSH2", + "gas": 91976, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x179", + "0x124", + "0x80", + "0x0", + "0x4", + "0x14b", + "0x4", + "0x124", + "0xa0" + ] + }, + { + "pc": 330, + "op": "JUMP", + "gas": 91973, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x179", + "0x124", + "0x80", + "0x0", + "0x4", + "0x14b", + "0x4", + "0x124", + "0xa0", + "0x19d" + ] + }, + { + "pc": 413, + "op": "JUMPDEST", + "gas": 91965, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x179", + "0x124", + "0x80", + "0x0", + "0x4", + "0x14b", + "0x4", + "0x124", + "0xa0" + ] + }, + { + "pc": 414, + "op": "PUSH1", + "gas": 91964, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x179", + "0x124", + "0x80", + "0x0", + "0x4", + "0x14b", + "0x4", + "0x124", + "0xa0" + ] + }, + { + "pc": 416, + "op": "JUMPDEST", + "gas": 91961, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x179", + "0x124", + "0x80", + "0x0", + "0x4", + "0x14b", + "0x4", + "0x124", + "0xa0", + "0x0" + ] + }, + { + "pc": 417, + "op": "DUP4", + "gas": 91960, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x179", + "0x124", + "0x80", + "0x0", + "0x4", + "0x14b", + "0x4", + "0x124", + "0xa0", + "0x0" + ] + }, + { + "pc": 418, + "op": "DUP2", + "gas": 91957, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x179", + "0x124", + "0x80", + "0x0", + "0x4", + "0x14b", + "0x4", + "0x124", + "0xa0", + "0x0", + "0x4" + ] + }, + { + "pc": 419, + "op": "LT", + "gas": 91954, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x179", + "0x124", + "0x80", + "0x0", + "0x4", + "0x14b", + "0x4", + "0x124", + "0xa0", + "0x0", + "0x4", + "0x0" + ] + }, + { + "pc": 420, + "op": "ISZERO", + "gas": 91951, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x179", + "0x124", + "0x80", + "0x0", + "0x4", + "0x14b", + "0x4", + "0x124", + "0xa0", + "0x0", + "0x1" + ] + }, + { + "pc": 421, + "op": "PUSH2", + "gas": 91948, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x179", + "0x124", + "0x80", + "0x0", + "0x4", + "0x14b", + "0x4", + "0x124", + "0xa0", + "0x0", + "0x0" + ] + }, + { + "pc": 424, + "op": "JUMPI", + "gas": 91945, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x179", + "0x124", + "0x80", + "0x0", + "0x4", + "0x14b", + "0x4", + "0x124", + "0xa0", + "0x0", + "0x0", + "0x1bb" + ] + }, + { + "pc": 425, + "op": "DUP1", + "gas": 91935, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x179", + "0x124", + "0x80", + "0x0", + "0x4", + "0x14b", + "0x4", + "0x124", + "0xa0", + "0x0" + ] + }, + { + "pc": 426, + "op": "DUP3", + "gas": 91932, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x179", + "0x124", + "0x80", + "0x0", + "0x4", + "0x14b", + "0x4", + "0x124", + "0xa0", + "0x0", + "0x0" + ] + }, + { + "pc": 427, + "op": "ADD", + "gas": 91929, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x179", + "0x124", + "0x80", + "0x0", + "0x4", + "0x14b", + "0x4", + "0x124", + "0xa0", + "0x0", + "0x0", + "0xa0" + ] + }, + { + "pc": 428, + "op": "MLOAD", + "gas": 91926, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x179", + "0x124", + "0x80", + "0x0", + "0x4", + "0x14b", + "0x4", + "0x124", + "0xa0", + "0x0", + "0xa0" + ] + }, + { + "pc": 429, + "op": "DUP2", + "gas": 91923, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x179", + "0x124", + "0x80", + "0x0", + "0x4", + "0x14b", + "0x4", + "0x124", + "0xa0", + "0x0", + "0x7465737400000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 430, + "op": "DUP5", + "gas": 91920, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x179", + "0x124", + "0x80", + "0x0", + "0x4", + "0x14b", + "0x4", + "0x124", + "0xa0", + "0x0", + "0x7465737400000000000000000000000000000000000000000000000000000000", + "0x0" + ] + }, + { + "pc": 431, + "op": "ADD", + "gas": 91917, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x179", + "0x124", + "0x80", + "0x0", + "0x4", + "0x14b", + "0x4", + "0x124", + "0xa0", + "0x0", + "0x7465737400000000000000000000000000000000000000000000000000000000", + "0x0", + "0x124" + ] + }, + { + "pc": 432, + "op": "MSTORE", + "gas": 91914, + "gasCost": 6, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x179", + "0x124", + "0x80", + "0x0", + "0x4", + "0x14b", + "0x4", + "0x124", + "0xa0", + "0x0", + "0x7465737400000000000000000000000000000000000000000000000000000000", + "0x124" + ] + }, + { + "pc": 433, + "op": "PUSH1", + "gas": 91908, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x179", + "0x124", + "0x80", + "0x0", + "0x4", + "0x14b", + "0x4", + "0x124", + "0xa0", + "0x0" + ] + }, + { + "pc": 435, + "op": "DUP2", + "gas": 91905, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x179", + "0x124", + "0x80", + "0x0", + "0x4", + "0x14b", + "0x4", + "0x124", + "0xa0", + "0x0", + "0x20" + ] + }, + { + "pc": 436, + "op": "ADD", + "gas": 91902, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x179", + "0x124", + "0x80", + "0x0", + "0x4", + "0x14b", + "0x4", + "0x124", + "0xa0", + "0x0", + "0x20", + "0x0" + ] + }, + { + "pc": 437, + "op": "SWAP1", + "gas": 91899, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x179", + "0x124", + "0x80", + "0x0", + "0x4", + "0x14b", + "0x4", + "0x124", + "0xa0", + "0x0", + "0x20" + ] + }, + { + "pc": 438, + "op": "POP", + "gas": 91896, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x179", + "0x124", + "0x80", + "0x0", + "0x4", + "0x14b", + "0x4", + "0x124", + "0xa0", + "0x20", + "0x0" + ] + }, + { + "pc": 439, + "op": "PUSH2", + "gas": 91894, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x179", + "0x124", + "0x80", + "0x0", + "0x4", + "0x14b", + "0x4", + "0x124", + "0xa0", + "0x20" + ] + }, + { + "pc": 442, + "op": "JUMP", + "gas": 91891, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x179", + "0x124", + "0x80", + "0x0", + "0x4", + "0x14b", + "0x4", + "0x124", + "0xa0", + "0x20", + "0x1a0" + ] + }, + { + "pc": 416, + "op": "JUMPDEST", + "gas": 91883, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x179", + "0x124", + "0x80", + "0x0", + "0x4", + "0x14b", + "0x4", + "0x124", + "0xa0", + "0x20" + ] + }, + { + "pc": 417, + "op": "DUP4", + "gas": 91882, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x179", + "0x124", + "0x80", + "0x0", + "0x4", + "0x14b", + "0x4", + "0x124", + "0xa0", + "0x20" + ] + }, + { + "pc": 418, + "op": "DUP2", + "gas": 91879, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x179", + "0x124", + "0x80", + "0x0", + "0x4", + "0x14b", + "0x4", + "0x124", + "0xa0", + "0x20", + "0x4" + ] + }, + { + "pc": 419, + "op": "LT", + "gas": 91876, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x179", + "0x124", + "0x80", + "0x0", + "0x4", + "0x14b", + "0x4", + "0x124", + "0xa0", + "0x20", + "0x4", + "0x20" + ] + }, + { + "pc": 420, + "op": "ISZERO", + "gas": 91873, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x179", + "0x124", + "0x80", + "0x0", + "0x4", + "0x14b", + "0x4", + "0x124", + "0xa0", + "0x20", + "0x0" + ] + }, + { + "pc": 421, + "op": "PUSH2", + "gas": 91870, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x179", + "0x124", + "0x80", + "0x0", + "0x4", + "0x14b", + "0x4", + "0x124", + "0xa0", + "0x20", + "0x1" + ] + }, + { + "pc": 424, + "op": "JUMPI", + "gas": 91867, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x179", + "0x124", + "0x80", + "0x0", + "0x4", + "0x14b", + "0x4", + "0x124", + "0xa0", + "0x20", + "0x1", + "0x1bb" + ] + }, + { + "pc": 443, + "op": "JUMPDEST", + "gas": 91857, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x179", + "0x124", + "0x80", + "0x0", + "0x4", + "0x14b", + "0x4", + "0x124", + "0xa0", + "0x20" + ] + }, + { + "pc": 444, + "op": "DUP4", + "gas": 91856, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x179", + "0x124", + "0x80", + "0x0", + "0x4", + "0x14b", + "0x4", + "0x124", + "0xa0", + "0x20" + ] + }, + { + "pc": 445, + "op": "DUP2", + "gas": 91853, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x179", + "0x124", + "0x80", + "0x0", + "0x4", + "0x14b", + "0x4", + "0x124", + "0xa0", + "0x20", + "0x4" + ] + }, + { + "pc": 446, + "op": "GT", + "gas": 91850, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x179", + "0x124", + "0x80", + "0x0", + "0x4", + "0x14b", + "0x4", + "0x124", + "0xa0", + "0x20", + "0x4", + "0x20" + ] + }, + { + "pc": 447, + "op": "ISZERO", + "gas": 91847, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x179", + "0x124", + "0x80", + "0x0", + "0x4", + "0x14b", + "0x4", + "0x124", + "0xa0", + "0x20", + "0x1" + ] + }, + { + "pc": 448, + "op": "PUSH2", + "gas": 91844, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x179", + "0x124", + "0x80", + "0x0", + "0x4", + "0x14b", + "0x4", + "0x124", + "0xa0", + "0x20", + "0x0" + ] + }, + { + "pc": 451, + "op": "JUMPI", + "gas": 91841, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x179", + "0x124", + "0x80", + "0x0", + "0x4", + "0x14b", + "0x4", + "0x124", + "0xa0", + "0x20", + "0x0", + "0x1ca" + ] + }, + { + "pc": 452, + "op": "PUSH1", + "gas": 91831, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x179", + "0x124", + "0x80", + "0x0", + "0x4", + "0x14b", + "0x4", + "0x124", + "0xa0", + "0x20" + ] + }, + { + "pc": 454, + "op": "DUP5", + "gas": 91828, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x179", + "0x124", + "0x80", + "0x0", + "0x4", + "0x14b", + "0x4", + "0x124", + "0xa0", + "0x20", + "0x0" + ] + }, + { + "pc": 455, + "op": "DUP5", + "gas": 91825, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x179", + "0x124", + "0x80", + "0x0", + "0x4", + "0x14b", + "0x4", + "0x124", + "0xa0", + "0x20", + "0x0", + "0x4" + ] + }, + { + "pc": 456, + "op": "ADD", + "gas": 91822, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x179", + "0x124", + "0x80", + "0x0", + "0x4", + "0x14b", + "0x4", + "0x124", + "0xa0", + "0x20", + "0x0", + "0x4", + "0x124" + ] + }, + { + "pc": 457, + "op": "MSTORE", + "gas": 91819, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x179", + "0x124", + "0x80", + "0x0", + "0x4", + "0x14b", + "0x4", + "0x124", + "0xa0", + "0x20", + "0x0", + "0x128" + ] + }, + { + "pc": 458, + "op": "JUMPDEST", + "gas": 91816, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x179", + "0x124", + "0x80", + "0x0", + "0x4", + "0x14b", + "0x4", + "0x124", + "0xa0", + "0x20" + ] + }, + { + "pc": 459, + "op": "POP", + "gas": 91815, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x179", + "0x124", + "0x80", + "0x0", + "0x4", + "0x14b", + "0x4", + "0x124", + "0xa0", + "0x20" + ] + }, + { + "pc": 460, + "op": "POP", + "gas": 91813, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x179", + "0x124", + "0x80", + "0x0", + "0x4", + "0x14b", + "0x4", + "0x124", + "0xa0" + ] + }, + { + "pc": 461, + "op": "POP", + "gas": 91811, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x179", + "0x124", + "0x80", + "0x0", + "0x4", + "0x14b", + "0x4", + "0x124" + ] + }, + { + "pc": 462, + "op": "POP", + "gas": 91809, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x179", + "0x124", + "0x80", + "0x0", + "0x4", + "0x14b", + "0x4" + ] + }, + { + "pc": 463, + "op": "JUMP", + "gas": 91807, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x179", + "0x124", + "0x80", + "0x0", + "0x4", + "0x14b" + ] + }, + { + "pc": 331, + "op": "JUMPDEST", + "gas": 91799, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x179", + "0x124", + "0x80", + "0x0", + "0x4" + ] + }, + { + "pc": 332, + "op": "PUSH2", + "gas": 91798, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x179", + "0x124", + "0x80", + "0x0", + "0x4" + ] + }, + { + "pc": 335, + "op": "DUP2", + "gas": 91795, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x179", + "0x124", + "0x80", + "0x0", + "0x4", + "0x154" + ] + }, + { + "pc": 336, + "op": "PUSH2", + "gas": 91792, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x179", + "0x124", + "0x80", + "0x0", + "0x4", + "0x154", + "0x4" + ] + }, + { + "pc": 339, + "op": "JUMP", + "gas": 91789, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x179", + "0x124", + "0x80", + "0x0", + "0x4", + "0x154", + "0x4", + "0x1d0" + ] + }, + { + "pc": 464, + "op": "JUMPDEST", + "gas": 91781, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x179", + "0x124", + "0x80", + "0x0", + "0x4", + "0x154", + "0x4" + ] + }, + { + "pc": 465, + "op": "PUSH1", + "gas": 91780, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x179", + "0x124", + "0x80", + "0x0", + "0x4", + "0x154", + "0x4" + ] + }, + { + "pc": 467, + "op": "PUSH1", + "gas": 91777, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x179", + "0x124", + "0x80", + "0x0", + "0x4", + "0x154", + "0x4", + "0x0" + ] + }, + { + "pc": 469, + "op": "NOT", + "gas": 91774, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x179", + "0x124", + "0x80", + "0x0", + "0x4", + "0x154", + "0x4", + "0x0", + "0x1f" + ] + }, + { + "pc": 470, + "op": "PUSH1", + "gas": 91771, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x179", + "0x124", + "0x80", + "0x0", + "0x4", + "0x154", + "0x4", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0" + ] + }, + { + "pc": 472, + "op": "DUP4", + "gas": 91768, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x179", + "0x124", + "0x80", + "0x0", + "0x4", + "0x154", + "0x4", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", + "0x1f" + ] + }, + { + "pc": 473, + "op": "ADD", + "gas": 91765, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x179", + "0x124", + "0x80", + "0x0", + "0x4", + "0x154", + "0x4", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", + "0x1f", + "0x4" + ] + }, + { + "pc": 474, + "op": "AND", + "gas": 91762, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x179", + "0x124", + "0x80", + "0x0", + "0x4", + "0x154", + "0x4", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", + "0x23" + ] + }, + { + "pc": 475, + "op": "SWAP1", + "gas": 91759, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x179", + "0x124", + "0x80", + "0x0", + "0x4", + "0x154", + "0x4", + "0x0", + "0x20" + ] + }, + { + "pc": 476, + "op": "POP", + "gas": 91756, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x179", + "0x124", + "0x80", + "0x0", + "0x4", + "0x154", + "0x4", + "0x20", + "0x0" + ] + }, + { + "pc": 477, + "op": "SWAP2", + "gas": 91754, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x179", + "0x124", + "0x80", + "0x0", + "0x4", + "0x154", + "0x4", + "0x20" + ] + }, + { + "pc": 478, + "op": "SWAP1", + "gas": 91751, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x179", + "0x124", + "0x80", + "0x0", + "0x4", + "0x20", + "0x4", + "0x154" + ] + }, + { + "pc": 479, + "op": "POP", + "gas": 91748, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x179", + "0x124", + "0x80", + "0x0", + "0x4", + "0x20", + "0x154", + "0x4" + ] + }, + { + "pc": 480, + "op": "JUMP", + "gas": 91746, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x179", + "0x124", + "0x80", + "0x0", + "0x4", + "0x20", + "0x154" + ] + }, + { + "pc": 340, + "op": "JUMPDEST", + "gas": 91738, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x179", + "0x124", + "0x80", + "0x0", + "0x4", + "0x20" + ] + }, + { + "pc": 341, + "op": "DUP5", + "gas": 91737, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x179", + "0x124", + "0x80", + "0x0", + "0x4", + "0x20" + ] + }, + { + "pc": 342, + "op": "ADD", + "gas": 91734, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x179", + "0x124", + "0x80", + "0x0", + "0x4", + "0x20", + "0x124" + ] + }, + { + "pc": 343, + "op": "SWAP2", + "gas": 91731, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x179", + "0x124", + "0x80", + "0x0", + "0x4", + "0x144" + ] + }, + { + "pc": 344, + "op": "POP", + "gas": 91728, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x179", + "0x124", + "0x80", + "0x144", + "0x4", + "0x0" + ] + }, + { + "pc": 345, + "op": "POP", + "gas": 91726, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x179", + "0x124", + "0x80", + "0x144", + "0x4" + ] + }, + { + "pc": 346, + "op": "SWAP3", + "gas": 91724, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x179", + "0x124", + "0x80", + "0x144" + ] + }, + { + "pc": 347, + "op": "SWAP2", + "gas": 91721, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x144", + "0x124", + "0x80", + "0x179" + ] + }, + { + "pc": 348, + "op": "POP", + "gas": 91718, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x144", + "0x179", + "0x80", + "0x124" + ] + }, + { + "pc": 349, + "op": "POP", + "gas": 91716, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x144", + "0x179", + "0x80" + ] + }, + { + "pc": 350, + "op": "JUMP", + "gas": 91714, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x144", + "0x179" + ] + }, + { + "pc": 377, + "op": "JUMPDEST", + "gas": 91706, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x144" + ] + }, + { + "pc": 378, + "op": "SWAP1", + "gas": 91705, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x104", + "0x144" + ] + }, + { + "pc": 379, + "op": "POP", + "gas": 91702, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x144", + "0x104" + ] + }, + { + "pc": 380, + "op": "SWAP3", + "gas": 91700, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x72", + "0x80", + "0xe4", + "0x144" + ] + }, + { + "pc": 381, + "op": "SWAP2", + "gas": 91697, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x144", + "0x80", + "0xe4", + "0x72" + ] + }, + { + "pc": 382, + "op": "POP", + "gas": 91694, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x144", + "0x72", + "0xe4", + "0x80" + ] + }, + { + "pc": 383, + "op": "POP", + "gas": 91692, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x144", + "0x72", + "0xe4" + ] + }, + { + "pc": 384, + "op": "JUMP", + "gas": 91690, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x144", + "0x72" + ] + }, + { + "pc": 114, + "op": "JUMPDEST", + "gas": 91682, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x144" + ] + }, + { + "pc": 115, + "op": "PUSH1", + "gas": 91681, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x144" + ] + }, + { + "pc": 117, + "op": "MLOAD", + "gas": 91678, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x144", + "0x40" + ] + }, + { + "pc": 118, + "op": "PUSH1", + "gas": 91675, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x144", + "0xc0" + ] + }, + { + "pc": 120, + "op": "DUP2", + "gas": 91672, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x144", + "0xc0", + "0x20" + ] + }, + { + "pc": 121, + "op": "DUP4", + "gas": 91669, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x144", + "0xc0", + "0x20", + "0xc0" + ] + }, + { + "pc": 122, + "op": "SUB", + "gas": 91666, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x144", + "0xc0", + "0x20", + "0xc0", + "0x144" + ] + }, + { + "pc": 123, + "op": "SUB", + "gas": 91663, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x144", + "0xc0", + "0x20", + "0x84" + ] + }, + { + "pc": 124, + "op": "DUP2", + "gas": 91660, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x144", + "0xc0", + "0x64" + ] + }, + { + "pc": 125, + "op": "MSTORE", + "gas": 91657, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x144", + "0xc0", + "0x64", + "0xc0" + ] + }, + { + "pc": 126, + "op": "SWAP1", + "gas": 91654, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0x144", + "0xc0" + ] + }, + { + "pc": 127, + "op": "PUSH1", + "gas": 91651, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0xc0", + "0x144" + ] + }, + { + "pc": 129, + "op": "MSTORE", + "gas": 91648, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0xc0", + "0x144", + "0x40" + ] + }, + { + "pc": 130, + "op": "PUSH32", + "gas": 91645, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0xc0" + ] + }, + { + "pc": 163, + "op": "PUSH28", + "gas": 91642, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0xc0", + "0x41304fac00000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 192, + "op": "NOT", + "gas": 91639, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0xc0", + "0x41304fac00000000000000000000000000000000000000000000000000000000", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 193, + "op": "AND", + "gas": 91636, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0xc0", + "0x41304fac00000000000000000000000000000000000000000000000000000000", + "0xffffffff00000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 194, + "op": "PUSH1", + "gas": 91633, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0xc0", + "0x41304fac00000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 196, + "op": "DUP3", + "gas": 91630, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0xc0", + "0x41304fac00000000000000000000000000000000000000000000000000000000", + "0x20" + ] + }, + { + "pc": 197, + "op": "ADD", + "gas": 91627, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0xc0", + "0x41304fac00000000000000000000000000000000000000000000000000000000", + "0x20", + "0xc0" + ] + }, + { + "pc": 198, + "op": "DUP1", + "gas": 91624, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0xc0", + "0x41304fac00000000000000000000000000000000000000000000000000000000", + "0xe0" + ] + }, + { + "pc": 199, + "op": "MLOAD", + "gas": 91621, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0xc0", + "0x41304fac00000000000000000000000000000000000000000000000000000000", + "0xe0", + "0xe0" + ] + }, + { + "pc": 200, + "op": "PUSH28", + "gas": 91618, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0xc0", + "0x41304fac00000000000000000000000000000000000000000000000000000000", + "0xe0", + "0x0" + ] + }, + { + "pc": 229, + "op": "DUP4", + "gas": 91615, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0xc0", + "0x41304fac00000000000000000000000000000000000000000000000000000000", + "0xe0", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 230, + "op": "DUP2", + "gas": 91612, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0xc0", + "0x41304fac00000000000000000000000000000000000000000000000000000000", + "0xe0", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x41304fac00000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 231, + "op": "DUP4", + "gas": 91609, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0xc0", + "0x41304fac00000000000000000000000000000000000000000000000000000000", + "0xe0", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x41304fac00000000000000000000000000000000000000000000000000000000", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 232, + "op": "AND", + "gas": 91606, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0xc0", + "0x41304fac00000000000000000000000000000000000000000000000000000000", + "0xe0", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x41304fac00000000000000000000000000000000000000000000000000000000", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x0" + ] + }, + { + "pc": 233, + "op": "OR", + "gas": 91603, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0xc0", + "0x41304fac00000000000000000000000000000000000000000000000000000000", + "0xe0", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x41304fac00000000000000000000000000000000000000000000000000000000", + "0x0" + ] + }, + { + "pc": 234, + "op": "DUP4", + "gas": 91600, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0xc0", + "0x41304fac00000000000000000000000000000000000000000000000000000000", + "0xe0", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x41304fac00000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 235, + "op": "MSTORE", + "gas": 91597, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0xc0", + "0x41304fac00000000000000000000000000000000000000000000000000000000", + "0xe0", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "0x41304fac00000000000000000000000000000000000000000000000000000000", + "0xe0" + ] + }, + { + "pc": 236, + "op": "POP", + "gas": 91594, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0xc0", + "0x41304fac00000000000000000000000000000000000000000000000000000000", + "0xe0", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 237, + "op": "POP", + "gas": 91592, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0xc0", + "0x41304fac00000000000000000000000000000000000000000000000000000000", + "0xe0", + "0x0" + ] + }, + { + "pc": 238, + "op": "POP", + "gas": 91590, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0xc0", + "0x41304fac00000000000000000000000000000000000000000000000000000000", + "0xe0" + ] + }, + { + "pc": 239, + "op": "POP", + "gas": 91588, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0xc0", + "0x41304fac00000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 240, + "op": "PUSH2", + "gas": 91586, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0xc0" + ] + }, + { + "pc": 243, + "op": "PUSH1", + "gas": 91583, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0xc0", + "0xfd" + ] + }, + { + "pc": 245, + "op": "SHL", + "gas": 91580, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0xc0", + "0xfd", + "0x20" + ] + }, + { + "pc": 246, + "op": "PUSH1", + "gas": 91577, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0xc0", + "0xfd00000000" + ] + }, + { + "pc": 248, + "op": "SHR", + "gas": 91574, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0xc0", + "0xfd00000000", + "0x20" + ] + }, + { + "pc": 249, + "op": "JUMP", + "gas": 91571, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0xc0", + "0xfd" + ] + }, + { + "pc": 253, + "op": "JUMPDEST", + "gas": 91563, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0xc0" + ] + }, + { + "pc": 254, + "op": "PUSH1", + "gas": 91562, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0xc0" + ] + }, + { + "pc": 256, + "op": "DUP2", + "gas": 91559, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0xc0", + "0x0" + ] + }, + { + "pc": 257, + "op": "MLOAD", + "gas": 91556, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0xc0", + "0x0", + "0xc0" + ] + }, + { + "pc": 258, + "op": "SWAP1", + "gas": 91553, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0xc0", + "0x0", + "0x64" + ] + }, + { + "pc": 259, + "op": "POP", + "gas": 91550, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0xc0", + "0x64", + "0x0" + ] + }, + { + "pc": 260, + "op": "PUSH1", + "gas": 91548, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0xc0", + "0x64" + ] + }, + { + "pc": 262, + "op": "PUSH11", + "gas": 91545, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0xc0", + "0x64", + "0x0" + ] + }, + { + "pc": 274, + "op": "SWAP1", + "gas": 91542, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0xc0", + "0x64", + "0x0", + "0x636f6e736f6c652e6c6f67" + ] + }, + { + "pc": 275, + "op": "POP", + "gas": 91539, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0xc0", + "0x64", + "0x636f6e736f6c652e6c6f67", + "0x0" + ] + }, + { + "pc": 276, + "op": "PUSH1", + "gas": 91537, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0xc0", + "0x64", + "0x636f6e736f6c652e6c6f67" + ] + }, + { + "pc": 278, + "op": "DUP4", + "gas": 91534, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0xc0", + "0x64", + "0x636f6e736f6c652e6c6f67", + "0x20" + ] + }, + { + "pc": 279, + "op": "ADD", + "gas": 91531, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0xc0", + "0x64", + "0x636f6e736f6c652e6c6f67", + "0x20", + "0xc0" + ] + }, + { + "pc": 280, + "op": "PUSH1", + "gas": 91528, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0xc0", + "0x64", + "0x636f6e736f6c652e6c6f67", + "0xe0" + ] + }, + { + "pc": 282, + "op": "DUP1", + "gas": 91525, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0xc0", + "0x64", + "0x636f6e736f6c652e6c6f67", + "0xe0", + "0x0" + ] + }, + { + "pc": 283, + "op": "DUP5", + "gas": 91522, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0xc0", + "0x64", + "0x636f6e736f6c652e6c6f67", + "0xe0", + "0x0", + "0x0" + ] + }, + { + "pc": 284, + "op": "DUP4", + "gas": 91519, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0xc0", + "0x64", + "0x636f6e736f6c652e6c6f67", + "0xe0", + "0x0", + "0x0", + "0x64" + ] + }, + { + "pc": 285, + "op": "DUP6", + "gas": 91516, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0xc0", + "0x64", + "0x636f6e736f6c652e6c6f67", + "0xe0", + "0x0", + "0x0", + "0x64", + "0xe0" + ] + }, + { + "pc": 286, + "op": "GAS", + "gas": 91513, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0xc0", + "0x64", + "0x636f6e736f6c652e6c6f67", + "0xe0", + "0x0", + "0x0", + "0x64", + "0xe0", + "0x636f6e736f6c652e6c6f67" + ] + }, + { + "pc": 287, + "op": "STATICCALL", + "gas": 91511, + "gasCost": 90122, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0xc0", + "0x64", + "0x636f6e736f6c652e6c6f67", + "0xe0", + "0x0", + "0x0", + "0x64", + "0xe0", + "0x636f6e736f6c652e6c6f67", + "0x16577" + ], + "extraData": { + "codeList": [ + "0x" + ], + "proofList": [ + { + "address": "0x000000000000000000636f6e736f6c652e6c6f67", + "nonce": 0, + "balance": "0x0", + "codeHash": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + { + "address": "0x000000000000000000636f6e736f6c652e6c6f67", + "nonce": 0, + "balance": "0x0", + "codeHash": "0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470" + } + ], + "caller": [ + { + "address": "0x7deccafb9354d46b2f8629588e688c75c7bcbf63", + "nonce": 1, + "balance": "0x0", + "codeHash": "0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470" + }, + { + "address": "0x7deccafb9354d46b2f8629588e688c75c7bcbf63", + "nonce": 1, + "balance": "0x0", + "codeHash": "0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470" + } + ] + } + }, + { + "pc": 288, + "op": "POP", + "gas": 88911, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0xc0", + "0x64", + "0x636f6e736f6c652e6c6f67", + "0xe0", + "0x1" + ] + }, + { + "pc": 289, + "op": "POP", + "gas": 88909, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0xc0", + "0x64", + "0x636f6e736f6c652e6c6f67", + "0xe0" + ] + }, + { + "pc": 290, + "op": "POP", + "gas": 88907, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0xc0", + "0x64", + "0x636f6e736f6c652e6c6f67" + ] + }, + { + "pc": 291, + "op": "POP", + "gas": 88905, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0xc0", + "0x64" + ] + }, + { + "pc": 292, + "op": "POP", + "gas": 88903, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa", + "0xc0" + ] + }, + { + "pc": 293, + "op": "JUMP", + "gas": 88901, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x59", + "0x80", + "0xfa" + ] + }, + { + "pc": 250, + "op": "JUMPDEST", + "gas": 88893, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x59", + "0x80" + ] + }, + { + "pc": 251, + "op": "POP", + "gas": 88892, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x59", + "0x80" + ] + }, + { + "pc": 252, + "op": "JUMP", + "gas": 88890, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x59" + ] + }, + { + "pc": 89, + "op": "JUMPDEST", + "gas": 88882, + "gasCost": 1, + "depth": 1 + }, + { + "pc": 90, + "op": "PUSH2", + "gas": 88881, + "gasCost": 3, + "depth": 1 + }, + { + "pc": 93, + "op": "JUMP", + "gas": 88878, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x1e1" + ] + }, + { + "pc": 481, + "op": "JUMPDEST", + "gas": 88870, + "gasCost": 1, + "depth": 1 + }, + { + "pc": 482, + "op": "PUSH2", + "gas": 88869, + "gasCost": 3, + "depth": 1 + }, + { + "pc": 485, + "op": "DUP1", + "gas": 88866, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x1bc" + ] + }, + { + "pc": 486, + "op": "PUSH2", + "gas": 88863, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x1bc", + "0x1bc" + ] + }, + { + "pc": 489, + "op": "PUSH1", + "gas": 88860, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x1bc", + "0x1bc", + "0x1f0" + ] + }, + { + "pc": 491, + "op": "CODECOPY", + "gas": 88857, + "gasCost": 54, + "depth": 1, + "stack": [ + "0x1bc", + "0x1bc", + "0x1f0", + "0x0" + ], + "extraData": { + "codeList": [ + "0x" + ] + } + }, + { + "pc": 492, + "op": "PUSH1", + "gas": 88803, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x1bc" + ] + }, + { + "pc": 494, + "op": "RETURN", + "gas": 88800, + "gasCost": 0, + "depth": 1, + "stack": [ + "0x1bc", + "0x0" + ] + } + ] + }, + { + "gas": 33525, + "failed": false, + "from": { + "address": "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "nonce": 241, + "balance": "0x56bc75e2d630ffffffffffffffffffffffffffffffffffff3346737e10f921", + "codeHash": "0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470" + }, + "to": { + "address": "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "nonce": 1, + "balance": "0x0", + "codeHash": "0x5a58c210f99d8c05214f392685ce9711a7538fb5ed7bcd81fba60e035e56f163" + }, + "accountAfter": [ + { + "address": "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "nonce": 242, + "balance": "0x56bc75e2d630ffffffffffffffffffffffffffffffffffff3346737daf4456", + "codeHash": "0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470" + }, + { + "address": "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "nonce": 1, + "balance": "0x0", + "codeHash": "0x5a58c210f99d8c05214f392685ce9711a7538fb5ed7bcd81fba60e035e56f163" + } + ], + "codeHash": "0x5a58c210f99d8c05214f392685ce9711a7538fb5ed7bcd81fba60e035e56f163", + "byteCode": "0x608060405234801561001057600080fd5b506004361061004c5760003560e01c806321848c46146100515780633e23ee431461006d578063b0f2b72a1461008b578063ed231420146100a7575b600080fd5b61006b6004803603810190610066919061038a565b6100c3565b005b61007561015b565b604051610082919061040a565b60405180910390f35b6100a560048036038101906100a0919061038a565b610184565b005b6100c160048036038101906100bc919061038a565b610219565b005b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff166321848c46836040518263ffffffff1660e01b81526004016101229190610447565b600060405180830381600087803b15801561013c57600080fd5b505af192505050801561014d575060015b61015657610157565b5b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663b0f2b72a836040518263ffffffff1660e01b81526004016101e39190610447565b600060405180830381600087803b1580156101fd57600080fd5b505af1158015610211573d6000803e3d6000fd5b505050505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663e5223f886064846040518363ffffffff1660e01b815260040161027a9190610447565b6000604051808303818588803b15801561029357600080fd5b505af1935050505080156102a5575060015b6102ae576102af565b5b5050565b610349816040516024016102c79190610425565b6040516020818303038152906040527f41304fac000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff838183161783525050505061034c565b50565b60008151905060006a636f6e736f6c652e6c6f679050602083016000808483855afa5050505050565b600081359050610384816104fe565b92915050565b60006020828403121561039c57600080fd5b60006103aa84828501610375565b91505092915050565b6103bc8161047e565b82525050565b60006103cd82610462565b6103d7818561046d565b93506103e78185602086016104ba565b6103f0816104ed565b840191505092915050565b610404816104b0565b82525050565b600060208201905061041f60008301846103b3565b92915050565b6000602082019050818103600083015261043f81846103c2565b905092915050565b600060208201905061045c60008301846103fb565b92915050565b600081519050919050565b600082825260208201905092915050565b600061048982610490565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b838110156104d85780820151818401526020810190506104bd565b838111156104e7576000848401525b50505050565b6000601f19601f8301169050919050565b610507816104b0565b811461051257600080fd5b5056fea2646970667358221220f5cc0a3497437233916ec484eed596fa82d20198cc5e4e12a1bc76d6907526b864736f6c63430008040033", + "structLogs": [ + { + "pc": 0, + "op": "PUSH1", + "gas": 3000260, + "gasCost": 3, + "depth": 1 + }, + { + "pc": 2, + "op": "PUSH1", + "gas": 3000257, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80" + ] + }, + { + "pc": 4, + "op": "MSTORE", + "gas": 3000254, + "gasCost": 12, + "depth": 1, + "stack": [ + "0x80", + "0x40" + ] + }, + { + "pc": 5, + "op": "CALLVALUE", + "gas": 3000242, + "gasCost": 2, + "depth": 1 + }, + { + "pc": 6, + "op": "DUP1", + "gas": 3000240, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 7, + "op": "ISZERO", + "gas": 3000237, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0", + "0x0" + ] + }, + { + "pc": 8, + "op": "PUSH2", + "gas": 3000234, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0", + "0x1" + ] + }, + { + "pc": 11, + "op": "JUMPI", + "gas": 3000231, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x0", + "0x1", + "0x10" + ] + }, + { + "pc": 16, + "op": "JUMPDEST", + "gas": 3000221, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 17, + "op": "POP", + "gas": 3000220, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 18, + "op": "PUSH1", + "gas": 3000218, + "gasCost": 3, + "depth": 1 + }, + { + "pc": 20, + "op": "CALLDATASIZE", + "gas": 3000215, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x4" + ] + }, + { + "pc": 21, + "op": "LT", + "gas": 3000213, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4", + "0x24" + ] + }, + { + "pc": 22, + "op": "PUSH2", + "gas": 3000210, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 25, + "op": "JUMPI", + "gas": 3000207, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x0", + "0x4c" + ] + }, + { + "pc": 26, + "op": "PUSH1", + "gas": 3000197, + "gasCost": 3, + "depth": 1 + }, + { + "pc": 28, + "op": "CALLDATALOAD", + "gas": 3000194, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 29, + "op": "PUSH1", + "gas": 3000191, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed23142000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 31, + "op": "SHR", + "gas": 3000188, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed23142000000000000000000000000000000000000000000000000000000000", + "0xe0" + ] + }, + { + "pc": 32, + "op": "DUP1", + "gas": 3000185, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420" + ] + }, + { + "pc": 33, + "op": "PUSH4", + "gas": 3000182, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0xed231420" + ] + }, + { + "pc": 38, + "op": "EQ", + "gas": 3000179, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0xed231420", + "0x21848c46" + ] + }, + { + "pc": 39, + "op": "PUSH2", + "gas": 3000176, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0x0" + ] + }, + { + "pc": 42, + "op": "JUMPI", + "gas": 3000173, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xed231420", + "0x0", + "0x51" + ] + }, + { + "pc": 43, + "op": "DUP1", + "gas": 3000163, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420" + ] + }, + { + "pc": 44, + "op": "PUSH4", + "gas": 3000160, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0xed231420" + ] + }, + { + "pc": 49, + "op": "EQ", + "gas": 3000157, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0xed231420", + "0x3e23ee43" + ] + }, + { + "pc": 50, + "op": "PUSH2", + "gas": 3000154, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0x0" + ] + }, + { + "pc": 53, + "op": "JUMPI", + "gas": 3000151, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xed231420", + "0x0", + "0x6d" + ] + }, + { + "pc": 54, + "op": "DUP1", + "gas": 3000141, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420" + ] + }, + { + "pc": 55, + "op": "PUSH4", + "gas": 3000138, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0xed231420" + ] + }, + { + "pc": 60, + "op": "EQ", + "gas": 3000135, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0xed231420", + "0xb0f2b72a" + ] + }, + { + "pc": 61, + "op": "PUSH2", + "gas": 3000132, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0x0" + ] + }, + { + "pc": 64, + "op": "JUMPI", + "gas": 3000129, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xed231420", + "0x0", + "0x8b" + ] + }, + { + "pc": 65, + "op": "DUP1", + "gas": 3000119, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420" + ] + }, + { + "pc": 66, + "op": "PUSH4", + "gas": 3000116, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0xed231420" + ] + }, + { + "pc": 71, + "op": "EQ", + "gas": 3000113, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0xed231420", + "0xed231420" + ] + }, + { + "pc": 72, + "op": "PUSH2", + "gas": 3000110, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0x1" + ] + }, + { + "pc": 75, + "op": "JUMPI", + "gas": 3000107, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xed231420", + "0x1", + "0xa7" + ] + }, + { + "pc": 167, + "op": "JUMPDEST", + "gas": 3000097, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xed231420" + ] + }, + { + "pc": 168, + "op": "PUSH2", + "gas": 3000096, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420" + ] + }, + { + "pc": 171, + "op": "PUSH1", + "gas": 3000093, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1" + ] + }, + { + "pc": 173, + "op": "DUP1", + "gas": 3000090, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0x4" + ] + }, + { + "pc": 174, + "op": "CALLDATASIZE", + "gas": 3000087, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0x4", + "0x4" + ] + }, + { + "pc": 175, + "op": "SUB", + "gas": 3000085, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0x4", + "0x4", + "0x24" + ] + }, + { + "pc": 176, + "op": "DUP2", + "gas": 3000082, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0x4", + "0x20" + ] + }, + { + "pc": 177, + "op": "ADD", + "gas": 3000079, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0x4", + "0x20", + "0x4" + ] + }, + { + "pc": 178, + "op": "SWAP1", + "gas": 3000076, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0x4", + "0x24" + ] + }, + { + "pc": 179, + "op": "PUSH2", + "gas": 3000073, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0x24", + "0x4" + ] + }, + { + "pc": 182, + "op": "SWAP2", + "gas": 3000070, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0x24", + "0x4", + "0xbc" + ] + }, + { + "pc": 183, + "op": "SWAP1", + "gas": 3000067, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xbc", + "0x4", + "0x24" + ] + }, + { + "pc": 184, + "op": "PUSH2", + "gas": 3000064, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xbc", + "0x24", + "0x4" + ] + }, + { + "pc": 187, + "op": "JUMP", + "gas": 3000061, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xbc", + "0x24", + "0x4", + "0x38a" + ] + }, + { + "pc": 906, + "op": "JUMPDEST", + "gas": 3000053, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xbc", + "0x24", + "0x4" + ] + }, + { + "pc": 907, + "op": "PUSH1", + "gas": 3000052, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xbc", + "0x24", + "0x4" + ] + }, + { + "pc": 909, + "op": "PUSH1", + "gas": 3000049, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xbc", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 911, + "op": "DUP3", + "gas": 3000046, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xbc", + "0x24", + "0x4", + "0x0", + "0x20" + ] + }, + { + "pc": 912, + "op": "DUP5", + "gas": 3000043, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xbc", + "0x24", + "0x4", + "0x0", + "0x20", + "0x4" + ] + }, + { + "pc": 913, + "op": "SUB", + "gas": 3000040, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xbc", + "0x24", + "0x4", + "0x0", + "0x20", + "0x4", + "0x24" + ] + }, + { + "pc": 914, + "op": "SLT", + "gas": 3000037, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xbc", + "0x24", + "0x4", + "0x0", + "0x20", + "0x20" + ] + }, + { + "pc": 915, + "op": "ISZERO", + "gas": 3000034, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xbc", + "0x24", + "0x4", + "0x0", + "0x0" + ] + }, + { + "pc": 916, + "op": "PUSH2", + "gas": 3000031, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xbc", + "0x24", + "0x4", + "0x0", + "0x1" + ] + }, + { + "pc": 919, + "op": "JUMPI", + "gas": 3000028, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xbc", + "0x24", + "0x4", + "0x0", + "0x1", + "0x39c" + ] + }, + { + "pc": 924, + "op": "JUMPDEST", + "gas": 3000018, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xbc", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 925, + "op": "PUSH1", + "gas": 3000017, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xbc", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 927, + "op": "PUSH2", + "gas": 3000014, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xbc", + "0x24", + "0x4", + "0x0", + "0x0" + ] + }, + { + "pc": 930, + "op": "DUP5", + "gas": 3000011, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xbc", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa" + ] + }, + { + "pc": 931, + "op": "DUP3", + "gas": 3000008, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xbc", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24" + ] + }, + { + "pc": 932, + "op": "DUP6", + "gas": 3000005, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xbc", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x0" + ] + }, + { + "pc": 933, + "op": "ADD", + "gas": 3000002, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xbc", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x0", + "0x4" + ] + }, + { + "pc": 934, + "op": "PUSH2", + "gas": 2999999, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xbc", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4" + ] + }, + { + "pc": 937, + "op": "JUMP", + "gas": 2999996, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xbc", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x375" + ] + }, + { + "pc": 885, + "op": "JUMPDEST", + "gas": 2999988, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xbc", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4" + ] + }, + { + "pc": 886, + "op": "PUSH1", + "gas": 2999987, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xbc", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4" + ] + }, + { + "pc": 888, + "op": "DUP2", + "gas": 2999984, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xbc", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 889, + "op": "CALLDATALOAD", + "gas": 2999981, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xbc", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x0", + "0x4" + ] + }, + { + "pc": 890, + "op": "SWAP1", + "gas": 2999978, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xbc", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x0", + "0xa" + ] + }, + { + "pc": 891, + "op": "POP", + "gas": 2999975, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xbc", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0xa", + "0x0" + ] + }, + { + "pc": 892, + "op": "PUSH2", + "gas": 2999973, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xbc", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0xa" + ] + }, + { + "pc": 895, + "op": "DUP2", + "gas": 2999970, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xbc", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0xa", + "0x384" + ] + }, + { + "pc": 896, + "op": "PUSH2", + "gas": 2999967, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xbc", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0xa", + "0x384", + "0xa" + ] + }, + { + "pc": 899, + "op": "JUMP", + "gas": 2999964, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xbc", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0xa", + "0x384", + "0xa", + "0x4fe" + ] + }, + { + "pc": 1278, + "op": "JUMPDEST", + "gas": 2999956, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xbc", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0xa", + "0x384", + "0xa" + ] + }, + { + "pc": 1279, + "op": "PUSH2", + "gas": 2999955, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xbc", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0xa", + "0x384", + "0xa" + ] + }, + { + "pc": 1282, + "op": "DUP2", + "gas": 2999952, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xbc", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0xa", + "0x384", + "0xa", + "0x507" + ] + }, + { + "pc": 1283, + "op": "PUSH2", + "gas": 2999949, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xbc", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0xa", + "0x384", + "0xa", + "0x507", + "0xa" + ] + }, + { + "pc": 1286, + "op": "JUMP", + "gas": 2999946, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xbc", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0xa", + "0x384", + "0xa", + "0x507", + "0xa", + "0x4b0" + ] + }, + { + "pc": 1200, + "op": "JUMPDEST", + "gas": 2999938, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xbc", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0xa", + "0x384", + "0xa", + "0x507", + "0xa" + ] + }, + { + "pc": 1201, + "op": "PUSH1", + "gas": 2999937, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xbc", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0xa", + "0x384", + "0xa", + "0x507", + "0xa" + ] + }, + { + "pc": 1203, + "op": "DUP2", + "gas": 2999934, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xbc", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0xa", + "0x384", + "0xa", + "0x507", + "0xa", + "0x0" + ] + }, + { + "pc": 1204, + "op": "SWAP1", + "gas": 2999931, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xbc", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0xa", + "0x384", + "0xa", + "0x507", + "0xa", + "0x0", + "0xa" + ] + }, + { + "pc": 1205, + "op": "POP", + "gas": 2999928, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xbc", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0xa", + "0x384", + "0xa", + "0x507", + "0xa", + "0xa", + "0x0" + ] + }, + { + "pc": 1206, + "op": "SWAP2", + "gas": 2999926, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xbc", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0xa", + "0x384", + "0xa", + "0x507", + "0xa", + "0xa" + ] + }, + { + "pc": 1207, + "op": "SWAP1", + "gas": 2999923, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xbc", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0xa", + "0x384", + "0xa", + "0xa", + "0xa", + "0x507" + ] + }, + { + "pc": 1208, + "op": "POP", + "gas": 2999920, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xbc", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0xa", + "0x384", + "0xa", + "0xa", + "0x507", + "0xa" + ] + }, + { + "pc": 1209, + "op": "JUMP", + "gas": 2999918, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xbc", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0xa", + "0x384", + "0xa", + "0xa", + "0x507" + ] + }, + { + "pc": 1287, + "op": "JUMPDEST", + "gas": 2999910, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xbc", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0xa", + "0x384", + "0xa", + "0xa" + ] + }, + { + "pc": 1288, + "op": "DUP2", + "gas": 2999909, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xbc", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0xa", + "0x384", + "0xa", + "0xa" + ] + }, + { + "pc": 1289, + "op": "EQ", + "gas": 2999906, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xbc", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0xa", + "0x384", + "0xa", + "0xa", + "0xa" + ] + }, + { + "pc": 1290, + "op": "PUSH2", + "gas": 2999903, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xbc", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0xa", + "0x384", + "0xa", + "0x1" + ] + }, + { + "pc": 1293, + "op": "JUMPI", + "gas": 2999900, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xbc", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0xa", + "0x384", + "0xa", + "0x1", + "0x512" + ] + }, + { + "pc": 1298, + "op": "JUMPDEST", + "gas": 2999890, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xbc", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0xa", + "0x384", + "0xa" + ] + }, + { + "pc": 1299, + "op": "POP", + "gas": 2999889, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xbc", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0xa", + "0x384", + "0xa" + ] + }, + { + "pc": 1300, + "op": "JUMP", + "gas": 2999887, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xbc", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0xa", + "0x384" + ] + }, + { + "pc": 900, + "op": "JUMPDEST", + "gas": 2999879, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xbc", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0xa" + ] + }, + { + "pc": 901, + "op": "SWAP3", + "gas": 2999878, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xbc", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0xa" + ] + }, + { + "pc": 902, + "op": "SWAP2", + "gas": 2999875, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xbc", + "0x24", + "0x4", + "0x0", + "0x0", + "0xa", + "0x24", + "0x4", + "0x3aa" + ] + }, + { + "pc": 903, + "op": "POP", + "gas": 2999872, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xbc", + "0x24", + "0x4", + "0x0", + "0x0", + "0xa", + "0x3aa", + "0x4", + "0x24" + ] + }, + { + "pc": 904, + "op": "POP", + "gas": 2999870, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xbc", + "0x24", + "0x4", + "0x0", + "0x0", + "0xa", + "0x3aa", + "0x4" + ] + }, + { + "pc": 905, + "op": "JUMP", + "gas": 2999868, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xbc", + "0x24", + "0x4", + "0x0", + "0x0", + "0xa", + "0x3aa" + ] + }, + { + "pc": 938, + "op": "JUMPDEST", + "gas": 2999860, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xbc", + "0x24", + "0x4", + "0x0", + "0x0", + "0xa" + ] + }, + { + "pc": 939, + "op": "SWAP2", + "gas": 2999859, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xbc", + "0x24", + "0x4", + "0x0", + "0x0", + "0xa" + ] + }, + { + "pc": 940, + "op": "POP", + "gas": 2999856, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xbc", + "0x24", + "0x4", + "0xa", + "0x0", + "0x0" + ] + }, + { + "pc": 941, + "op": "POP", + "gas": 2999854, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xbc", + "0x24", + "0x4", + "0xa", + "0x0" + ] + }, + { + "pc": 942, + "op": "SWAP3", + "gas": 2999852, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xbc", + "0x24", + "0x4", + "0xa" + ] + }, + { + "pc": 943, + "op": "SWAP2", + "gas": 2999849, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xa", + "0x24", + "0x4", + "0xbc" + ] + }, + { + "pc": 944, + "op": "POP", + "gas": 2999846, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xa", + "0xbc", + "0x4", + "0x24" + ] + }, + { + "pc": 945, + "op": "POP", + "gas": 2999844, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xa", + "0xbc", + "0x4" + ] + }, + { + "pc": 946, + "op": "JUMP", + "gas": 2999842, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xa", + "0xbc" + ] + }, + { + "pc": 188, + "op": "JUMPDEST", + "gas": 2999834, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xa" + ] + }, + { + "pc": 189, + "op": "PUSH2", + "gas": 2999833, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xa" + ] + }, + { + "pc": 192, + "op": "JUMP", + "gas": 2999830, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xa", + "0x219" + ] + }, + { + "pc": 537, + "op": "JUMPDEST", + "gas": 2999822, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xa" + ] + }, + { + "pc": 538, + "op": "PUSH1", + "gas": 2999821, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xa" + ] + }, + { + "pc": 540, + "op": "DUP1", + "gas": 2999818, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xa", + "0x0" + ] + }, + { + "pc": 541, + "op": "PUSH1", + "gas": 2999815, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xa", + "0x0", + "0x0" + ] + }, + { + "pc": 543, + "op": "SWAP1", + "gas": 2999812, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xa", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 544, + "op": "SLOAD", + "gas": 2999809, + "gasCost": 2100, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xa", + "0x0", + "0x0", + "0x0" + ], + "storage": { + "0x0000000000000000000000000000000000000000000000000000000000000000": "0x0000000000000000000000007db8ae361a8746cb1346d3390b00d7122e3286e4" + }, + "extraData": { + "proofList": [ + { + "address": "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "nonce": 1, + "balance": "0x0", + "codeHash": "0x5a58c210f99d8c05214f392685ce9711a7538fb5ed7bcd81fba60e035e56f163", + "storage": { + "key": "0x0000000000000000000000000000000000000000000000000000000000000000", + "value": "0x0000000000000000000000007db8ae361a8746cb1346d3390b00d7122e3286e4" + } + } + ] + } + }, + { + "pc": 545, + "op": "SWAP1", + "gas": 2997709, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xa", + "0x0", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4" + ] + }, + { + "pc": 546, + "op": "PUSH2", + "gas": 2997706, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xa", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x0" + ] + }, + { + "pc": 549, + "op": "EXP", + "gas": 2997703, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xa", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x0", + "0x100" + ] + }, + { + "pc": 550, + "op": "SWAP1", + "gas": 2997693, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xa", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x1" + ] + }, + { + "pc": 551, + "op": "DIV", + "gas": 2997690, + "gasCost": 5, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xa", + "0x0", + "0x1", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4" + ] + }, + { + "pc": 552, + "op": "PUSH20", + "gas": 2997685, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xa", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4" + ] + }, + { + "pc": 573, + "op": "AND", + "gas": 2997682, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xa", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 574, + "op": "SWAP1", + "gas": 2997679, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xa", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4" + ] + }, + { + "pc": 575, + "op": "POP", + "gas": 2997676, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xa", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x0" + ] + }, + { + "pc": 576, + "op": "DUP1", + "gas": 2997674, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xa", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4" + ] + }, + { + "pc": 577, + "op": "PUSH20", + "gas": 2997671, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xa", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4" + ] + }, + { + "pc": 598, + "op": "AND", + "gas": 2997668, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xa", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 599, + "op": "PUSH4", + "gas": 2997665, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xa", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4" + ] + }, + { + "pc": 604, + "op": "PUSH1", + "gas": 2997662, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xa", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xe5223f88" + ] + }, + { + "pc": 606, + "op": "DUP5", + "gas": 2997659, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xa", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xe5223f88", + "0x64" + ] + }, + { + "pc": 607, + "op": "PUSH1", + "gas": 2997656, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xa", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xe5223f88", + "0x64", + "0xa" + ] + }, + { + "pc": 609, + "op": "MLOAD", + "gas": 2997653, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xa", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xe5223f88", + "0x64", + "0xa", + "0x40" + ] + }, + { + "pc": 610, + "op": "DUP4", + "gas": 2997650, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xa", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xe5223f88", + "0x64", + "0xa", + "0x80" + ] + }, + { + "pc": 611, + "op": "PUSH4", + "gas": 2997647, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xa", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xe5223f88", + "0x64", + "0xa", + "0x80", + "0xe5223f88" + ] + }, + { + "pc": 616, + "op": "AND", + "gas": 2997644, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xa", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xe5223f88", + "0x64", + "0xa", + "0x80", + "0xe5223f88", + "0xffffffff" + ] + }, + { + "pc": 617, + "op": "PUSH1", + "gas": 2997641, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xa", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xe5223f88", + "0x64", + "0xa", + "0x80", + "0xe5223f88" + ] + }, + { + "pc": 619, + "op": "SHL", + "gas": 2997638, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xa", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xe5223f88", + "0x64", + "0xa", + "0x80", + "0xe5223f88", + "0xe0" + ] + }, + { + "pc": 620, + "op": "DUP2", + "gas": 2997635, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xa", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xe5223f88", + "0x64", + "0xa", + "0x80", + "0xe5223f8800000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 621, + "op": "MSTORE", + "gas": 2997632, + "gasCost": 9, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xa", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xe5223f88", + "0x64", + "0xa", + "0x80", + "0xe5223f8800000000000000000000000000000000000000000000000000000000", + "0x80" + ] + }, + { + "pc": 622, + "op": "PUSH1", + "gas": 2997623, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xa", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xe5223f88", + "0x64", + "0xa", + "0x80" + ] + }, + { + "pc": 624, + "op": "ADD", + "gas": 2997620, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xa", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xe5223f88", + "0x64", + "0xa", + "0x80", + "0x4" + ] + }, + { + "pc": 625, + "op": "PUSH2", + "gas": 2997617, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xa", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xe5223f88", + "0x64", + "0xa", + "0x84" + ] + }, + { + "pc": 628, + "op": "SWAP2", + "gas": 2997614, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xa", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xe5223f88", + "0x64", + "0xa", + "0x84", + "0x27a" + ] + }, + { + "pc": 629, + "op": "SWAP1", + "gas": 2997611, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xa", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xe5223f88", + "0x64", + "0x27a", + "0x84", + "0xa" + ] + }, + { + "pc": 630, + "op": "PUSH2", + "gas": 2997608, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xa", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xe5223f88", + "0x64", + "0x27a", + "0xa", + "0x84" + ] + }, + { + "pc": 633, + "op": "JUMP", + "gas": 2997605, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xa", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xe5223f88", + "0x64", + "0x27a", + "0xa", + "0x84", + "0x447" + ] + }, + { + "pc": 1095, + "op": "JUMPDEST", + "gas": 2997597, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xa", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xe5223f88", + "0x64", + "0x27a", + "0xa", + "0x84" + ] + }, + { + "pc": 1096, + "op": "PUSH1", + "gas": 2997596, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xa", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xe5223f88", + "0x64", + "0x27a", + "0xa", + "0x84" + ] + }, + { + "pc": 1098, + "op": "PUSH1", + "gas": 2997593, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xa", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xe5223f88", + "0x64", + "0x27a", + "0xa", + "0x84", + "0x0" + ] + }, + { + "pc": 1100, + "op": "DUP3", + "gas": 2997590, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xa", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xe5223f88", + "0x64", + "0x27a", + "0xa", + "0x84", + "0x0", + "0x20" + ] + }, + { + "pc": 1101, + "op": "ADD", + "gas": 2997587, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xa", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xe5223f88", + "0x64", + "0x27a", + "0xa", + "0x84", + "0x0", + "0x20", + "0x84" + ] + }, + { + "pc": 1102, + "op": "SWAP1", + "gas": 2997584, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xa", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xe5223f88", + "0x64", + "0x27a", + "0xa", + "0x84", + "0x0", + "0xa4" + ] + }, + { + "pc": 1103, + "op": "POP", + "gas": 2997581, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xa", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xe5223f88", + "0x64", + "0x27a", + "0xa", + "0x84", + "0xa4", + "0x0" + ] + }, + { + "pc": 1104, + "op": "PUSH2", + "gas": 2997579, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xa", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xe5223f88", + "0x64", + "0x27a", + "0xa", + "0x84", + "0xa4" + ] + }, + { + "pc": 1107, + "op": "PUSH1", + "gas": 2997576, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xa", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xe5223f88", + "0x64", + "0x27a", + "0xa", + "0x84", + "0xa4", + "0x45c" + ] + }, + { + "pc": 1109, + "op": "DUP4", + "gas": 2997573, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xa", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xe5223f88", + "0x64", + "0x27a", + "0xa", + "0x84", + "0xa4", + "0x45c", + "0x0" + ] + }, + { + "pc": 1110, + "op": "ADD", + "gas": 2997570, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xa", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xe5223f88", + "0x64", + "0x27a", + "0xa", + "0x84", + "0xa4", + "0x45c", + "0x0", + "0x84" + ] + }, + { + "pc": 1111, + "op": "DUP5", + "gas": 2997567, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xa", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xe5223f88", + "0x64", + "0x27a", + "0xa", + "0x84", + "0xa4", + "0x45c", + "0x84" + ] + }, + { + "pc": 1112, + "op": "PUSH2", + "gas": 2997564, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xa", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xe5223f88", + "0x64", + "0x27a", + "0xa", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0xa" + ] + }, + { + "pc": 1115, + "op": "JUMP", + "gas": 2997561, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xa", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xe5223f88", + "0x64", + "0x27a", + "0xa", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0xa", + "0x3fb" + ] + }, + { + "pc": 1019, + "op": "JUMPDEST", + "gas": 2997553, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xa", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xe5223f88", + "0x64", + "0x27a", + "0xa", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0xa" + ] + }, + { + "pc": 1020, + "op": "PUSH2", + "gas": 2997552, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xa", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xe5223f88", + "0x64", + "0x27a", + "0xa", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0xa" + ] + }, + { + "pc": 1023, + "op": "DUP2", + "gas": 2997549, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xa", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xe5223f88", + "0x64", + "0x27a", + "0xa", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0xa", + "0x404" + ] + }, + { + "pc": 1024, + "op": "PUSH2", + "gas": 2997546, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xa", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xe5223f88", + "0x64", + "0x27a", + "0xa", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0xa", + "0x404", + "0xa" + ] + }, + { + "pc": 1027, + "op": "JUMP", + "gas": 2997543, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xa", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xe5223f88", + "0x64", + "0x27a", + "0xa", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0xa", + "0x404", + "0xa", + "0x4b0" + ] + }, + { + "pc": 1200, + "op": "JUMPDEST", + "gas": 2997535, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xa", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xe5223f88", + "0x64", + "0x27a", + "0xa", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0xa", + "0x404", + "0xa" + ] + }, + { + "pc": 1201, + "op": "PUSH1", + "gas": 2997534, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xa", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xe5223f88", + "0x64", + "0x27a", + "0xa", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0xa", + "0x404", + "0xa" + ] + }, + { + "pc": 1203, + "op": "DUP2", + "gas": 2997531, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xa", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xe5223f88", + "0x64", + "0x27a", + "0xa", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0xa", + "0x404", + "0xa", + "0x0" + ] + }, + { + "pc": 1204, + "op": "SWAP1", + "gas": 2997528, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xa", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xe5223f88", + "0x64", + "0x27a", + "0xa", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0xa", + "0x404", + "0xa", + "0x0", + "0xa" + ] + }, + { + "pc": 1205, + "op": "POP", + "gas": 2997525, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xa", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xe5223f88", + "0x64", + "0x27a", + "0xa", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0xa", + "0x404", + "0xa", + "0xa", + "0x0" + ] + }, + { + "pc": 1206, + "op": "SWAP2", + "gas": 2997523, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xa", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xe5223f88", + "0x64", + "0x27a", + "0xa", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0xa", + "0x404", + "0xa", + "0xa" + ] + }, + { + "pc": 1207, + "op": "SWAP1", + "gas": 2997520, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xa", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xe5223f88", + "0x64", + "0x27a", + "0xa", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0xa", + "0xa", + "0xa", + "0x404" + ] + }, + { + "pc": 1208, + "op": "POP", + "gas": 2997517, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xa", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xe5223f88", + "0x64", + "0x27a", + "0xa", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0xa", + "0xa", + "0x404", + "0xa" + ] + }, + { + "pc": 1209, + "op": "JUMP", + "gas": 2997515, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xa", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xe5223f88", + "0x64", + "0x27a", + "0xa", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0xa", + "0xa", + "0x404" + ] + }, + { + "pc": 1028, + "op": "JUMPDEST", + "gas": 2997507, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xa", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xe5223f88", + "0x64", + "0x27a", + "0xa", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0xa", + "0xa" + ] + }, + { + "pc": 1029, + "op": "DUP3", + "gas": 2997506, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xa", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xe5223f88", + "0x64", + "0x27a", + "0xa", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0xa", + "0xa" + ] + }, + { + "pc": 1030, + "op": "MSTORE", + "gas": 2997503, + "gasCost": 6, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xa", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xe5223f88", + "0x64", + "0x27a", + "0xa", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0xa", + "0xa", + "0x84" + ] + }, + { + "pc": 1031, + "op": "POP", + "gas": 2997497, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xa", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xe5223f88", + "0x64", + "0x27a", + "0xa", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0xa" + ] + }, + { + "pc": 1032, + "op": "POP", + "gas": 2997495, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xa", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xe5223f88", + "0x64", + "0x27a", + "0xa", + "0x84", + "0xa4", + "0x45c", + "0x84" + ] + }, + { + "pc": 1033, + "op": "JUMP", + "gas": 2997493, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xa", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xe5223f88", + "0x64", + "0x27a", + "0xa", + "0x84", + "0xa4", + "0x45c" + ] + }, + { + "pc": 1116, + "op": "JUMPDEST", + "gas": 2997485, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xa", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xe5223f88", + "0x64", + "0x27a", + "0xa", + "0x84", + "0xa4" + ] + }, + { + "pc": 1117, + "op": "SWAP3", + "gas": 2997484, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xa", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xe5223f88", + "0x64", + "0x27a", + "0xa", + "0x84", + "0xa4" + ] + }, + { + "pc": 1118, + "op": "SWAP2", + "gas": 2997481, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xa", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xe5223f88", + "0x64", + "0xa4", + "0xa", + "0x84", + "0x27a" + ] + }, + { + "pc": 1119, + "op": "POP", + "gas": 2997478, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xa", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xe5223f88", + "0x64", + "0xa4", + "0x27a", + "0x84", + "0xa" + ] + }, + { + "pc": 1120, + "op": "POP", + "gas": 2997476, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xa", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xe5223f88", + "0x64", + "0xa4", + "0x27a", + "0x84" + ] + }, + { + "pc": 1121, + "op": "JUMP", + "gas": 2997474, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xa", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xe5223f88", + "0x64", + "0xa4", + "0x27a" + ] + }, + { + "pc": 634, + "op": "JUMPDEST", + "gas": 2997466, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xa", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xe5223f88", + "0x64", + "0xa4" + ] + }, + { + "pc": 635, + "op": "PUSH1", + "gas": 2997465, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xa", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xe5223f88", + "0x64", + "0xa4" + ] + }, + { + "pc": 637, + "op": "PUSH1", + "gas": 2997462, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xa", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xe5223f88", + "0x64", + "0xa4", + "0x0" + ] + }, + { + "pc": 639, + "op": "MLOAD", + "gas": 2997459, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xa", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xe5223f88", + "0x64", + "0xa4", + "0x0", + "0x40" + ] + }, + { + "pc": 640, + "op": "DUP1", + "gas": 2997456, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xa", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xe5223f88", + "0x64", + "0xa4", + "0x0", + "0x80" + ] + }, + { + "pc": 641, + "op": "DUP4", + "gas": 2997453, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xa", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xe5223f88", + "0x64", + "0xa4", + "0x0", + "0x80", + "0x80" + ] + }, + { + "pc": 642, + "op": "SUB", + "gas": 2997450, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xa", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xe5223f88", + "0x64", + "0xa4", + "0x0", + "0x80", + "0x80", + "0xa4" + ] + }, + { + "pc": 643, + "op": "DUP2", + "gas": 2997447, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xa", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xe5223f88", + "0x64", + "0xa4", + "0x0", + "0x80", + "0x24" + ] + }, + { + "pc": 644, + "op": "DUP6", + "gas": 2997444, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xa", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xe5223f88", + "0x64", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80" + ] + }, + { + "pc": 645, + "op": "DUP9", + "gas": 2997441, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xa", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xe5223f88", + "0x64", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x64" + ] + }, + { + "pc": 646, + "op": "DUP1", + "gas": 2997438, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xa", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xe5223f88", + "0x64", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x64", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4" + ] + }, + { + "pc": 647, + "op": "EXTCODESIZE", + "gas": 2997435, + "gasCost": 2600, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xa", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xe5223f88", + "0x64", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x64", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4" + ], + "extraData": { + "codeList": [ + "0x6080604052600436106100555760003560e01c806321848c461461005a5780632e64cec114610083578063b0f2b72a146100ae578063c4e96ec0146100d7578063e5223f88146100f3578063f34176731461010f575b600080fd5b34801561006657600080fd5b50610081600480360381019061007c91906101d7565b61013a565b005b34801561008f57600080fd5b5061009861014f565b6040516100a59190610252565b60405180910390f35b3480156100ba57600080fd5b506100d560048036038101906100d091906101d7565b610158565b005b6100f160048036038101906100ec91906101d7565b610162565b005b61010d600480360381019061010891906101d7565b6101a4565b005b34801561011b57600080fd5b506101246101ae565b6040516101319190610252565b60405180910390f35b80600081905550600061014c57600080fd5b50565b60008054905090565b8060008190555050565b806000819055506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161019b90610232565b60405180910390fd5b8060008190555050565b6000806101ba57600080fd5b600054905090565b6000813590506101d1816102b1565b92915050565b6000602082840312156101e957600080fd5b60006101f7848285016101c2565b91505092915050565b600061020d600c8361026d565b915061021882610288565b602082019050919050565b61022c8161027e565b82525050565b6000602082019050818103600083015261024b81610200565b9050919050565b60006020820190506102676000830184610223565b92915050565b600082825260208201905092915050565b6000819050919050565b7f64656c696265726174656c790000000000000000000000000000000000000000600082015250565b6102ba8161027e565b81146102c557600080fd5b5056fea26469706673582212206fa6988b66dece47dc22658a0058d7f113ce303b23abdbfb3e29ee300a66489464736f6c63430008040033" + ] + } + }, + { + "pc": 648, + "op": "ISZERO", + "gas": 2994835, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xa", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xe5223f88", + "0x64", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x64", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x2fe" + ] + }, + { + "pc": 649, + "op": "DUP1", + "gas": 2994832, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xa", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xe5223f88", + "0x64", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x64", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x0" + ] + }, + { + "pc": 650, + "op": "ISZERO", + "gas": 2994829, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xa", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xe5223f88", + "0x64", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x64", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x0", + "0x0" + ] + }, + { + "pc": 651, + "op": "PUSH2", + "gas": 2994826, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xa", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xe5223f88", + "0x64", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x64", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x0", + "0x1" + ] + }, + { + "pc": 654, + "op": "JUMPI", + "gas": 2994823, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xa", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xe5223f88", + "0x64", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x64", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x0", + "0x1", + "0x293" + ] + }, + { + "pc": 659, + "op": "JUMPDEST", + "gas": 2994813, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xa", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xe5223f88", + "0x64", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x64", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x0" + ] + }, + { + "pc": 660, + "op": "POP", + "gas": 2994812, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xa", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xe5223f88", + "0x64", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x64", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x0" + ] + }, + { + "pc": 661, + "op": "GAS", + "gas": 2994810, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xa", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xe5223f88", + "0x64", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x64", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4" + ] + }, + { + "pc": 662, + "op": "CALL", + "gas": 2994808, + "gasCost": 2948157, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xa", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xe5223f88", + "0x64", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x64", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x2db278" + ], + "extraData": { + "codeList": [ + "0x608060405234801561001057600080fd5b506004361061004c5760003560e01c806321848c46146100515780633e23ee431461006d578063b0f2b72a1461008b578063ed231420146100a7575b600080fd5b61006b6004803603810190610066919061038a565b6100c3565b005b61007561015b565b604051610082919061040a565b60405180910390f35b6100a560048036038101906100a0919061038a565b610184565b005b6100c160048036038101906100bc919061038a565b610219565b005b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff166321848c46836040518263ffffffff1660e01b81526004016101229190610447565b600060405180830381600087803b15801561013c57600080fd5b505af192505050801561014d575060015b61015657610157565b5b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663b0f2b72a836040518263ffffffff1660e01b81526004016101e39190610447565b600060405180830381600087803b1580156101fd57600080fd5b505af1158015610211573d6000803e3d6000fd5b505050505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663e5223f886064846040518363ffffffff1660e01b815260040161027a9190610447565b6000604051808303818588803b15801561029357600080fd5b505af1935050505080156102a5575060015b6102ae576102af565b5b5050565b610349816040516024016102c79190610425565b6040516020818303038152906040527f41304fac000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff838183161783525050505061034c565b50565b60008151905060006a636f6e736f6c652e6c6f679050602083016000808483855afa5050505050565b600081359050610384816104fe565b92915050565b60006020828403121561039c57600080fd5b60006103aa84828501610375565b91505092915050565b6103bc8161047e565b82525050565b60006103cd82610462565b6103d7818561046d565b93506103e78185602086016104ba565b6103f0816104ed565b840191505092915050565b610404816104b0565b82525050565b600060208201905061041f60008301846103b3565b92915050565b6000602082019050818103600083015261043f81846103c2565b905092915050565b600060208201905061045c60008301846103fb565b92915050565b600081519050919050565b600082825260208201905092915050565b600061048982610490565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b838110156104d85780820151818401526020810190506104bd565b838111156104e7576000848401525b50505050565b6000601f19601f8301169050919050565b610507816104b0565b811461051257600080fd5b5056fea2646970667358221220f5cc0a3497437233916ec484eed596fa82d20198cc5e4e12a1bc76d6907526b864736f6c63430008040033", + "0x6080604052600436106100555760003560e01c806321848c461461005a5780632e64cec114610083578063b0f2b72a146100ae578063c4e96ec0146100d7578063e5223f88146100f3578063f34176731461010f575b600080fd5b34801561006657600080fd5b50610081600480360381019061007c91906101d7565b61013a565b005b34801561008f57600080fd5b5061009861014f565b6040516100a59190610252565b60405180910390f35b3480156100ba57600080fd5b506100d560048036038101906100d091906101d7565b610158565b005b6100f160048036038101906100ec91906101d7565b610162565b005b61010d600480360381019061010891906101d7565b6101a4565b005b34801561011b57600080fd5b506101246101ae565b6040516101319190610252565b60405180910390f35b80600081905550600061014c57600080fd5b50565b60008054905090565b8060008190555050565b806000819055506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161019b90610232565b60405180910390fd5b8060008190555050565b6000806101ba57600080fd5b600054905090565b6000813590506101d1816102b1565b92915050565b6000602082840312156101e957600080fd5b60006101f7848285016101c2565b91505092915050565b600061020d600c8361026d565b915061021882610288565b602082019050919050565b61022c8161027e565b82525050565b6000602082019050818103600083015261024b81610200565b9050919050565b60006020820190506102676000830184610223565b92915050565b600082825260208201905092915050565b6000819050919050565b7f64656c696265726174656c790000000000000000000000000000000000000000600082015250565b6102ba8161027e565b81146102c557600080fd5b5056fea26469706673582212206fa6988b66dece47dc22658a0058d7f113ce303b23abdbfb3e29ee300a66489464736f6c63430008040033" + ], + "proofList": [ + { + "address": "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "nonce": 1, + "balance": "0x0", + "codeHash": "0x5a58c210f99d8c05214f392685ce9711a7538fb5ed7bcd81fba60e035e56f163" + }, + { + "address": "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "nonce": 1, + "balance": "0x0", + "codeHash": "0x4ee2afb169bef88abed9792edc0230c2cda9c19a48639d2db199479f1176928e" + } + ], + "caller": [ + { + "address": "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "nonce": 1, + "balance": "0x0", + "codeHash": "0x5a58c210f99d8c05214f392685ce9711a7538fb5ed7bcd81fba60e035e56f163" + } + ] + } + }, + { + "pc": 663, + "op": "SWAP4", + "gas": 2988008, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xa", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xe5223f88", + "0x64", + "0xa4", + "0x0" + ] + }, + { + "pc": 664, + "op": "POP", + "gas": 2988005, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xa", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x0", + "0xe5223f88", + "0x64", + "0xa4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4" + ] + }, + { + "pc": 665, + "op": "POP", + "gas": 2988003, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xa", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x0", + "0xe5223f88", + "0x64", + "0xa4" + ] + }, + { + "pc": 666, + "op": "POP", + "gas": 2988001, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xa", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x0", + "0xe5223f88", + "0x64" + ] + }, + { + "pc": 667, + "op": "POP", + "gas": 2987999, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xa", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x0", + "0xe5223f88" + ] + }, + { + "pc": 668, + "op": "DUP1", + "gas": 2987997, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xa", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x0" + ] + }, + { + "pc": 669, + "op": "ISZERO", + "gas": 2987994, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xa", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x0", + "0x0" + ] + }, + { + "pc": 670, + "op": "PUSH2", + "gas": 2987991, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xa", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x0", + "0x1" + ] + }, + { + "pc": 673, + "op": "JUMPI", + "gas": 2987988, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xa", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x0", + "0x1", + "0x2a5" + ] + }, + { + "pc": 677, + "op": "JUMPDEST", + "gas": 2987978, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xa", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x0" + ] + }, + { + "pc": 678, + "op": "PUSH2", + "gas": 2987977, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xa", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x0" + ] + }, + { + "pc": 681, + "op": "JUMPI", + "gas": 2987974, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xa", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x0", + "0x2ae" + ] + }, + { + "pc": 682, + "op": "PUSH2", + "gas": 2987964, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xa", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4" + ] + }, + { + "pc": 685, + "op": "JUMP", + "gas": 2987961, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xa", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x2af" + ] + }, + { + "pc": 687, + "op": "JUMPDEST", + "gas": 2987953, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xa", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4" + ] + }, + { + "pc": 688, + "op": "POP", + "gas": 2987952, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xa", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4" + ] + }, + { + "pc": 689, + "op": "POP", + "gas": 2987950, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1", + "0xa" + ] + }, + { + "pc": 690, + "op": "JUMP", + "gas": 2987948, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xed231420", + "0xc1" + ] + }, + { + "pc": 193, + "op": "JUMPDEST", + "gas": 2987940, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xed231420" + ] + }, + { + "pc": 194, + "op": "STOP", + "gas": 2987939, + "gasCost": 0, + "depth": 1, + "stack": [ + "0xed231420" + ] + } + ] + }, + { + "gas": 21204, + "failed": false, + "from": { + "address": "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "nonce": 242, + "balance": "0x56bc75e2d630ffffffffffffffffffffffffffffffffffff3346737daf4456", + "codeHash": "0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470" + }, + "to": { + "address": "0xffffffff00000000000000000000000000000000", + "nonce": 0, + "balance": "0x0", + "codeHash": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "accountAfter": [ + { + "address": "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "nonce": 243, + "balance": "0x56bc75e2d630ffffffffffffffffffffffffffffffffffff3346737d71782a", + "codeHash": "0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470" + }, + { + "address": "0xffffffff00000000000000000000000000000000", + "nonce": 0, + "balance": "0x0", + "codeHash": "0x0000000000000000000000000000000000000000000000000000000000000000" + } + ], + "codeHash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "byteCode": "0x", + "structLogs": [] + } + ] +} \ No newline at end of file diff --git a/internal/utesting/blocktraces/create.json b/internal/utesting/blocktraces/create.json new file mode 100644 index 0000000000..7335afec49 --- /dev/null +++ b/internal/utesting/blocktraces/create.json @@ -0,0 +1,19075 @@ +{ + "blockTrace": { + "number": "0x96", + "hash": "0x25154f6f8e9e33f7e1e20749f0ea4b5c7396475aba2415003d0dd8274ef487c6", + "gasLimit": 7781620, + "difficulty": "0x2", + "baseFee": "0x206", + "coinbase": { + "address": "0x0000000000000000000000000000000000000000", + "nonce": 0, + "balance": "0x0", + "codeHash": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "time": 1661261241, + "transactions": [ + { + "type": 2, + "nonce": 223, + "txHash": "0xb56c2e9e1577dca0f43e7f892006654c958d43b70f905a27b0fc1a932e5eb4cb", + "gas": 3021784, + "gasPrice": "0x28f", + "from": "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "to": "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "chainId": "0xcf55", + "value": "0x0", + "data": "0xc5b0437c00000000000000000000000000000000000000000000000000000182cae2c253", + "isCreate": false, + "v": "0x1", + "r": "0x77bbe1634cd6a6c5ffb9e518ab0ae4766466a15e3185c67743cc7a16a23a4f14", + "s": "0x7f5cc58b53690a5763f5e37e5c5cbc11ff04093036d20717667e6112693a7cb8" + }, + { + "type": 2, + "nonce": 224, + "txHash": "0x10135331ddcc6fba9ea6f858b380d5c3e35d8d6e68c8fa633449fdcca37524aa", + "gas": 3021784, + "gasPrice": "0x28f", + "from": "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "to": "0xda1ad647621a1984ce21b0bab020005fe3b5f4da", + "chainId": "0xcf55", + "value": "0x0", + "data": "0x5696ec3500000000000000000000000000000000000000000000000000000182cae2c253", + "isCreate": false, + "v": "0x1", + "r": "0x396b1c6dc88aaf980705508a591d1e603043d9ee2987320230c11397f7c30500", + "s": "0x7088260873bebec005dc7ea4fdab8cd8f3fdfd4d050ad754075c2144c3a3ac04" + } + ] + }, + "storageTrace": { + "rootBefore": "0x079a038fbf78f25a2590e5a1d2fa34ce5e5f30e9a332713b43fa0e51b8770ab8", + "rootAfter": "0x1f990aed0102ea26fefdc9d984f3b8af272e28207eb94bb8b6358a798946f6bb", + "proofs": { + "0x07179993df93db69CfdeFCa8AF12FfcC24f3188c": [ + "0x00206372de1e9b006b4104d57ee366871a32eed87731d7e6bcb2b84c605784ba072a84f0cee483739d84d15ba1b0f131900a20b41bc3b52e1b11af816095d49e34", + "0x0007e14b4527ba2121b4c7b7256a6b0aa6bcedfe0b6f503cea362ea9ddd9f967b92b42961b4531b48a39e50771bff69e37850a57fb7d62604208a6a17f5c045069", + "0x00147ac10f6d84c10d215f7265ae98d378dbe705fa1028c9ebe73a4d239e48142511e03b7714e0d6a43dbbb5cd94bf3e821b34527bcfefeb1d52ba78aa33c180f0", + "0x0029b88078f0c28eaf12d13b8819221b89ce387616a5d0df46528d47d6cb14477d0620cc4f1fb663fd384e01a99d16a83aee58be87b9595c0bd8e03d6549c6b161", + "0x001f99b4886120e7485d1fa370a9c6525ee81ad03838ead64127d545a6f370e13628c056cff6dec01aeec473d3015d96b40ab5c58789dd480bdea71ae463d1f82d", + "0x0018c516361306d9b85f63f839dd1542d1952e12f869892e2c7c81ad5deb4cfa0412245f8b0685cf3d1006f53063dfc9202cd4e50f892dfa4ba5bdf614e11f86be", + "0x0102d993e114721d3bc8ab9cf48075580b21178e2897568dcb16277645536d26f804040000000000000000000000000000000000000000000000000000000000000000000b0000000000000000000000000000000000000000000000000093780524bebeacc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470000000000000000000000000000000000000000000000000000000000000000000", + "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" + ], + "0x080B18Cb659f0a532D679E660C9841E1E0991Ae1": [ + "0x00206372de1e9b006b4104d57ee366871a32eed87731d7e6bcb2b84c605784ba072a84f0cee483739d84d15ba1b0f131900a20b41bc3b52e1b11af816095d49e34", + "0x00174e396635f0b8a906f7cc100b51a0245e74d5f427559c9e69441e6da400a8bf22ee038cdac08f51b58437ec300d9dc770a48fd9641b9113421c1fbacff6138a", + "0x000a4b711b871750b87b706e60a4cce1b5cc8c32528f02905144e6d4d2a2fb14590490ae4c72f6e1775acf6c6901461dbd1a15df1a3f362ee211604e2d496e7dba", + "0x002c659c5727b02ba04ce36b8ea9e4701ef3ce84a8bd084dc87808a08c5fb3edea2d6d797a01bf7c0dd35870eeb62691e67339aff55f367fbb369b0c141d093fc5", + "0x0004831789ad2280ed08d71217b56bfb3d7fc57f19bd0adbc3c147a603f90176362e9cefb066657d33d53e88041f10cef2b94c3edc8375c0523cd8505ae24630f1", + "0x000f3f8422f90a78cc983776ffd08a12ff7fdf1ba054503edcee69289a1310770c10b8c7ed95f15ccb58a05df4daeaa34dafab5503b5e5e0460fc2e31f14d2d6f1", + "0x0000000000000000000000000000000000000000000000000000000000000000000b27a9a0ae2d31aa47ad45f6f1ecb64d6a76aa72dd79ebdaff5fc01a2d5dbabd", + "0x02", + "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" + ], + "0x467b8C999F24f61C3F5BeB287Fe2a4C95c0fCb6A": [ + "0x00206372de1e9b006b4104d57ee366871a32eed87731d7e6bcb2b84c605784ba072a84f0cee483739d84d15ba1b0f131900a20b41bc3b52e1b11af816095d49e34", + "0x0007e14b4527ba2121b4c7b7256a6b0aa6bcedfe0b6f503cea362ea9ddd9f967b92b42961b4531b48a39e50771bff69e37850a57fb7d62604208a6a17f5c045069", + "0x00147ac10f6d84c10d215f7265ae98d378dbe705fa1028c9ebe73a4d239e48142511e03b7714e0d6a43dbbb5cd94bf3e821b34527bcfefeb1d52ba78aa33c180f0", + "0x001be854efd466d8f6fb2ad9da76a92003cab8b581330e2e7b4f942feb5504d9cc1f14fba5a5dae4a7d974320ddba70bad142d300cc8166001e3f8993fddef55d8", + "0x00203c132957bc929e5cf56fe864216e440b5582447fbda3c0c215d8992ed4b0ba1ebf0c7b06867a7f29276b6679a04a2593966bf59244b0b3c860805e67cf16f3", + "0x011c9e9343aa449fec94fc11c7c3c9555d62f56796ba9bb9f402a3819b8fea1f9c04040000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000197f7ef0aab588fbcc511af4e7d236206b90e8fbe1adfc7afe76c181cc4e9f01174a74116199342928da9dc02c01cc50efd151cbdd403d9f896820cb60992f200", + "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" + ], + "0x4cb1aB63aF5D8931Ce09673EbD8ae2ce16fD6571": [ + "0x00206372de1e9b006b4104d57ee366871a32eed87731d7e6bcb2b84c605784ba072a84f0cee483739d84d15ba1b0f131900a20b41bc3b52e1b11af816095d49e34", + "0x00174e396635f0b8a906f7cc100b51a0245e74d5f427559c9e69441e6da400a8bf22ee038cdac08f51b58437ec300d9dc770a48fd9641b9113421c1fbacff6138a", + "0x00073e0a4f144235e0c633af855786c248253e46d7b7c7f6dbbfafd83f390d3d861aa806ff2c954aa869fe6a848ac72590ad10da1e68e5fbe4783e6ab94ff2b3db", + "0x0021b159129c78d2e847315ef7cee7b48fa23ddd9062defa98fa8be74d077a471422de217a821ca10394e3c0f7a99762e37d87f50e2a61f48a154a26a4c4c7c5e7", + "0x000ef81a6c68d20d9d29dd6322d851e57c54c031ac00ee05e60c2f21424d4924f62f6afcc93e210b7f5c85acb1490945135685af25ebaeb411565bec6e4b81b70d", + "0x0025aab923d9a5a2d93978c98a1f5bb1a2ed1a57702b3e81e9da4e97a44c390bc70d2c7c546fc532f443e728bc9baf3c48c49573e4c724213a5c39c6a5f90e9ffe", + "0x00240595687c8fa1172547dcc9450ef9f30519743088365ea537ff0a5a0263eef8213be0e1e5e5f6b999f07c9dccddbed71cf352f297d67020094bbc2b4dd94ce0", + "0x002d8ce2cb06703649dcac18d3c618103fbfc0408d89a0e048b0a78d5d13e8c91b2fe8b70043185278f8f6c75d7057d75ebc62e82052f480dfc207de3b0e89700e", + "0x0129bdbea092f4f7e6de593fd1a16ddb50b1c2a6297d4ae141a60f8da631e481750404000000000000000000000000000000000000000000000000000000000000000000df0056bc75e2d630ffffffffffffffffffffffffffffffffffff334673d90832bec5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470000000000000000000000000000000000000000000000000000000000000000000", + "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" + ], + "0xDA1Ad647621a1984ce21B0BaB020005fe3B5F4DA": [ + "0x00206372de1e9b006b4104d57ee366871a32eed87731d7e6bcb2b84c605784ba072a84f0cee483739d84d15ba1b0f131900a20b41bc3b52e1b11af816095d49e34", + "0x00174e396635f0b8a906f7cc100b51a0245e74d5f427559c9e69441e6da400a8bf22ee038cdac08f51b58437ec300d9dc770a48fd9641b9113421c1fbacff6138a", + "0x000a4b711b871750b87b706e60a4cce1b5cc8c32528f02905144e6d4d2a2fb14590490ae4c72f6e1775acf6c6901461dbd1a15df1a3f362ee211604e2d496e7dba", + "0x002c659c5727b02ba04ce36b8ea9e4701ef3ce84a8bd084dc87808a08c5fb3edea2d6d797a01bf7c0dd35870eeb62691e67339aff55f367fbb369b0c141d093fc5", + "0x002dfc4306867ac67ea956f8d304c70d77f410a9cde3d52b1c189d389f48bbb90915569f5493240d886f181280e937c7d05358b285afc2c6e9f5310b8dbe149387", + "0x0025e88c47733a9fd1047a8b2ade1012bff0f52e168141cdd4b7aedfee2011dbd22413161495eab27b3ece1a9942f7943855281b803366d697b325d163de111a8b", + "0x010ae130046f9d7da44010613c1c787fe02536e75b661e3a39a379b44d700a15e3040400000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000c2455a35210099bbbb95bdd1b6a9bfc4702d98ba0f971009391cd8f970e72930245c87e64f9d2b7838df1c283a5cb371310f76ac0dfa8a796e4bcf0fd602d800", + "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" + ] + }, + "storageProofs": { + "0x07179993df93db69CfdeFCa8AF12FfcC24f3188c": { + "0x0000000000000000000000000000000000000000000000000000000000000000": [ + "0x02", + "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" + ] + }, + "0x080B18Cb659f0a532D679E660C9841E1E0991Ae1": { + "0x0000000000000000000000000000000000000000000000000000000000000000": [ + "0x02", + "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" + ] + }, + "0x467b8C999F24f61C3F5BeB287Fe2a4C95c0fCb6A": { + "0x0000000000000000000000000000000000000000000000000000000000000000": [ + "0x012098f5fb9e239eab3ceac3f27b81e481dc3124d55ffed523a839ee8446b64864010100000000000000000000000000005042ffc05ee4252b598f8c7e5a765c14b0ad701900", + "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" + ] + }, + "0xDA1Ad647621a1984ce21B0BaB020005fe3B5F4DA": { + "0x0000000000000000000000000000000000000000000000000000000000000000": [ + "0x000672eed9235d3df1d92fab4f153df9f6c412e76068ea8d0708c1f4304ed8fe220000000000000000000000000000000000000000000000000000000000000000", + "0x002d9304fd0492e39585c8028e1bcd58987e5c87aa54e7633281ae4adb3d5c3c4d1cd0c76a012778688e2bdf166ed240356fd34e228286a056d5cf2806c2aae944", + "0x012098f5fb9e239eab3ceac3f27b81e481dc3124d55ffed523a839ee8446b6486401010000000000000000000000000000467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a00", + "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" + ], + "0x0000000000000000000000000000000000000000000000000000000000000001": [ + "0x000672eed9235d3df1d92fab4f153df9f6c412e76068ea8d0708c1f4304ed8fe220000000000000000000000000000000000000000000000000000000000000000", + "0x002d9304fd0492e39585c8028e1bcd58987e5c87aa54e7633281ae4adb3d5c3c4d1cd0c76a012778688e2bdf166ed240356fd34e228286a056d5cf2806c2aae944", + "0x011bd20834f5de9830c643778a2e88a3a1363c8b9ac083d36d75bf87c49953e65e01010000000000000000000000000000765868fc6dc978441a7a12fcb1c48f70f23d179200", + "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" + ] + } + } + }, + "executionResults": [ + { + "gas": 235051, + "failed": false, + "from": { + "address": "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "nonce": 223, + "balance": "0x56bc75e2d630ffffffffffffffffffffffffffffffffffff334673d90832be", + "codeHash": "0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470" + }, + "to": { + "address": "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "nonce": 10, + "balance": "0x0", + "codeHash": "0x0197f7ef0aab588fbcc511af4e7d236206b90e8fbe1adfc7afe76c181cc4e9f0" + }, + "accountAfter": [ + { + "address": "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "nonce": 11, + "balance": "0x0", + "codeHash": "0x0197f7ef0aab588fbcc511af4e7d236206b90e8fbe1adfc7afe76c181cc4e9f0" + }, + { + "address": "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "nonce": 224, + "balance": "0x56bc75e2d630ffffffffffffffffffffffffffffffffffff334673d1c657bc", + "codeHash": "0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470" + } + ], + "codeHash": "0x0197f7ef0aab588fbcc511af4e7d236206b90e8fbe1adfc7afe76c181cc4e9f0", + "byteCode": "0x608060405234801561001057600080fd5b50600436106100575760003560e01c806313ab33b11461005c57806320408cd91461008c578063314a09a8146100bc578063c5b0437c146100da578063ce0dbd67146100f6575b600080fd5b61007660048036038101906100719190610323565b610112565b604051610083919061036a565b60405180910390f35b6100a660048036038101906100a19190610323565b610155565b6040516100b3919061036a565b60405180910390f35b6100c4610197565b6040516100d1919061036a565b60405180910390f35b6100f460048036038101906100ef9190610323565b6101c0565b005b610110600480360381019061010b9190610323565b61023c565b005b600081604051610121906102f5565b61012b9190610385565b604051809103906000f0801561013e5760015b61014b5760009050610150565b809150505b919050565b6000808260405161016590610301565b61016f9190610385565b604051809103906000f08015801561018b573d6000803e3d6000fd5b50905080915050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000816040516101cf90610301565b6101d99190610385565b604051809103906000f0801580156101f5573d6000803e3d6000fd5b509050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b80604051610249906102f5565b6102539190610385565b604051809103906000f080156102665760015b6102b05760008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506102f2565b806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505b50565b60e2806103f483390190565b6103ab806104d683390190565b60008135905061031d816103dc565b92915050565b60006020828403121561033557600080fd5b60006103438482850161030e565b91505092915050565b610355816103a0565b82525050565b610364816103d2565b82525050565b600060208201905061037f600083018461034c565b92915050565b600060208201905061039a600083018461035b565b92915050565b60006103ab826103b2565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6103e5816103d2565b81146103f057600080fd5b5056fe6080604052348015600f57600080fd5b5060405160e238038060e28339818101604052810190602d91906052565b6000811415603a57600080fd5b506096565b600081519050604c816082565b92915050565b600060208284031215606357600080fd5b6000606f84828501603f565b91505092915050565b6000819050919050565b6089816078565b8114609357600080fd5b50565b603f8060a36000396000f3fe6080604052600080fdfea2646970667358221220d980928765b61eb01523442146dc4518e079360da1cc4a7f1ab97c88f137c27e64736f6c63430008040033608060405234801561001057600080fd5b506040516103ab3803806103ab83398181016040528101906100329190610054565b806000819055505061009e565b60008151905061004e81610087565b92915050565b60006020828403121561006657600080fd5b60006100748482850161003f565b91505092915050565b6000819050919050565b6100908161007d565b811461009b57600080fd5b50565b6102fe806100ad6000396000f3fe6080604052600436106100555760003560e01c806321848c461461005a5780632e64cec114610083578063b0f2b72a146100ae578063c4e96ec0146100d7578063e5223f88146100f3578063f34176731461010f575b600080fd5b34801561006657600080fd5b50610081600480360381019061007c91906101d7565b61013a565b005b34801561008f57600080fd5b5061009861014f565b6040516100a59190610252565b60405180910390f35b3480156100ba57600080fd5b506100d560048036038101906100d091906101d7565b610158565b005b6100f160048036038101906100ec91906101d7565b610162565b005b61010d600480360381019061010891906101d7565b6101a4565b005b34801561011b57600080fd5b506101246101ae565b6040516101319190610252565b60405180910390f35b80600081905550600061014c57600080fd5b50565b60008054905090565b8060008190555050565b806000819055506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161019b90610232565b60405180910390fd5b8060008190555050565b6000806101ba57600080fd5b600054905090565b6000813590506101d1816102b1565b92915050565b6000602082840312156101e957600080fd5b60006101f7848285016101c2565b91505092915050565b600061020d600c8361026d565b915061021882610288565b602082019050919050565b61022c8161027e565b82525050565b6000602082019050818103600083015261024b81610200565b9050919050565b60006020820190506102676000830184610223565b92915050565b600082825260208201905092915050565b6000819050919050565b7f64656c696265726174656c790000000000000000000000000000000000000000600082015250565b6102ba8161027e565b81146102c557600080fd5b5056fea26469706673582212206fa6988b66dece47dc22658a0058d7f113ce303b23abdbfb3e29ee300a66489464736f6c63430008040033a264697066735822122024e6552371fbd96476a2ebdebcd94517f44d186fe1b33f5e31629291591786e764736f6c63430008040033", + "structLogs": [ + { + "pc": 0, + "op": "PUSH1", + "gas": 3000520, + "gasCost": 3, + "depth": 1 + }, + { + "pc": 2, + "op": "PUSH1", + "gas": 3000517, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80" + ] + }, + { + "pc": 4, + "op": "MSTORE", + "gas": 3000514, + "gasCost": 12, + "depth": 1, + "stack": [ + "0x80", + "0x40" + ] + }, + { + "pc": 5, + "op": "CALLVALUE", + "gas": 3000502, + "gasCost": 2, + "depth": 1 + }, + { + "pc": 6, + "op": "DUP1", + "gas": 3000500, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 7, + "op": "ISZERO", + "gas": 3000497, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0", + "0x0" + ] + }, + { + "pc": 8, + "op": "PUSH2", + "gas": 3000494, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0", + "0x1" + ] + }, + { + "pc": 11, + "op": "JUMPI", + "gas": 3000491, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x0", + "0x1", + "0x10" + ] + }, + { + "pc": 16, + "op": "JUMPDEST", + "gas": 3000481, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 17, + "op": "POP", + "gas": 3000480, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 18, + "op": "PUSH1", + "gas": 3000478, + "gasCost": 3, + "depth": 1 + }, + { + "pc": 20, + "op": "CALLDATASIZE", + "gas": 3000475, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x4" + ] + }, + { + "pc": 21, + "op": "LT", + "gas": 3000473, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4", + "0x24" + ] + }, + { + "pc": 22, + "op": "PUSH2", + "gas": 3000470, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 25, + "op": "JUMPI", + "gas": 3000467, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x0", + "0x57" + ] + }, + { + "pc": 26, + "op": "PUSH1", + "gas": 3000457, + "gasCost": 3, + "depth": 1 + }, + { + "pc": 28, + "op": "CALLDATALOAD", + "gas": 3000454, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 29, + "op": "PUSH1", + "gas": 3000451, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c00000000000000000000000000000000000000000000000000000182" + ] + }, + { + "pc": 31, + "op": "SHR", + "gas": 3000448, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c00000000000000000000000000000000000000000000000000000182", + "0xe0" + ] + }, + { + "pc": 32, + "op": "DUP1", + "gas": 3000445, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c" + ] + }, + { + "pc": 33, + "op": "PUSH4", + "gas": 3000442, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xc5b0437c" + ] + }, + { + "pc": 38, + "op": "EQ", + "gas": 3000439, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xc5b0437c", + "0x13ab33b1" + ] + }, + { + "pc": 39, + "op": "PUSH2", + "gas": 3000436, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0x0" + ] + }, + { + "pc": 42, + "op": "JUMPI", + "gas": 3000433, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0x0", + "0x5c" + ] + }, + { + "pc": 43, + "op": "DUP1", + "gas": 3000423, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c" + ] + }, + { + "pc": 44, + "op": "PUSH4", + "gas": 3000420, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xc5b0437c" + ] + }, + { + "pc": 49, + "op": "EQ", + "gas": 3000417, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xc5b0437c", + "0x20408cd9" + ] + }, + { + "pc": 50, + "op": "PUSH2", + "gas": 3000414, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0x0" + ] + }, + { + "pc": 53, + "op": "JUMPI", + "gas": 3000411, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0x0", + "0x8c" + ] + }, + { + "pc": 54, + "op": "DUP1", + "gas": 3000401, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c" + ] + }, + { + "pc": 55, + "op": "PUSH4", + "gas": 3000398, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xc5b0437c" + ] + }, + { + "pc": 60, + "op": "EQ", + "gas": 3000395, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xc5b0437c", + "0x314a09a8" + ] + }, + { + "pc": 61, + "op": "PUSH2", + "gas": 3000392, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0x0" + ] + }, + { + "pc": 64, + "op": "JUMPI", + "gas": 3000389, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0x0", + "0xbc" + ] + }, + { + "pc": 65, + "op": "DUP1", + "gas": 3000379, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c" + ] + }, + { + "pc": 66, + "op": "PUSH4", + "gas": 3000376, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xc5b0437c" + ] + }, + { + "pc": 71, + "op": "EQ", + "gas": 3000373, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xc5b0437c", + "0xc5b0437c" + ] + }, + { + "pc": 72, + "op": "PUSH2", + "gas": 3000370, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0x1" + ] + }, + { + "pc": 75, + "op": "JUMPI", + "gas": 3000367, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0x1", + "0xda" + ] + }, + { + "pc": 218, + "op": "JUMPDEST", + "gas": 3000357, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xc5b0437c" + ] + }, + { + "pc": 219, + "op": "PUSH2", + "gas": 3000356, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c" + ] + }, + { + "pc": 222, + "op": "PUSH1", + "gas": 3000353, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4" + ] + }, + { + "pc": 224, + "op": "DUP1", + "gas": 3000350, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0x4" + ] + }, + { + "pc": 225, + "op": "CALLDATASIZE", + "gas": 3000347, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0x4", + "0x4" + ] + }, + { + "pc": 226, + "op": "SUB", + "gas": 3000345, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0x4", + "0x4", + "0x24" + ] + }, + { + "pc": 227, + "op": "DUP2", + "gas": 3000342, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0x4", + "0x20" + ] + }, + { + "pc": 228, + "op": "ADD", + "gas": 3000339, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0x4", + "0x20", + "0x4" + ] + }, + { + "pc": 229, + "op": "SWAP1", + "gas": 3000336, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0x4", + "0x24" + ] + }, + { + "pc": 230, + "op": "PUSH2", + "gas": 3000333, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0x24", + "0x4" + ] + }, + { + "pc": 233, + "op": "SWAP2", + "gas": 3000330, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0x24", + "0x4", + "0xef" + ] + }, + { + "pc": 234, + "op": "SWAP1", + "gas": 3000327, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0xef", + "0x4", + "0x24" + ] + }, + { + "pc": 235, + "op": "PUSH2", + "gas": 3000324, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0xef", + "0x24", + "0x4" + ] + }, + { + "pc": 238, + "op": "JUMP", + "gas": 3000321, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0xef", + "0x24", + "0x4", + "0x323" + ] + }, + { + "pc": 803, + "op": "JUMPDEST", + "gas": 3000313, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0xef", + "0x24", + "0x4" + ] + }, + { + "pc": 804, + "op": "PUSH1", + "gas": 3000312, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0xef", + "0x24", + "0x4" + ] + }, + { + "pc": 806, + "op": "PUSH1", + "gas": 3000309, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0xef", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 808, + "op": "DUP3", + "gas": 3000306, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0xef", + "0x24", + "0x4", + "0x0", + "0x20" + ] + }, + { + "pc": 809, + "op": "DUP5", + "gas": 3000303, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0xef", + "0x24", + "0x4", + "0x0", + "0x20", + "0x4" + ] + }, + { + "pc": 810, + "op": "SUB", + "gas": 3000300, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0xef", + "0x24", + "0x4", + "0x0", + "0x20", + "0x4", + "0x24" + ] + }, + { + "pc": 811, + "op": "SLT", + "gas": 3000297, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0xef", + "0x24", + "0x4", + "0x0", + "0x20", + "0x20" + ] + }, + { + "pc": 812, + "op": "ISZERO", + "gas": 3000294, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0xef", + "0x24", + "0x4", + "0x0", + "0x0" + ] + }, + { + "pc": 813, + "op": "PUSH2", + "gas": 3000291, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0xef", + "0x24", + "0x4", + "0x0", + "0x1" + ] + }, + { + "pc": 816, + "op": "JUMPI", + "gas": 3000288, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0xef", + "0x24", + "0x4", + "0x0", + "0x1", + "0x335" + ] + }, + { + "pc": 821, + "op": "JUMPDEST", + "gas": 3000278, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0xef", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 822, + "op": "PUSH1", + "gas": 3000277, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0xef", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 824, + "op": "PUSH2", + "gas": 3000274, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0xef", + "0x24", + "0x4", + "0x0", + "0x0" + ] + }, + { + "pc": 827, + "op": "DUP5", + "gas": 3000271, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0xef", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343" + ] + }, + { + "pc": 828, + "op": "DUP3", + "gas": 3000268, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0xef", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24" + ] + }, + { + "pc": 829, + "op": "DUP6", + "gas": 3000265, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0xef", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x0" + ] + }, + { + "pc": 830, + "op": "ADD", + "gas": 3000262, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0xef", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x0", + "0x4" + ] + }, + { + "pc": 831, + "op": "PUSH2", + "gas": 3000259, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0xef", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4" + ] + }, + { + "pc": 834, + "op": "JUMP", + "gas": 3000256, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0xef", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x30e" + ] + }, + { + "pc": 782, + "op": "JUMPDEST", + "gas": 3000248, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0xef", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4" + ] + }, + { + "pc": 783, + "op": "PUSH1", + "gas": 3000247, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0xef", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4" + ] + }, + { + "pc": 785, + "op": "DUP2", + "gas": 3000244, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0xef", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 786, + "op": "CALLDATALOAD", + "gas": 3000241, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0xef", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x0", + "0x4" + ] + }, + { + "pc": 787, + "op": "SWAP1", + "gas": 3000238, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0xef", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x0", + "0x182cae2c253" + ] + }, + { + "pc": 788, + "op": "POP", + "gas": 3000235, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0xef", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x182cae2c253", + "0x0" + ] + }, + { + "pc": 789, + "op": "PUSH2", + "gas": 3000233, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0xef", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x182cae2c253" + ] + }, + { + "pc": 792, + "op": "DUP2", + "gas": 3000230, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0xef", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x182cae2c253", + "0x31d" + ] + }, + { + "pc": 793, + "op": "PUSH2", + "gas": 3000227, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0xef", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x182cae2c253", + "0x31d", + "0x182cae2c253" + ] + }, + { + "pc": 796, + "op": "JUMP", + "gas": 3000224, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0xef", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x182cae2c253", + "0x31d", + "0x182cae2c253", + "0x3dc" + ] + }, + { + "pc": 988, + "op": "JUMPDEST", + "gas": 3000216, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0xef", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x182cae2c253", + "0x31d", + "0x182cae2c253" + ] + }, + { + "pc": 989, + "op": "PUSH2", + "gas": 3000215, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0xef", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x182cae2c253", + "0x31d", + "0x182cae2c253" + ] + }, + { + "pc": 992, + "op": "DUP2", + "gas": 3000212, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0xef", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x182cae2c253", + "0x31d", + "0x182cae2c253", + "0x3e5" + ] + }, + { + "pc": 993, + "op": "PUSH2", + "gas": 3000209, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0xef", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x182cae2c253", + "0x31d", + "0x182cae2c253", + "0x3e5", + "0x182cae2c253" + ] + }, + { + "pc": 996, + "op": "JUMP", + "gas": 3000206, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0xef", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x182cae2c253", + "0x31d", + "0x182cae2c253", + "0x3e5", + "0x182cae2c253", + "0x3d2" + ] + }, + { + "pc": 978, + "op": "JUMPDEST", + "gas": 3000198, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0xef", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x182cae2c253", + "0x31d", + "0x182cae2c253", + "0x3e5", + "0x182cae2c253" + ] + }, + { + "pc": 979, + "op": "PUSH1", + "gas": 3000197, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0xef", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x182cae2c253", + "0x31d", + "0x182cae2c253", + "0x3e5", + "0x182cae2c253" + ] + }, + { + "pc": 981, + "op": "DUP2", + "gas": 3000194, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0xef", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x182cae2c253", + "0x31d", + "0x182cae2c253", + "0x3e5", + "0x182cae2c253", + "0x0" + ] + }, + { + "pc": 982, + "op": "SWAP1", + "gas": 3000191, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0xef", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x182cae2c253", + "0x31d", + "0x182cae2c253", + "0x3e5", + "0x182cae2c253", + "0x0", + "0x182cae2c253" + ] + }, + { + "pc": 983, + "op": "POP", + "gas": 3000188, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0xef", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x182cae2c253", + "0x31d", + "0x182cae2c253", + "0x3e5", + "0x182cae2c253", + "0x182cae2c253", + "0x0" + ] + }, + { + "pc": 984, + "op": "SWAP2", + "gas": 3000186, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0xef", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x182cae2c253", + "0x31d", + "0x182cae2c253", + "0x3e5", + "0x182cae2c253", + "0x182cae2c253" + ] + }, + { + "pc": 985, + "op": "SWAP1", + "gas": 3000183, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0xef", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x182cae2c253", + "0x31d", + "0x182cae2c253", + "0x182cae2c253", + "0x182cae2c253", + "0x3e5" + ] + }, + { + "pc": 986, + "op": "POP", + "gas": 3000180, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0xef", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x182cae2c253", + "0x31d", + "0x182cae2c253", + "0x182cae2c253", + "0x3e5", + "0x182cae2c253" + ] + }, + { + "pc": 987, + "op": "JUMP", + "gas": 3000178, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0xef", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x182cae2c253", + "0x31d", + "0x182cae2c253", + "0x182cae2c253", + "0x3e5" + ] + }, + { + "pc": 997, + "op": "JUMPDEST", + "gas": 3000170, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0xef", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x182cae2c253", + "0x31d", + "0x182cae2c253", + "0x182cae2c253" + ] + }, + { + "pc": 998, + "op": "DUP2", + "gas": 3000169, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0xef", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x182cae2c253", + "0x31d", + "0x182cae2c253", + "0x182cae2c253" + ] + }, + { + "pc": 999, + "op": "EQ", + "gas": 3000166, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0xef", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x182cae2c253", + "0x31d", + "0x182cae2c253", + "0x182cae2c253", + "0x182cae2c253" + ] + }, + { + "pc": 1000, + "op": "PUSH2", + "gas": 3000163, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0xef", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x182cae2c253", + "0x31d", + "0x182cae2c253", + "0x1" + ] + }, + { + "pc": 1003, + "op": "JUMPI", + "gas": 3000160, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0xef", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x182cae2c253", + "0x31d", + "0x182cae2c253", + "0x1", + "0x3f0" + ] + }, + { + "pc": 1008, + "op": "JUMPDEST", + "gas": 3000150, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0xef", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x182cae2c253", + "0x31d", + "0x182cae2c253" + ] + }, + { + "pc": 1009, + "op": "POP", + "gas": 3000149, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0xef", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x182cae2c253", + "0x31d", + "0x182cae2c253" + ] + }, + { + "pc": 1010, + "op": "JUMP", + "gas": 3000147, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0xef", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x182cae2c253", + "0x31d" + ] + }, + { + "pc": 797, + "op": "JUMPDEST", + "gas": 3000139, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0xef", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x182cae2c253" + ] + }, + { + "pc": 798, + "op": "SWAP3", + "gas": 3000138, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0xef", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x182cae2c253" + ] + }, + { + "pc": 799, + "op": "SWAP2", + "gas": 3000135, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0xef", + "0x24", + "0x4", + "0x0", + "0x0", + "0x182cae2c253", + "0x24", + "0x4", + "0x343" + ] + }, + { + "pc": 800, + "op": "POP", + "gas": 3000132, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0xef", + "0x24", + "0x4", + "0x0", + "0x0", + "0x182cae2c253", + "0x343", + "0x4", + "0x24" + ] + }, + { + "pc": 801, + "op": "POP", + "gas": 3000130, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0xef", + "0x24", + "0x4", + "0x0", + "0x0", + "0x182cae2c253", + "0x343", + "0x4" + ] + }, + { + "pc": 802, + "op": "JUMP", + "gas": 3000128, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0xef", + "0x24", + "0x4", + "0x0", + "0x0", + "0x182cae2c253", + "0x343" + ] + }, + { + "pc": 835, + "op": "JUMPDEST", + "gas": 3000120, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0xef", + "0x24", + "0x4", + "0x0", + "0x0", + "0x182cae2c253" + ] + }, + { + "pc": 836, + "op": "SWAP2", + "gas": 3000119, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0xef", + "0x24", + "0x4", + "0x0", + "0x0", + "0x182cae2c253" + ] + }, + { + "pc": 837, + "op": "POP", + "gas": 3000116, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0xef", + "0x24", + "0x4", + "0x182cae2c253", + "0x0", + "0x0" + ] + }, + { + "pc": 838, + "op": "POP", + "gas": 3000114, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0xef", + "0x24", + "0x4", + "0x182cae2c253", + "0x0" + ] + }, + { + "pc": 839, + "op": "SWAP3", + "gas": 3000112, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0xef", + "0x24", + "0x4", + "0x182cae2c253" + ] + }, + { + "pc": 840, + "op": "SWAP2", + "gas": 3000109, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0x182cae2c253", + "0x24", + "0x4", + "0xef" + ] + }, + { + "pc": 841, + "op": "POP", + "gas": 3000106, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0x182cae2c253", + "0xef", + "0x4", + "0x24" + ] + }, + { + "pc": 842, + "op": "POP", + "gas": 3000104, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0x182cae2c253", + "0xef", + "0x4" + ] + }, + { + "pc": 843, + "op": "JUMP", + "gas": 3000102, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0x182cae2c253", + "0xef" + ] + }, + { + "pc": 239, + "op": "JUMPDEST", + "gas": 3000094, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0x182cae2c253" + ] + }, + { + "pc": 240, + "op": "PUSH2", + "gas": 3000093, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0x182cae2c253" + ] + }, + { + "pc": 243, + "op": "JUMP", + "gas": 3000090, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0x182cae2c253", + "0x1c0" + ] + }, + { + "pc": 448, + "op": "JUMPDEST", + "gas": 3000082, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0x182cae2c253" + ] + }, + { + "pc": 449, + "op": "PUSH1", + "gas": 3000081, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0x182cae2c253" + ] + }, + { + "pc": 451, + "op": "DUP2", + "gas": 3000078, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0x182cae2c253", + "0x0" + ] + }, + { + "pc": 452, + "op": "PUSH1", + "gas": 3000075, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0x182cae2c253", + "0x0", + "0x182cae2c253" + ] + }, + { + "pc": 454, + "op": "MLOAD", + "gas": 3000072, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0x182cae2c253", + "0x0", + "0x182cae2c253", + "0x40" + ] + }, + { + "pc": 455, + "op": "PUSH2", + "gas": 3000069, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0x182cae2c253", + "0x0", + "0x182cae2c253", + "0x80" + ] + }, + { + "pc": 458, + "op": "SWAP1", + "gas": 3000066, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0x182cae2c253", + "0x0", + "0x182cae2c253", + "0x80", + "0x1cf" + ] + }, + { + "pc": 459, + "op": "PUSH2", + "gas": 3000063, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0x182cae2c253", + "0x0", + "0x182cae2c253", + "0x1cf", + "0x80" + ] + }, + { + "pc": 462, + "op": "JUMP", + "gas": 3000060, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0x182cae2c253", + "0x0", + "0x182cae2c253", + "0x1cf", + "0x80", + "0x301" + ] + }, + { + "pc": 769, + "op": "JUMPDEST", + "gas": 3000052, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0x182cae2c253", + "0x0", + "0x182cae2c253", + "0x1cf", + "0x80" + ] + }, + { + "pc": 770, + "op": "PUSH2", + "gas": 3000051, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0x182cae2c253", + "0x0", + "0x182cae2c253", + "0x1cf", + "0x80" + ] + }, + { + "pc": 773, + "op": "DUP1", + "gas": 3000048, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0x182cae2c253", + "0x0", + "0x182cae2c253", + "0x1cf", + "0x80", + "0x3ab" + ] + }, + { + "pc": 774, + "op": "PUSH2", + "gas": 3000045, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0x182cae2c253", + "0x0", + "0x182cae2c253", + "0x1cf", + "0x80", + "0x3ab", + "0x3ab" + ] + }, + { + "pc": 777, + "op": "DUP4", + "gas": 3000042, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0x182cae2c253", + "0x0", + "0x182cae2c253", + "0x1cf", + "0x80", + "0x3ab", + "0x3ab", + "0x4d6" + ] + }, + { + "pc": 778, + "op": "CODECOPY", + "gas": 3000039, + "gasCost": 188, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0x182cae2c253", + "0x0", + "0x182cae2c253", + "0x1cf", + "0x80", + "0x3ab", + "0x3ab", + "0x4d6", + "0x80" + ], + "extraData": { + "codeList": [ + "0x608060405234801561001057600080fd5b50600436106100575760003560e01c806313ab33b11461005c57806320408cd91461008c578063314a09a8146100bc578063c5b0437c146100da578063ce0dbd67146100f6575b600080fd5b61007660048036038101906100719190610323565b610112565b604051610083919061036a565b60405180910390f35b6100a660048036038101906100a19190610323565b610155565b6040516100b3919061036a565b60405180910390f35b6100c4610197565b6040516100d1919061036a565b60405180910390f35b6100f460048036038101906100ef9190610323565b6101c0565b005b610110600480360381019061010b9190610323565b61023c565b005b600081604051610121906102f5565b61012b9190610385565b604051809103906000f0801561013e5760015b61014b5760009050610150565b809150505b919050565b6000808260405161016590610301565b61016f9190610385565b604051809103906000f08015801561018b573d6000803e3d6000fd5b50905080915050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000816040516101cf90610301565b6101d99190610385565b604051809103906000f0801580156101f5573d6000803e3d6000fd5b509050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b80604051610249906102f5565b6102539190610385565b604051809103906000f080156102665760015b6102b05760008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506102f2565b806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505b50565b60e2806103f483390190565b6103ab806104d683390190565b60008135905061031d816103dc565b92915050565b60006020828403121561033557600080fd5b60006103438482850161030e565b91505092915050565b610355816103a0565b82525050565b610364816103d2565b82525050565b600060208201905061037f600083018461034c565b92915050565b600060208201905061039a600083018461035b565b92915050565b60006103ab826103b2565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6103e5816103d2565b81146103f057600080fd5b5056fe6080604052348015600f57600080fd5b5060405160e238038060e28339818101604052810190602d91906052565b6000811415603a57600080fd5b506096565b600081519050604c816082565b92915050565b600060208284031215606357600080fd5b6000606f84828501603f565b91505092915050565b6000819050919050565b6089816078565b8114609357600080fd5b50565b603f8060a36000396000f3fe6080604052600080fdfea2646970667358221220d980928765b61eb01523442146dc4518e079360da1cc4a7f1ab97c88f137c27e64736f6c63430008040033608060405234801561001057600080fd5b506040516103ab3803806103ab83398181016040528101906100329190610054565b806000819055505061009e565b60008151905061004e81610087565b92915050565b60006020828403121561006657600080fd5b60006100748482850161003f565b91505092915050565b6000819050919050565b6100908161007d565b811461009b57600080fd5b50565b6102fe806100ad6000396000f3fe6080604052600436106100555760003560e01c806321848c461461005a5780632e64cec114610083578063b0f2b72a146100ae578063c4e96ec0146100d7578063e5223f88146100f3578063f34176731461010f575b600080fd5b34801561006657600080fd5b50610081600480360381019061007c91906101d7565b61013a565b005b34801561008f57600080fd5b5061009861014f565b6040516100a59190610252565b60405180910390f35b3480156100ba57600080fd5b506100d560048036038101906100d091906101d7565b610158565b005b6100f160048036038101906100ec91906101d7565b610162565b005b61010d600480360381019061010891906101d7565b6101a4565b005b34801561011b57600080fd5b506101246101ae565b6040516101319190610252565b60405180910390f35b80600081905550600061014c57600080fd5b50565b60008054905090565b8060008190555050565b806000819055506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161019b90610232565b60405180910390fd5b8060008190555050565b6000806101ba57600080fd5b600054905090565b6000813590506101d1816102b1565b92915050565b6000602082840312156101e957600080fd5b60006101f7848285016101c2565b91505092915050565b600061020d600c8361026d565b915061021882610288565b602082019050919050565b61022c8161027e565b82525050565b6000602082019050818103600083015261024b81610200565b9050919050565b60006020820190506102676000830184610223565b92915050565b600082825260208201905092915050565b6000819050919050565b7f64656c696265726174656c790000000000000000000000000000000000000000600082015250565b6102ba8161027e565b81146102c557600080fd5b5056fea26469706673582212206fa6988b66dece47dc22658a0058d7f113ce303b23abdbfb3e29ee300a66489464736f6c63430008040033a264697066735822122024e6552371fbd96476a2ebdebcd94517f44d186fe1b33f5e31629291591786e764736f6c63430008040033" + ] + } + }, + { + "pc": 779, + "op": "ADD", + "gas": 2999851, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0x182cae2c253", + "0x0", + "0x182cae2c253", + "0x1cf", + "0x80", + "0x3ab" + ] + }, + { + "pc": 780, + "op": "SWAP1", + "gas": 2999848, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0x182cae2c253", + "0x0", + "0x182cae2c253", + "0x1cf", + "0x42b" + ] + }, + { + "pc": 781, + "op": "JUMP", + "gas": 2999845, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0x182cae2c253", + "0x0", + "0x182cae2c253", + "0x42b", + "0x1cf" + ] + }, + { + "pc": 463, + "op": "JUMPDEST", + "gas": 2999837, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0x182cae2c253", + "0x0", + "0x182cae2c253", + "0x42b" + ] + }, + { + "pc": 464, + "op": "PUSH2", + "gas": 2999836, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0x182cae2c253", + "0x0", + "0x182cae2c253", + "0x42b" + ] + }, + { + "pc": 467, + "op": "SWAP2", + "gas": 2999833, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0x182cae2c253", + "0x0", + "0x182cae2c253", + "0x42b", + "0x1d9" + ] + }, + { + "pc": 468, + "op": "SWAP1", + "gas": 2999830, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0x182cae2c253", + "0x0", + "0x1d9", + "0x42b", + "0x182cae2c253" + ] + }, + { + "pc": 469, + "op": "PUSH2", + "gas": 2999827, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0x182cae2c253", + "0x0", + "0x1d9", + "0x182cae2c253", + "0x42b" + ] + }, + { + "pc": 472, + "op": "JUMP", + "gas": 2999824, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0x182cae2c253", + "0x0", + "0x1d9", + "0x182cae2c253", + "0x42b", + "0x385" + ] + }, + { + "pc": 901, + "op": "JUMPDEST", + "gas": 2999816, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0x182cae2c253", + "0x0", + "0x1d9", + "0x182cae2c253", + "0x42b" + ] + }, + { + "pc": 902, + "op": "PUSH1", + "gas": 2999815, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0x182cae2c253", + "0x0", + "0x1d9", + "0x182cae2c253", + "0x42b" + ] + }, + { + "pc": 904, + "op": "PUSH1", + "gas": 2999812, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0x182cae2c253", + "0x0", + "0x1d9", + "0x182cae2c253", + "0x42b", + "0x0" + ] + }, + { + "pc": 906, + "op": "DUP3", + "gas": 2999809, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0x182cae2c253", + "0x0", + "0x1d9", + "0x182cae2c253", + "0x42b", + "0x0", + "0x20" + ] + }, + { + "pc": 907, + "op": "ADD", + "gas": 2999806, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0x182cae2c253", + "0x0", + "0x1d9", + "0x182cae2c253", + "0x42b", + "0x0", + "0x20", + "0x42b" + ] + }, + { + "pc": 908, + "op": "SWAP1", + "gas": 2999803, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0x182cae2c253", + "0x0", + "0x1d9", + "0x182cae2c253", + "0x42b", + "0x0", + "0x44b" + ] + }, + { + "pc": 909, + "op": "POP", + "gas": 2999800, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0x182cae2c253", + "0x0", + "0x1d9", + "0x182cae2c253", + "0x42b", + "0x44b", + "0x0" + ] + }, + { + "pc": 910, + "op": "PUSH2", + "gas": 2999798, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0x182cae2c253", + "0x0", + "0x1d9", + "0x182cae2c253", + "0x42b", + "0x44b" + ] + }, + { + "pc": 913, + "op": "PUSH1", + "gas": 2999795, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0x182cae2c253", + "0x0", + "0x1d9", + "0x182cae2c253", + "0x42b", + "0x44b", + "0x39a" + ] + }, + { + "pc": 915, + "op": "DUP4", + "gas": 2999792, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0x182cae2c253", + "0x0", + "0x1d9", + "0x182cae2c253", + "0x42b", + "0x44b", + "0x39a", + "0x0" + ] + }, + { + "pc": 916, + "op": "ADD", + "gas": 2999789, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0x182cae2c253", + "0x0", + "0x1d9", + "0x182cae2c253", + "0x42b", + "0x44b", + "0x39a", + "0x0", + "0x42b" + ] + }, + { + "pc": 917, + "op": "DUP5", + "gas": 2999786, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0x182cae2c253", + "0x0", + "0x1d9", + "0x182cae2c253", + "0x42b", + "0x44b", + "0x39a", + "0x42b" + ] + }, + { + "pc": 918, + "op": "PUSH2", + "gas": 2999783, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0x182cae2c253", + "0x0", + "0x1d9", + "0x182cae2c253", + "0x42b", + "0x44b", + "0x39a", + "0x42b", + "0x182cae2c253" + ] + }, + { + "pc": 921, + "op": "JUMP", + "gas": 2999780, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0x182cae2c253", + "0x0", + "0x1d9", + "0x182cae2c253", + "0x42b", + "0x44b", + "0x39a", + "0x42b", + "0x182cae2c253", + "0x35b" + ] + }, + { + "pc": 859, + "op": "JUMPDEST", + "gas": 2999772, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0x182cae2c253", + "0x0", + "0x1d9", + "0x182cae2c253", + "0x42b", + "0x44b", + "0x39a", + "0x42b", + "0x182cae2c253" + ] + }, + { + "pc": 860, + "op": "PUSH2", + "gas": 2999771, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0x182cae2c253", + "0x0", + "0x1d9", + "0x182cae2c253", + "0x42b", + "0x44b", + "0x39a", + "0x42b", + "0x182cae2c253" + ] + }, + { + "pc": 863, + "op": "DUP2", + "gas": 2999768, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0x182cae2c253", + "0x0", + "0x1d9", + "0x182cae2c253", + "0x42b", + "0x44b", + "0x39a", + "0x42b", + "0x182cae2c253", + "0x364" + ] + }, + { + "pc": 864, + "op": "PUSH2", + "gas": 2999765, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0x182cae2c253", + "0x0", + "0x1d9", + "0x182cae2c253", + "0x42b", + "0x44b", + "0x39a", + "0x42b", + "0x182cae2c253", + "0x364", + "0x182cae2c253" + ] + }, + { + "pc": 867, + "op": "JUMP", + "gas": 2999762, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0x182cae2c253", + "0x0", + "0x1d9", + "0x182cae2c253", + "0x42b", + "0x44b", + "0x39a", + "0x42b", + "0x182cae2c253", + "0x364", + "0x182cae2c253", + "0x3d2" + ] + }, + { + "pc": 978, + "op": "JUMPDEST", + "gas": 2999754, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0x182cae2c253", + "0x0", + "0x1d9", + "0x182cae2c253", + "0x42b", + "0x44b", + "0x39a", + "0x42b", + "0x182cae2c253", + "0x364", + "0x182cae2c253" + ] + }, + { + "pc": 979, + "op": "PUSH1", + "gas": 2999753, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0x182cae2c253", + "0x0", + "0x1d9", + "0x182cae2c253", + "0x42b", + "0x44b", + "0x39a", + "0x42b", + "0x182cae2c253", + "0x364", + "0x182cae2c253" + ] + }, + { + "pc": 981, + "op": "DUP2", + "gas": 2999750, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0x182cae2c253", + "0x0", + "0x1d9", + "0x182cae2c253", + "0x42b", + "0x44b", + "0x39a", + "0x42b", + "0x182cae2c253", + "0x364", + "0x182cae2c253", + "0x0" + ] + }, + { + "pc": 982, + "op": "SWAP1", + "gas": 2999747, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0x182cae2c253", + "0x0", + "0x1d9", + "0x182cae2c253", + "0x42b", + "0x44b", + "0x39a", + "0x42b", + "0x182cae2c253", + "0x364", + "0x182cae2c253", + "0x0", + "0x182cae2c253" + ] + }, + { + "pc": 983, + "op": "POP", + "gas": 2999744, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0x182cae2c253", + "0x0", + "0x1d9", + "0x182cae2c253", + "0x42b", + "0x44b", + "0x39a", + "0x42b", + "0x182cae2c253", + "0x364", + "0x182cae2c253", + "0x182cae2c253", + "0x0" + ] + }, + { + "pc": 984, + "op": "SWAP2", + "gas": 2999742, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0x182cae2c253", + "0x0", + "0x1d9", + "0x182cae2c253", + "0x42b", + "0x44b", + "0x39a", + "0x42b", + "0x182cae2c253", + "0x364", + "0x182cae2c253", + "0x182cae2c253" + ] + }, + { + "pc": 985, + "op": "SWAP1", + "gas": 2999739, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0x182cae2c253", + "0x0", + "0x1d9", + "0x182cae2c253", + "0x42b", + "0x44b", + "0x39a", + "0x42b", + "0x182cae2c253", + "0x182cae2c253", + "0x182cae2c253", + "0x364" + ] + }, + { + "pc": 986, + "op": "POP", + "gas": 2999736, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0x182cae2c253", + "0x0", + "0x1d9", + "0x182cae2c253", + "0x42b", + "0x44b", + "0x39a", + "0x42b", + "0x182cae2c253", + "0x182cae2c253", + "0x364", + "0x182cae2c253" + ] + }, + { + "pc": 987, + "op": "JUMP", + "gas": 2999734, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0x182cae2c253", + "0x0", + "0x1d9", + "0x182cae2c253", + "0x42b", + "0x44b", + "0x39a", + "0x42b", + "0x182cae2c253", + "0x182cae2c253", + "0x364" + ] + }, + { + "pc": 868, + "op": "JUMPDEST", + "gas": 2999726, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0x182cae2c253", + "0x0", + "0x1d9", + "0x182cae2c253", + "0x42b", + "0x44b", + "0x39a", + "0x42b", + "0x182cae2c253", + "0x182cae2c253" + ] + }, + { + "pc": 869, + "op": "DUP3", + "gas": 2999725, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0x182cae2c253", + "0x0", + "0x1d9", + "0x182cae2c253", + "0x42b", + "0x44b", + "0x39a", + "0x42b", + "0x182cae2c253", + "0x182cae2c253" + ] + }, + { + "pc": 870, + "op": "MSTORE", + "gas": 2999722, + "gasCost": 6, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0x182cae2c253", + "0x0", + "0x1d9", + "0x182cae2c253", + "0x42b", + "0x44b", + "0x39a", + "0x42b", + "0x182cae2c253", + "0x182cae2c253", + "0x42b" + ] + }, + { + "pc": 871, + "op": "POP", + "gas": 2999716, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0x182cae2c253", + "0x0", + "0x1d9", + "0x182cae2c253", + "0x42b", + "0x44b", + "0x39a", + "0x42b", + "0x182cae2c253" + ] + }, + { + "pc": 872, + "op": "POP", + "gas": 2999714, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0x182cae2c253", + "0x0", + "0x1d9", + "0x182cae2c253", + "0x42b", + "0x44b", + "0x39a", + "0x42b" + ] + }, + { + "pc": 873, + "op": "JUMP", + "gas": 2999712, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0x182cae2c253", + "0x0", + "0x1d9", + "0x182cae2c253", + "0x42b", + "0x44b", + "0x39a" + ] + }, + { + "pc": 922, + "op": "JUMPDEST", + "gas": 2999704, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0x182cae2c253", + "0x0", + "0x1d9", + "0x182cae2c253", + "0x42b", + "0x44b" + ] + }, + { + "pc": 923, + "op": "SWAP3", + "gas": 2999703, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0x182cae2c253", + "0x0", + "0x1d9", + "0x182cae2c253", + "0x42b", + "0x44b" + ] + }, + { + "pc": 924, + "op": "SWAP2", + "gas": 2999700, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0x182cae2c253", + "0x0", + "0x44b", + "0x182cae2c253", + "0x42b", + "0x1d9" + ] + }, + { + "pc": 925, + "op": "POP", + "gas": 2999697, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0x182cae2c253", + "0x0", + "0x44b", + "0x1d9", + "0x42b", + "0x182cae2c253" + ] + }, + { + "pc": 926, + "op": "POP", + "gas": 2999695, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0x182cae2c253", + "0x0", + "0x44b", + "0x1d9", + "0x42b" + ] + }, + { + "pc": 927, + "op": "JUMP", + "gas": 2999693, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0x182cae2c253", + "0x0", + "0x44b", + "0x1d9" + ] + }, + { + "pc": 473, + "op": "JUMPDEST", + "gas": 2999685, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0x182cae2c253", + "0x0", + "0x44b" + ] + }, + { + "pc": 474, + "op": "PUSH1", + "gas": 2999684, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0x182cae2c253", + "0x0", + "0x44b" + ] + }, + { + "pc": 476, + "op": "MLOAD", + "gas": 2999681, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0x182cae2c253", + "0x0", + "0x44b", + "0x40" + ] + }, + { + "pc": 477, + "op": "DUP1", + "gas": 2999678, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0x182cae2c253", + "0x0", + "0x44b", + "0x80" + ] + }, + { + "pc": 478, + "op": "SWAP2", + "gas": 2999675, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0x182cae2c253", + "0x0", + "0x44b", + "0x80", + "0x80" + ] + }, + { + "pc": 479, + "op": "SUB", + "gas": 2999672, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0x182cae2c253", + "0x0", + "0x80", + "0x80", + "0x44b" + ] + }, + { + "pc": 480, + "op": "SWAP1", + "gas": 2999669, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0x182cae2c253", + "0x0", + "0x80", + "0x3cb" + ] + }, + { + "pc": 481, + "op": "PUSH1", + "gas": 2999666, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0x182cae2c253", + "0x0", + "0x3cb", + "0x80" + ] + }, + { + "pc": 483, + "op": "CREATE", + "gas": 2999663, + "gasCost": 32000, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0x182cae2c253", + "0x0", + "0x3cb", + "0x80", + "0x0" + ], + "extraData": { + "codeList": [ + "0x6080604052600436106100555760003560e01c806321848c461461005a5780632e64cec114610083578063b0f2b72a146100ae578063c4e96ec0146100d7578063e5223f88146100f3578063f34176731461010f575b600080fd5b34801561006657600080fd5b50610081600480360381019061007c91906101d7565b61013a565b005b34801561008f57600080fd5b5061009861014f565b6040516100a59190610252565b60405180910390f35b3480156100ba57600080fd5b506100d560048036038101906100d091906101d7565b610158565b005b6100f160048036038101906100ec91906101d7565b610162565b005b61010d600480360381019061010891906101d7565b6101a4565b005b34801561011b57600080fd5b506101246101ae565b6040516101319190610252565b60405180910390f35b80600081905550600061014c57600080fd5b50565b60008054905090565b8060008190555050565b806000819055506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161019b90610232565b60405180910390fd5b8060008190555050565b6000806101ba57600080fd5b600054905090565b6000813590506101d1816102b1565b92915050565b6000602082840312156101e957600080fd5b60006101f7848285016101c2565b91505092915050565b600061020d600c8361026d565b915061021882610288565b602082019050919050565b61022c8161027e565b82525050565b6000602082019050818103600083015261024b81610200565b9050919050565b60006020820190506102676000830184610223565b92915050565b600082825260208201905092915050565b6000819050919050565b7f64656c696265726174656c790000000000000000000000000000000000000000600082015250565b6102ba8161027e565b81146102c557600080fd5b5056fea26469706673582212206fa6988b66dece47dc22658a0058d7f113ce303b23abdbfb3e29ee300a66489464736f6c63430008040033" + ], + "proofList": [ + { + "address": "0x080b18cb659f0a532d679e660c9841e1e0991ae1", + "nonce": 1, + "balance": "0x0", + "codeHash": "0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470" + }, + { + "address": "0x080b18cb659f0a532d679e660c9841e1e0991ae1", + "nonce": 1, + "balance": "0x0", + "codeHash": "0x4ee2afb169bef88abed9792edc0230c2cda9c19a48639d2db199479f1176928e" + } + ], + "caller": [ + { + "address": "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "nonce": 10, + "balance": "0x0", + "codeHash": "0x0197f7ef0aab588fbcc511af4e7d236206b90e8fbe1adfc7afe76c181cc4e9f0" + }, + { + "address": "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "nonce": 11, + "balance": "0x0", + "codeHash": "0x0197f7ef0aab588fbcc511af4e7d236206b90e8fbe1adfc7afe76c181cc4e9f0" + } + ] + } + }, + { + "pc": 0, + "op": "PUSH1", + "gas": 2921294, + "gasCost": 3, + "depth": 2 + }, + { + "pc": 2, + "op": "PUSH1", + "gas": 2921291, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x80" + ] + }, + { + "pc": 4, + "op": "MSTORE", + "gas": 2921288, + "gasCost": 12, + "depth": 2, + "stack": [ + "0x80", + "0x40" + ] + }, + { + "pc": 5, + "op": "CALLVALUE", + "gas": 2921276, + "gasCost": 2, + "depth": 2 + }, + { + "pc": 6, + "op": "DUP1", + "gas": 2921274, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x0" + ] + }, + { + "pc": 7, + "op": "ISZERO", + "gas": 2921271, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x0", + "0x0" + ] + }, + { + "pc": 8, + "op": "PUSH2", + "gas": 2921268, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x0", + "0x1" + ] + }, + { + "pc": 11, + "op": "JUMPI", + "gas": 2921265, + "gasCost": 10, + "depth": 2, + "stack": [ + "0x0", + "0x1", + "0x10" + ] + }, + { + "pc": 16, + "op": "JUMPDEST", + "gas": 2921255, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x0" + ] + }, + { + "pc": 17, + "op": "POP", + "gas": 2921254, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x0" + ] + }, + { + "pc": 18, + "op": "PUSH1", + "gas": 2921252, + "gasCost": 3, + "depth": 2 + }, + { + "pc": 20, + "op": "MLOAD", + "gas": 2921249, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x40" + ] + }, + { + "pc": 21, + "op": "PUSH2", + "gas": 2921246, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x80" + ] + }, + { + "pc": 24, + "op": "CODESIZE", + "gas": 2921243, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x80", + "0x3ab" + ], + "extraData": { + "codeList": [ + "0x" + ] + } + }, + { + "pc": 25, + "op": "SUB", + "gas": 2921241, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x80", + "0x3ab", + "0x3cb" + ] + }, + { + "pc": 26, + "op": "DUP1", + "gas": 2921238, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x80", + "0x20" + ] + }, + { + "pc": 27, + "op": "PUSH2", + "gas": 2921235, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x80", + "0x20", + "0x20" + ] + }, + { + "pc": 30, + "op": "DUP4", + "gas": 2921232, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x80", + "0x20", + "0x20", + "0x3ab" + ] + }, + { + "pc": 31, + "op": "CODECOPY", + "gas": 2921229, + "gasCost": 12, + "depth": 2, + "stack": [ + "0x80", + "0x20", + "0x20", + "0x3ab", + "0x80" + ], + "extraData": { + "codeList": [ + "0x" + ] + } + }, + { + "pc": 32, + "op": "DUP2", + "gas": 2921217, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x80", + "0x20" + ] + }, + { + "pc": 33, + "op": "DUP2", + "gas": 2921214, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x80", + "0x20", + "0x80" + ] + }, + { + "pc": 34, + "op": "ADD", + "gas": 2921211, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x80", + "0x20", + "0x80", + "0x20" + ] + }, + { + "pc": 35, + "op": "PUSH1", + "gas": 2921208, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x80", + "0x20", + "0xa0" + ] + }, + { + "pc": 37, + "op": "MSTORE", + "gas": 2921205, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x80", + "0x20", + "0xa0", + "0x40" + ] + }, + { + "pc": 38, + "op": "DUP2", + "gas": 2921202, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x80", + "0x20" + ] + }, + { + "pc": 39, + "op": "ADD", + "gas": 2921199, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x80", + "0x20", + "0x80" + ] + }, + { + "pc": 40, + "op": "SWAP1", + "gas": 2921196, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x80", + "0xa0" + ] + }, + { + "pc": 41, + "op": "PUSH2", + "gas": 2921193, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xa0", + "0x80" + ] + }, + { + "pc": 44, + "op": "SWAP2", + "gas": 2921190, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xa0", + "0x80", + "0x32" + ] + }, + { + "pc": 45, + "op": "SWAP1", + "gas": 2921187, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x32", + "0x80", + "0xa0" + ] + }, + { + "pc": 46, + "op": "PUSH2", + "gas": 2921184, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x32", + "0xa0", + "0x80" + ] + }, + { + "pc": 49, + "op": "JUMP", + "gas": 2921181, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x32", + "0xa0", + "0x80", + "0x54" + ] + }, + { + "pc": 84, + "op": "JUMPDEST", + "gas": 2921173, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x32", + "0xa0", + "0x80" + ] + }, + { + "pc": 85, + "op": "PUSH1", + "gas": 2921172, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x32", + "0xa0", + "0x80" + ] + }, + { + "pc": 87, + "op": "PUSH1", + "gas": 2921169, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x32", + "0xa0", + "0x80", + "0x0" + ] + }, + { + "pc": 89, + "op": "DUP3", + "gas": 2921166, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x32", + "0xa0", + "0x80", + "0x0", + "0x20" + ] + }, + { + "pc": 90, + "op": "DUP5", + "gas": 2921163, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x32", + "0xa0", + "0x80", + "0x0", + "0x20", + "0x80" + ] + }, + { + "pc": 91, + "op": "SUB", + "gas": 2921160, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x32", + "0xa0", + "0x80", + "0x0", + "0x20", + "0x80", + "0xa0" + ] + }, + { + "pc": 92, + "op": "SLT", + "gas": 2921157, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x32", + "0xa0", + "0x80", + "0x0", + "0x20", + "0x20" + ] + }, + { + "pc": 93, + "op": "ISZERO", + "gas": 2921154, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x32", + "0xa0", + "0x80", + "0x0", + "0x0" + ] + }, + { + "pc": 94, + "op": "PUSH2", + "gas": 2921151, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x32", + "0xa0", + "0x80", + "0x0", + "0x1" + ] + }, + { + "pc": 97, + "op": "JUMPI", + "gas": 2921148, + "gasCost": 10, + "depth": 2, + "stack": [ + "0x32", + "0xa0", + "0x80", + "0x0", + "0x1", + "0x66" + ] + }, + { + "pc": 102, + "op": "JUMPDEST", + "gas": 2921138, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x32", + "0xa0", + "0x80", + "0x0" + ] + }, + { + "pc": 103, + "op": "PUSH1", + "gas": 2921137, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x32", + "0xa0", + "0x80", + "0x0" + ] + }, + { + "pc": 105, + "op": "PUSH2", + "gas": 2921134, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x32", + "0xa0", + "0x80", + "0x0", + "0x0" + ] + }, + { + "pc": 108, + "op": "DUP5", + "gas": 2921131, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x32", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x74" + ] + }, + { + "pc": 109, + "op": "DUP3", + "gas": 2921128, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x32", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x74", + "0xa0" + ] + }, + { + "pc": 110, + "op": "DUP6", + "gas": 2921125, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x32", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x74", + "0xa0", + "0x0" + ] + }, + { + "pc": 111, + "op": "ADD", + "gas": 2921122, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x32", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x74", + "0xa0", + "0x0", + "0x80" + ] + }, + { + "pc": 112, + "op": "PUSH2", + "gas": 2921119, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x32", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x74", + "0xa0", + "0x80" + ] + }, + { + "pc": 115, + "op": "JUMP", + "gas": 2921116, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x32", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x74", + "0xa0", + "0x80", + "0x3f" + ] + }, + { + "pc": 63, + "op": "JUMPDEST", + "gas": 2921108, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x32", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x74", + "0xa0", + "0x80" + ] + }, + { + "pc": 64, + "op": "PUSH1", + "gas": 2921107, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x32", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x74", + "0xa0", + "0x80" + ] + }, + { + "pc": 66, + "op": "DUP2", + "gas": 2921104, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x32", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x74", + "0xa0", + "0x80", + "0x0" + ] + }, + { + "pc": 67, + "op": "MLOAD", + "gas": 2921101, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x32", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x74", + "0xa0", + "0x80", + "0x0", + "0x80" + ] + }, + { + "pc": 68, + "op": "SWAP1", + "gas": 2921098, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x32", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x74", + "0xa0", + "0x80", + "0x0", + "0x182cae2c253" + ] + }, + { + "pc": 69, + "op": "POP", + "gas": 2921095, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x32", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x74", + "0xa0", + "0x80", + "0x182cae2c253", + "0x0" + ] + }, + { + "pc": 70, + "op": "PUSH2", + "gas": 2921093, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x32", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x74", + "0xa0", + "0x80", + "0x182cae2c253" + ] + }, + { + "pc": 73, + "op": "DUP2", + "gas": 2921090, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x32", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x74", + "0xa0", + "0x80", + "0x182cae2c253", + "0x4e" + ] + }, + { + "pc": 74, + "op": "PUSH2", + "gas": 2921087, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x32", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x74", + "0xa0", + "0x80", + "0x182cae2c253", + "0x4e", + "0x182cae2c253" + ] + }, + { + "pc": 77, + "op": "JUMP", + "gas": 2921084, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x32", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x74", + "0xa0", + "0x80", + "0x182cae2c253", + "0x4e", + "0x182cae2c253", + "0x87" + ] + }, + { + "pc": 135, + "op": "JUMPDEST", + "gas": 2921076, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x32", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x74", + "0xa0", + "0x80", + "0x182cae2c253", + "0x4e", + "0x182cae2c253" + ] + }, + { + "pc": 136, + "op": "PUSH2", + "gas": 2921075, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x32", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x74", + "0xa0", + "0x80", + "0x182cae2c253", + "0x4e", + "0x182cae2c253" + ] + }, + { + "pc": 139, + "op": "DUP2", + "gas": 2921072, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x32", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x74", + "0xa0", + "0x80", + "0x182cae2c253", + "0x4e", + "0x182cae2c253", + "0x90" + ] + }, + { + "pc": 140, + "op": "PUSH2", + "gas": 2921069, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x32", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x74", + "0xa0", + "0x80", + "0x182cae2c253", + "0x4e", + "0x182cae2c253", + "0x90", + "0x182cae2c253" + ] + }, + { + "pc": 143, + "op": "JUMP", + "gas": 2921066, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x32", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x74", + "0xa0", + "0x80", + "0x182cae2c253", + "0x4e", + "0x182cae2c253", + "0x90", + "0x182cae2c253", + "0x7d" + ] + }, + { + "pc": 125, + "op": "JUMPDEST", + "gas": 2921058, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x32", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x74", + "0xa0", + "0x80", + "0x182cae2c253", + "0x4e", + "0x182cae2c253", + "0x90", + "0x182cae2c253" + ] + }, + { + "pc": 126, + "op": "PUSH1", + "gas": 2921057, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x32", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x74", + "0xa0", + "0x80", + "0x182cae2c253", + "0x4e", + "0x182cae2c253", + "0x90", + "0x182cae2c253" + ] + }, + { + "pc": 128, + "op": "DUP2", + "gas": 2921054, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x32", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x74", + "0xa0", + "0x80", + "0x182cae2c253", + "0x4e", + "0x182cae2c253", + "0x90", + "0x182cae2c253", + "0x0" + ] + }, + { + "pc": 129, + "op": "SWAP1", + "gas": 2921051, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x32", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x74", + "0xa0", + "0x80", + "0x182cae2c253", + "0x4e", + "0x182cae2c253", + "0x90", + "0x182cae2c253", + "0x0", + "0x182cae2c253" + ] + }, + { + "pc": 130, + "op": "POP", + "gas": 2921048, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x32", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x74", + "0xa0", + "0x80", + "0x182cae2c253", + "0x4e", + "0x182cae2c253", + "0x90", + "0x182cae2c253", + "0x182cae2c253", + "0x0" + ] + }, + { + "pc": 131, + "op": "SWAP2", + "gas": 2921046, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x32", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x74", + "0xa0", + "0x80", + "0x182cae2c253", + "0x4e", + "0x182cae2c253", + "0x90", + "0x182cae2c253", + "0x182cae2c253" + ] + }, + { + "pc": 132, + "op": "SWAP1", + "gas": 2921043, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x32", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x74", + "0xa0", + "0x80", + "0x182cae2c253", + "0x4e", + "0x182cae2c253", + "0x182cae2c253", + "0x182cae2c253", + "0x90" + ] + }, + { + "pc": 133, + "op": "POP", + "gas": 2921040, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x32", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x74", + "0xa0", + "0x80", + "0x182cae2c253", + "0x4e", + "0x182cae2c253", + "0x182cae2c253", + "0x90", + "0x182cae2c253" + ] + }, + { + "pc": 134, + "op": "JUMP", + "gas": 2921038, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x32", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x74", + "0xa0", + "0x80", + "0x182cae2c253", + "0x4e", + "0x182cae2c253", + "0x182cae2c253", + "0x90" + ] + }, + { + "pc": 144, + "op": "JUMPDEST", + "gas": 2921030, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x32", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x74", + "0xa0", + "0x80", + "0x182cae2c253", + "0x4e", + "0x182cae2c253", + "0x182cae2c253" + ] + }, + { + "pc": 145, + "op": "DUP2", + "gas": 2921029, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x32", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x74", + "0xa0", + "0x80", + "0x182cae2c253", + "0x4e", + "0x182cae2c253", + "0x182cae2c253" + ] + }, + { + "pc": 146, + "op": "EQ", + "gas": 2921026, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x32", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x74", + "0xa0", + "0x80", + "0x182cae2c253", + "0x4e", + "0x182cae2c253", + "0x182cae2c253", + "0x182cae2c253" + ] + }, + { + "pc": 147, + "op": "PUSH2", + "gas": 2921023, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x32", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x74", + "0xa0", + "0x80", + "0x182cae2c253", + "0x4e", + "0x182cae2c253", + "0x1" + ] + }, + { + "pc": 150, + "op": "JUMPI", + "gas": 2921020, + "gasCost": 10, + "depth": 2, + "stack": [ + "0x32", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x74", + "0xa0", + "0x80", + "0x182cae2c253", + "0x4e", + "0x182cae2c253", + "0x1", + "0x9b" + ] + }, + { + "pc": 155, + "op": "JUMPDEST", + "gas": 2921010, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x32", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x74", + "0xa0", + "0x80", + "0x182cae2c253", + "0x4e", + "0x182cae2c253" + ] + }, + { + "pc": 156, + "op": "POP", + "gas": 2921009, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x32", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x74", + "0xa0", + "0x80", + "0x182cae2c253", + "0x4e", + "0x182cae2c253" + ] + }, + { + "pc": 157, + "op": "JUMP", + "gas": 2921007, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x32", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x74", + "0xa0", + "0x80", + "0x182cae2c253", + "0x4e" + ] + }, + { + "pc": 78, + "op": "JUMPDEST", + "gas": 2920999, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x32", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x74", + "0xa0", + "0x80", + "0x182cae2c253" + ] + }, + { + "pc": 79, + "op": "SWAP3", + "gas": 2920998, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x32", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x74", + "0xa0", + "0x80", + "0x182cae2c253" + ] + }, + { + "pc": 80, + "op": "SWAP2", + "gas": 2920995, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x32", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x182cae2c253", + "0xa0", + "0x80", + "0x74" + ] + }, + { + "pc": 81, + "op": "POP", + "gas": 2920992, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x32", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x182cae2c253", + "0x74", + "0x80", + "0xa0" + ] + }, + { + "pc": 82, + "op": "POP", + "gas": 2920990, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x32", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x182cae2c253", + "0x74", + "0x80" + ] + }, + { + "pc": 83, + "op": "JUMP", + "gas": 2920988, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x32", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x182cae2c253", + "0x74" + ] + }, + { + "pc": 116, + "op": "JUMPDEST", + "gas": 2920980, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x32", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x182cae2c253" + ] + }, + { + "pc": 117, + "op": "SWAP2", + "gas": 2920979, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x32", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x182cae2c253" + ] + }, + { + "pc": 118, + "op": "POP", + "gas": 2920976, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x32", + "0xa0", + "0x80", + "0x182cae2c253", + "0x0", + "0x0" + ] + }, + { + "pc": 119, + "op": "POP", + "gas": 2920974, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x32", + "0xa0", + "0x80", + "0x182cae2c253", + "0x0" + ] + }, + { + "pc": 120, + "op": "SWAP3", + "gas": 2920972, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x32", + "0xa0", + "0x80", + "0x182cae2c253" + ] + }, + { + "pc": 121, + "op": "SWAP2", + "gas": 2920969, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x182cae2c253", + "0xa0", + "0x80", + "0x32" + ] + }, + { + "pc": 122, + "op": "POP", + "gas": 2920966, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x182cae2c253", + "0x32", + "0x80", + "0xa0" + ] + }, + { + "pc": 123, + "op": "POP", + "gas": 2920964, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x182cae2c253", + "0x32", + "0x80" + ] + }, + { + "pc": 124, + "op": "JUMP", + "gas": 2920962, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x182cae2c253", + "0x32" + ] + }, + { + "pc": 50, + "op": "JUMPDEST", + "gas": 2920954, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x182cae2c253" + ] + }, + { + "pc": 51, + "op": "DUP1", + "gas": 2920953, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x182cae2c253" + ] + }, + { + "pc": 52, + "op": "PUSH1", + "gas": 2920950, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x182cae2c253", + "0x182cae2c253" + ] + }, + { + "pc": 54, + "op": "DUP2", + "gas": 2920947, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x182cae2c253", + "0x182cae2c253", + "0x0" + ] + }, + { + "pc": 55, + "op": "SWAP1", + "gas": 2920944, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x182cae2c253", + "0x182cae2c253", + "0x0", + "0x182cae2c253" + ] + }, + { + "pc": 56, + "op": "SSTORE", + "gas": 2920941, + "gasCost": 22100, + "depth": 2, + "stack": [ + "0x182cae2c253", + "0x182cae2c253", + "0x182cae2c253", + "0x0" + ], + "storage": { + "0x0000000000000000000000000000000000000000000000000000000000000000": "0x00000000000000000000000000000000000000000000000000000182cae2c253" + }, + "extraData": { + "proofList": [ + { + "address": "0x080b18cb659f0a532d679e660c9841e1e0991ae1", + "nonce": 1, + "balance": "0x0", + "codeHash": "0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470", + "storage": { + "key": "0x0000000000000000000000000000000000000000000000000000000000000000", + "value": "0x0000000000000000000000000000000000000000000000000000000000000000" + } + } + ] + } + }, + { + "pc": 57, + "op": "POP", + "gas": 2898841, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x182cae2c253", + "0x182cae2c253" + ] + }, + { + "pc": 58, + "op": "POP", + "gas": 2898839, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x182cae2c253" + ] + }, + { + "pc": 59, + "op": "PUSH2", + "gas": 2898837, + "gasCost": 3, + "depth": 2 + }, + { + "pc": 62, + "op": "JUMP", + "gas": 2898834, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x9e" + ] + }, + { + "pc": 158, + "op": "JUMPDEST", + "gas": 2898826, + "gasCost": 1, + "depth": 2 + }, + { + "pc": 159, + "op": "PUSH2", + "gas": 2898825, + "gasCost": 3, + "depth": 2 + }, + { + "pc": 162, + "op": "DUP1", + "gas": 2898822, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x2fe" + ] + }, + { + "pc": 163, + "op": "PUSH2", + "gas": 2898819, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x2fe", + "0x2fe" + ] + }, + { + "pc": 166, + "op": "PUSH1", + "gas": 2898816, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x2fe", + "0x2fe", + "0xad" + ] + }, + { + "pc": 168, + "op": "CODECOPY", + "gas": 2898813, + "gasCost": 133, + "depth": 2, + "stack": [ + "0x2fe", + "0x2fe", + "0xad", + "0x0" + ], + "extraData": { + "codeList": [ + "0x" + ] + } + }, + { + "pc": 169, + "op": "PUSH1", + "gas": 2898680, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x2fe" + ] + }, + { + "pc": 171, + "op": "RETURN", + "gas": 2898677, + "gasCost": 0, + "depth": 2, + "stack": [ + "0x2fe", + "0x0" + ] + }, + { + "pc": 484, + "op": "DUP1", + "gas": 2791846, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0x182cae2c253", + "0x0", + "0x80b18cb659f0a532d679e660c9841e1e0991ae1" + ] + }, + { + "pc": 485, + "op": "ISZERO", + "gas": 2791843, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0x182cae2c253", + "0x0", + "0x80b18cb659f0a532d679e660c9841e1e0991ae1", + "0x80b18cb659f0a532d679e660c9841e1e0991ae1" + ] + }, + { + "pc": 486, + "op": "DUP1", + "gas": 2791840, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0x182cae2c253", + "0x0", + "0x80b18cb659f0a532d679e660c9841e1e0991ae1", + "0x0" + ] + }, + { + "pc": 487, + "op": "ISZERO", + "gas": 2791837, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0x182cae2c253", + "0x0", + "0x80b18cb659f0a532d679e660c9841e1e0991ae1", + "0x0", + "0x0" + ] + }, + { + "pc": 488, + "op": "PUSH2", + "gas": 2791834, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0x182cae2c253", + "0x0", + "0x80b18cb659f0a532d679e660c9841e1e0991ae1", + "0x0", + "0x1" + ] + }, + { + "pc": 491, + "op": "JUMPI", + "gas": 2791831, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0x182cae2c253", + "0x0", + "0x80b18cb659f0a532d679e660c9841e1e0991ae1", + "0x0", + "0x1", + "0x1f5" + ] + }, + { + "pc": 501, + "op": "JUMPDEST", + "gas": 2791821, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0x182cae2c253", + "0x0", + "0x80b18cb659f0a532d679e660c9841e1e0991ae1", + "0x0" + ] + }, + { + "pc": 502, + "op": "POP", + "gas": 2791820, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0x182cae2c253", + "0x0", + "0x80b18cb659f0a532d679e660c9841e1e0991ae1", + "0x0" + ] + }, + { + "pc": 503, + "op": "SWAP1", + "gas": 2791818, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0x182cae2c253", + "0x0", + "0x80b18cb659f0a532d679e660c9841e1e0991ae1" + ] + }, + { + "pc": 504, + "op": "POP", + "gas": 2791815, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0x182cae2c253", + "0x80b18cb659f0a532d679e660c9841e1e0991ae1", + "0x0" + ] + }, + { + "pc": 505, + "op": "DUP1", + "gas": 2791813, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0x182cae2c253", + "0x80b18cb659f0a532d679e660c9841e1e0991ae1" + ] + }, + { + "pc": 506, + "op": "PUSH1", + "gas": 2791810, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0x182cae2c253", + "0x80b18cb659f0a532d679e660c9841e1e0991ae1", + "0x80b18cb659f0a532d679e660c9841e1e0991ae1" + ] + }, + { + "pc": 508, + "op": "DUP1", + "gas": 2791807, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0x182cae2c253", + "0x80b18cb659f0a532d679e660c9841e1e0991ae1", + "0x80b18cb659f0a532d679e660c9841e1e0991ae1", + "0x0" + ] + }, + { + "pc": 509, + "op": "PUSH2", + "gas": 2791804, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0x182cae2c253", + "0x80b18cb659f0a532d679e660c9841e1e0991ae1", + "0x80b18cb659f0a532d679e660c9841e1e0991ae1", + "0x0", + "0x0" + ] + }, + { + "pc": 512, + "op": "EXP", + "gas": 2791801, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0x182cae2c253", + "0x80b18cb659f0a532d679e660c9841e1e0991ae1", + "0x80b18cb659f0a532d679e660c9841e1e0991ae1", + "0x0", + "0x0", + "0x100" + ] + }, + { + "pc": 513, + "op": "DUP2", + "gas": 2791791, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0x182cae2c253", + "0x80b18cb659f0a532d679e660c9841e1e0991ae1", + "0x80b18cb659f0a532d679e660c9841e1e0991ae1", + "0x0", + "0x1" + ] + }, + { + "pc": 514, + "op": "SLOAD", + "gas": 2791788, + "gasCost": 2100, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0x182cae2c253", + "0x80b18cb659f0a532d679e660c9841e1e0991ae1", + "0x80b18cb659f0a532d679e660c9841e1e0991ae1", + "0x0", + "0x1", + "0x0" + ], + "storage": { + "0x0000000000000000000000000000000000000000000000000000000000000000": "0x0000000000000000000000005042ffc05ee4252b598f8c7e5a765c14b0ad7019" + }, + "extraData": { + "proofList": [ + { + "address": "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "nonce": 11, + "balance": "0x0", + "codeHash": "0x0197f7ef0aab588fbcc511af4e7d236206b90e8fbe1adfc7afe76c181cc4e9f0", + "storage": { + "key": "0x0000000000000000000000000000000000000000000000000000000000000000", + "value": "0x0000000000000000000000005042ffc05ee4252b598f8c7e5a765c14b0ad7019" + } + } + ] + } + }, + { + "pc": 515, + "op": "DUP2", + "gas": 2789688, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0x182cae2c253", + "0x80b18cb659f0a532d679e660c9841e1e0991ae1", + "0x80b18cb659f0a532d679e660c9841e1e0991ae1", + "0x0", + "0x1", + "0x5042ffc05ee4252b598f8c7e5a765c14b0ad7019" + ] + }, + { + "pc": 516, + "op": "PUSH20", + "gas": 2789685, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0x182cae2c253", + "0x80b18cb659f0a532d679e660c9841e1e0991ae1", + "0x80b18cb659f0a532d679e660c9841e1e0991ae1", + "0x0", + "0x1", + "0x5042ffc05ee4252b598f8c7e5a765c14b0ad7019", + "0x1" + ] + }, + { + "pc": 537, + "op": "MUL", + "gas": 2789682, + "gasCost": 5, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0x182cae2c253", + "0x80b18cb659f0a532d679e660c9841e1e0991ae1", + "0x80b18cb659f0a532d679e660c9841e1e0991ae1", + "0x0", + "0x1", + "0x5042ffc05ee4252b598f8c7e5a765c14b0ad7019", + "0x1", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 538, + "op": "NOT", + "gas": 2789677, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0x182cae2c253", + "0x80b18cb659f0a532d679e660c9841e1e0991ae1", + "0x80b18cb659f0a532d679e660c9841e1e0991ae1", + "0x0", + "0x1", + "0x5042ffc05ee4252b598f8c7e5a765c14b0ad7019", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 539, + "op": "AND", + "gas": 2789674, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0x182cae2c253", + "0x80b18cb659f0a532d679e660c9841e1e0991ae1", + "0x80b18cb659f0a532d679e660c9841e1e0991ae1", + "0x0", + "0x1", + "0x5042ffc05ee4252b598f8c7e5a765c14b0ad7019", + "0xffffffffffffffffffffffff0000000000000000000000000000000000000000" + ] + }, + { + "pc": 540, + "op": "SWAP1", + "gas": 2789671, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0x182cae2c253", + "0x80b18cb659f0a532d679e660c9841e1e0991ae1", + "0x80b18cb659f0a532d679e660c9841e1e0991ae1", + "0x0", + "0x1", + "0x0" + ] + }, + { + "pc": 541, + "op": "DUP4", + "gas": 2789668, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0x182cae2c253", + "0x80b18cb659f0a532d679e660c9841e1e0991ae1", + "0x80b18cb659f0a532d679e660c9841e1e0991ae1", + "0x0", + "0x0", + "0x1" + ] + }, + { + "pc": 542, + "op": "PUSH20", + "gas": 2789665, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0x182cae2c253", + "0x80b18cb659f0a532d679e660c9841e1e0991ae1", + "0x80b18cb659f0a532d679e660c9841e1e0991ae1", + "0x0", + "0x0", + "0x1", + "0x80b18cb659f0a532d679e660c9841e1e0991ae1" + ] + }, + { + "pc": 563, + "op": "AND", + "gas": 2789662, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0x182cae2c253", + "0x80b18cb659f0a532d679e660c9841e1e0991ae1", + "0x80b18cb659f0a532d679e660c9841e1e0991ae1", + "0x0", + "0x0", + "0x1", + "0x80b18cb659f0a532d679e660c9841e1e0991ae1", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 564, + "op": "MUL", + "gas": 2789659, + "gasCost": 5, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0x182cae2c253", + "0x80b18cb659f0a532d679e660c9841e1e0991ae1", + "0x80b18cb659f0a532d679e660c9841e1e0991ae1", + "0x0", + "0x0", + "0x1", + "0x80b18cb659f0a532d679e660c9841e1e0991ae1" + ] + }, + { + "pc": 565, + "op": "OR", + "gas": 2789654, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0x182cae2c253", + "0x80b18cb659f0a532d679e660c9841e1e0991ae1", + "0x80b18cb659f0a532d679e660c9841e1e0991ae1", + "0x0", + "0x0", + "0x80b18cb659f0a532d679e660c9841e1e0991ae1" + ] + }, + { + "pc": 566, + "op": "SWAP1", + "gas": 2789651, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0x182cae2c253", + "0x80b18cb659f0a532d679e660c9841e1e0991ae1", + "0x80b18cb659f0a532d679e660c9841e1e0991ae1", + "0x0", + "0x80b18cb659f0a532d679e660c9841e1e0991ae1" + ] + }, + { + "pc": 567, + "op": "SSTORE", + "gas": 2789648, + "gasCost": 2900, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0x182cae2c253", + "0x80b18cb659f0a532d679e660c9841e1e0991ae1", + "0x80b18cb659f0a532d679e660c9841e1e0991ae1", + "0x80b18cb659f0a532d679e660c9841e1e0991ae1", + "0x0" + ], + "storage": { + "0x0000000000000000000000000000000000000000000000000000000000000000": "0x000000000000000000000000080b18cb659f0a532d679e660c9841e1e0991ae1" + }, + "extraData": { + "proofList": [ + { + "address": "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "nonce": 11, + "balance": "0x0", + "codeHash": "0x0197f7ef0aab588fbcc511af4e7d236206b90e8fbe1adfc7afe76c181cc4e9f0", + "storage": { + "key": "0x0000000000000000000000000000000000000000000000000000000000000000", + "value": "0x0000000000000000000000005042ffc05ee4252b598f8c7e5a765c14b0ad7019" + } + } + ] + } + }, + { + "pc": 568, + "op": "POP", + "gas": 2786748, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0x182cae2c253", + "0x80b18cb659f0a532d679e660c9841e1e0991ae1", + "0x80b18cb659f0a532d679e660c9841e1e0991ae1" + ] + }, + { + "pc": 569, + "op": "POP", + "gas": 2786746, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0x182cae2c253", + "0x80b18cb659f0a532d679e660c9841e1e0991ae1" + ] + }, + { + "pc": 570, + "op": "POP", + "gas": 2786744, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4", + "0x182cae2c253" + ] + }, + { + "pc": 571, + "op": "JUMP", + "gas": 2786742, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xc5b0437c", + "0xf4" + ] + }, + { + "pc": 244, + "op": "JUMPDEST", + "gas": 2786734, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xc5b0437c" + ] + }, + { + "pc": 245, + "op": "STOP", + "gas": 2786733, + "gasCost": 0, + "depth": 1, + "stack": [ + "0xc5b0437c" + ] + } + ] + }, + { + "gas": 241199, + "failed": false, + "from": { + "address": "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "nonce": 224, + "balance": "0x56bc75e2d630ffffffffffffffffffffffffffffffffffff334673d1c657bc", + "codeHash": "0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470" + }, + "to": { + "address": "0xda1ad647621a1984ce21b0bab020005fe3b5f4da", + "nonce": 1, + "balance": "0x0", + "codeHash": "0x00c2455a35210099bbbb95bdd1b6a9bfc4702d98ba0f971009391cd8f970e729" + }, + "accountAfter": [ + { + "address": "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "nonce": 225, + "balance": "0x56bc75e2d630ffffffffffffffffffffffffffffffffffff334673ca53e4a2", + "codeHash": "0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470" + }, + { + "address": "0xda1ad647621a1984ce21b0bab020005fe3b5f4da", + "nonce": 1, + "balance": "0x0", + "codeHash": "0x00c2455a35210099bbbb95bdd1b6a9bfc4702d98ba0f971009391cd8f970e729" + } + ], + "codeHash": "0x00c2455a35210099bbbb95bdd1b6a9bfc4702d98ba0f971009391cd8f970e729", + "byteCode": "0x608060405234801561001057600080fd5b50600436106100625760003560e01c8063200d2ed214610067578063295a8edc146100855780633719f511146100a15780633e23ee43146100bd5780635696ec35146100db5780635dec31ca146100f7575b600080fd5b61006f610113565b60405161007c9190610665565b60405180910390f35b61009f600480360381019061009a91906105fb565b61013d565b005b6100bb60048036038101906100b691906105fb565b610269565b005b6100c561035e565b6040516100d29190610665565b60405180910390f35b6100f560048036038101906100f091906105fb565b610387565b005b610111600480360381019061010c91906105fb565b61047c565b005b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff166320408cd9836040518263ffffffff1660e01b815260040161019c91906106a0565b602060405180830381600087803b1580156101b657600080fd5b505af11580156101ca573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906101ee91906105d2565b600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161026090610680565b60405180910390fd5b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff166313ab33b1836040518263ffffffff1660e01b81526004016102c891906106a0565b602060405180830381600087803b1580156102e257600080fd5b505af11580156102f6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061031a91906105d2565b600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff166320408cd9836040518263ffffffff1660e01b81526004016103e691906106a0565b602060405180830381600087803b15801561040057600080fd5b505af1158015610414573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061043891906105d2565b600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff166313ab33b1836040518263ffffffff1660e01b81526004016104db91906106a0565b602060405180830381600087803b1580156104f557600080fd5b505af1158015610509573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061052d91906105d2565b600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161059f90610680565b60405180910390fd5b6000815190506105b781610731565b92915050565b6000813590506105cc81610748565b92915050565b6000602082840312156105e457600080fd5b60006105f2848285016105a8565b91505092915050565b60006020828403121561060d57600080fd5b600061061b848285016105bd565b91505092915050565b61062d816106cc565b82525050565b6000610640600c836106bb565b915061064b82610708565b602082019050919050565b61065f816106fe565b82525050565b600060208201905061067a6000830184610624565b92915050565b6000602082019050818103600083015261069981610633565b9050919050565b60006020820190506106b56000830184610656565b92915050565b600082825260208201905092915050565b60006106d7826106de565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b7f64656c696265726174656c790000000000000000000000000000000000000000600082015250565b61073a816106cc565b811461074557600080fd5b50565b610751816106fe565b811461075c57600080fd5b5056fea26469706673582212206d22486e2deddb5e91f0979599a7e467825532693839695bd2c007645b06ee3f64736f6c63430008040033", + "structLogs": [ + { + "pc": 0, + "op": "PUSH1", + "gas": 3000520, + "gasCost": 3, + "depth": 1 + }, + { + "pc": 2, + "op": "PUSH1", + "gas": 3000517, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80" + ] + }, + { + "pc": 4, + "op": "MSTORE", + "gas": 3000514, + "gasCost": 12, + "depth": 1, + "stack": [ + "0x80", + "0x40" + ] + }, + { + "pc": 5, + "op": "CALLVALUE", + "gas": 3000502, + "gasCost": 2, + "depth": 1 + }, + { + "pc": 6, + "op": "DUP1", + "gas": 3000500, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 7, + "op": "ISZERO", + "gas": 3000497, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0", + "0x0" + ] + }, + { + "pc": 8, + "op": "PUSH2", + "gas": 3000494, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0", + "0x1" + ] + }, + { + "pc": 11, + "op": "JUMPI", + "gas": 3000491, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x0", + "0x1", + "0x10" + ] + }, + { + "pc": 16, + "op": "JUMPDEST", + "gas": 3000481, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 17, + "op": "POP", + "gas": 3000480, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 18, + "op": "PUSH1", + "gas": 3000478, + "gasCost": 3, + "depth": 1 + }, + { + "pc": 20, + "op": "CALLDATASIZE", + "gas": 3000475, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x4" + ] + }, + { + "pc": 21, + "op": "LT", + "gas": 3000473, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4", + "0x24" + ] + }, + { + "pc": 22, + "op": "PUSH2", + "gas": 3000470, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 25, + "op": "JUMPI", + "gas": 3000467, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x0", + "0x62" + ] + }, + { + "pc": 26, + "op": "PUSH1", + "gas": 3000457, + "gasCost": 3, + "depth": 1 + }, + { + "pc": 28, + "op": "CALLDATALOAD", + "gas": 3000454, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 29, + "op": "PUSH1", + "gas": 3000451, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec3500000000000000000000000000000000000000000000000000000182" + ] + }, + { + "pc": 31, + "op": "SHR", + "gas": 3000448, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec3500000000000000000000000000000000000000000000000000000182", + "0xe0" + ] + }, + { + "pc": 32, + "op": "DUP1", + "gas": 3000445, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35" + ] + }, + { + "pc": 33, + "op": "PUSH4", + "gas": 3000442, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0x5696ec35" + ] + }, + { + "pc": 38, + "op": "EQ", + "gas": 3000439, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0x5696ec35", + "0x200d2ed2" + ] + }, + { + "pc": 39, + "op": "PUSH2", + "gas": 3000436, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0x0" + ] + }, + { + "pc": 42, + "op": "JUMPI", + "gas": 3000433, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x5696ec35", + "0x0", + "0x67" + ] + }, + { + "pc": 43, + "op": "DUP1", + "gas": 3000423, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35" + ] + }, + { + "pc": 44, + "op": "PUSH4", + "gas": 3000420, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0x5696ec35" + ] + }, + { + "pc": 49, + "op": "EQ", + "gas": 3000417, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0x5696ec35", + "0x295a8edc" + ] + }, + { + "pc": 50, + "op": "PUSH2", + "gas": 3000414, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0x0" + ] + }, + { + "pc": 53, + "op": "JUMPI", + "gas": 3000411, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x5696ec35", + "0x0", + "0x85" + ] + }, + { + "pc": 54, + "op": "DUP1", + "gas": 3000401, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35" + ] + }, + { + "pc": 55, + "op": "PUSH4", + "gas": 3000398, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0x5696ec35" + ] + }, + { + "pc": 60, + "op": "EQ", + "gas": 3000395, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0x5696ec35", + "0x3719f511" + ] + }, + { + "pc": 61, + "op": "PUSH2", + "gas": 3000392, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0x0" + ] + }, + { + "pc": 64, + "op": "JUMPI", + "gas": 3000389, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x5696ec35", + "0x0", + "0xa1" + ] + }, + { + "pc": 65, + "op": "DUP1", + "gas": 3000379, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35" + ] + }, + { + "pc": 66, + "op": "PUSH4", + "gas": 3000376, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0x5696ec35" + ] + }, + { + "pc": 71, + "op": "EQ", + "gas": 3000373, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0x5696ec35", + "0x3e23ee43" + ] + }, + { + "pc": 72, + "op": "PUSH2", + "gas": 3000370, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0x0" + ] + }, + { + "pc": 75, + "op": "JUMPI", + "gas": 3000367, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x5696ec35", + "0x0", + "0xbd" + ] + }, + { + "pc": 76, + "op": "DUP1", + "gas": 3000357, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35" + ] + }, + { + "pc": 77, + "op": "PUSH4", + "gas": 3000354, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0x5696ec35" + ] + }, + { + "pc": 82, + "op": "EQ", + "gas": 3000351, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0x5696ec35", + "0x5696ec35" + ] + }, + { + "pc": 83, + "op": "PUSH2", + "gas": 3000348, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0x1" + ] + }, + { + "pc": 86, + "op": "JUMPI", + "gas": 3000345, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x5696ec35", + "0x1", + "0xdb" + ] + }, + { + "pc": 219, + "op": "JUMPDEST", + "gas": 3000335, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x5696ec35" + ] + }, + { + "pc": 220, + "op": "PUSH2", + "gas": 3000334, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35" + ] + }, + { + "pc": 223, + "op": "PUSH1", + "gas": 3000331, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5" + ] + }, + { + "pc": 225, + "op": "DUP1", + "gas": 3000328, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x4" + ] + }, + { + "pc": 226, + "op": "CALLDATASIZE", + "gas": 3000325, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x4", + "0x4" + ] + }, + { + "pc": 227, + "op": "SUB", + "gas": 3000323, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x4", + "0x4", + "0x24" + ] + }, + { + "pc": 228, + "op": "DUP2", + "gas": 3000320, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x4", + "0x20" + ] + }, + { + "pc": 229, + "op": "ADD", + "gas": 3000317, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x4", + "0x20", + "0x4" + ] + }, + { + "pc": 230, + "op": "SWAP1", + "gas": 3000314, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x4", + "0x24" + ] + }, + { + "pc": 231, + "op": "PUSH2", + "gas": 3000311, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x24", + "0x4" + ] + }, + { + "pc": 234, + "op": "SWAP2", + "gas": 3000308, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x24", + "0x4", + "0xf0" + ] + }, + { + "pc": 235, + "op": "SWAP1", + "gas": 3000305, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0xf0", + "0x4", + "0x24" + ] + }, + { + "pc": 236, + "op": "PUSH2", + "gas": 3000302, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0xf0", + "0x24", + "0x4" + ] + }, + { + "pc": 239, + "op": "JUMP", + "gas": 3000299, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0xf0", + "0x24", + "0x4", + "0x5fb" + ] + }, + { + "pc": 1531, + "op": "JUMPDEST", + "gas": 3000291, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0xf0", + "0x24", + "0x4" + ] + }, + { + "pc": 1532, + "op": "PUSH1", + "gas": 3000290, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0xf0", + "0x24", + "0x4" + ] + }, + { + "pc": 1534, + "op": "PUSH1", + "gas": 3000287, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0xf0", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 1536, + "op": "DUP3", + "gas": 3000284, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0xf0", + "0x24", + "0x4", + "0x0", + "0x20" + ] + }, + { + "pc": 1537, + "op": "DUP5", + "gas": 3000281, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0xf0", + "0x24", + "0x4", + "0x0", + "0x20", + "0x4" + ] + }, + { + "pc": 1538, + "op": "SUB", + "gas": 3000278, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0xf0", + "0x24", + "0x4", + "0x0", + "0x20", + "0x4", + "0x24" + ] + }, + { + "pc": 1539, + "op": "SLT", + "gas": 3000275, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0xf0", + "0x24", + "0x4", + "0x0", + "0x20", + "0x20" + ] + }, + { + "pc": 1540, + "op": "ISZERO", + "gas": 3000272, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0xf0", + "0x24", + "0x4", + "0x0", + "0x0" + ] + }, + { + "pc": 1541, + "op": "PUSH2", + "gas": 3000269, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0xf0", + "0x24", + "0x4", + "0x0", + "0x1" + ] + }, + { + "pc": 1544, + "op": "JUMPI", + "gas": 3000266, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0xf0", + "0x24", + "0x4", + "0x0", + "0x1", + "0x60d" + ] + }, + { + "pc": 1549, + "op": "JUMPDEST", + "gas": 3000256, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0xf0", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 1550, + "op": "PUSH1", + "gas": 3000255, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0xf0", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 1552, + "op": "PUSH2", + "gas": 3000252, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0xf0", + "0x24", + "0x4", + "0x0", + "0x0" + ] + }, + { + "pc": 1555, + "op": "DUP5", + "gas": 3000249, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0xf0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x61b" + ] + }, + { + "pc": 1556, + "op": "DUP3", + "gas": 3000246, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0xf0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x61b", + "0x24" + ] + }, + { + "pc": 1557, + "op": "DUP6", + "gas": 3000243, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0xf0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x61b", + "0x24", + "0x0" + ] + }, + { + "pc": 1558, + "op": "ADD", + "gas": 3000240, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0xf0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x61b", + "0x24", + "0x0", + "0x4" + ] + }, + { + "pc": 1559, + "op": "PUSH2", + "gas": 3000237, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0xf0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x61b", + "0x24", + "0x4" + ] + }, + { + "pc": 1562, + "op": "JUMP", + "gas": 3000234, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0xf0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x61b", + "0x24", + "0x4", + "0x5bd" + ] + }, + { + "pc": 1469, + "op": "JUMPDEST", + "gas": 3000226, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0xf0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x61b", + "0x24", + "0x4" + ] + }, + { + "pc": 1470, + "op": "PUSH1", + "gas": 3000225, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0xf0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x61b", + "0x24", + "0x4" + ] + }, + { + "pc": 1472, + "op": "DUP2", + "gas": 3000222, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0xf0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x61b", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 1473, + "op": "CALLDATALOAD", + "gas": 3000219, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0xf0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x61b", + "0x24", + "0x4", + "0x0", + "0x4" + ] + }, + { + "pc": 1474, + "op": "SWAP1", + "gas": 3000216, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0xf0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x61b", + "0x24", + "0x4", + "0x0", + "0x182cae2c253" + ] + }, + { + "pc": 1475, + "op": "POP", + "gas": 3000213, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0xf0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x61b", + "0x24", + "0x4", + "0x182cae2c253", + "0x0" + ] + }, + { + "pc": 1476, + "op": "PUSH2", + "gas": 3000211, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0xf0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x61b", + "0x24", + "0x4", + "0x182cae2c253" + ] + }, + { + "pc": 1479, + "op": "DUP2", + "gas": 3000208, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0xf0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x61b", + "0x24", + "0x4", + "0x182cae2c253", + "0x5cc" + ] + }, + { + "pc": 1480, + "op": "PUSH2", + "gas": 3000205, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0xf0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x61b", + "0x24", + "0x4", + "0x182cae2c253", + "0x5cc", + "0x182cae2c253" + ] + }, + { + "pc": 1483, + "op": "JUMP", + "gas": 3000202, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0xf0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x61b", + "0x24", + "0x4", + "0x182cae2c253", + "0x5cc", + "0x182cae2c253", + "0x748" + ] + }, + { + "pc": 1864, + "op": "JUMPDEST", + "gas": 3000194, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0xf0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x61b", + "0x24", + "0x4", + "0x182cae2c253", + "0x5cc", + "0x182cae2c253" + ] + }, + { + "pc": 1865, + "op": "PUSH2", + "gas": 3000193, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0xf0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x61b", + "0x24", + "0x4", + "0x182cae2c253", + "0x5cc", + "0x182cae2c253" + ] + }, + { + "pc": 1868, + "op": "DUP2", + "gas": 3000190, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0xf0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x61b", + "0x24", + "0x4", + "0x182cae2c253", + "0x5cc", + "0x182cae2c253", + "0x751" + ] + }, + { + "pc": 1869, + "op": "PUSH2", + "gas": 3000187, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0xf0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x61b", + "0x24", + "0x4", + "0x182cae2c253", + "0x5cc", + "0x182cae2c253", + "0x751", + "0x182cae2c253" + ] + }, + { + "pc": 1872, + "op": "JUMP", + "gas": 3000184, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0xf0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x61b", + "0x24", + "0x4", + "0x182cae2c253", + "0x5cc", + "0x182cae2c253", + "0x751", + "0x182cae2c253", + "0x6fe" + ] + }, + { + "pc": 1790, + "op": "JUMPDEST", + "gas": 3000176, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0xf0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x61b", + "0x24", + "0x4", + "0x182cae2c253", + "0x5cc", + "0x182cae2c253", + "0x751", + "0x182cae2c253" + ] + }, + { + "pc": 1791, + "op": "PUSH1", + "gas": 3000175, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0xf0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x61b", + "0x24", + "0x4", + "0x182cae2c253", + "0x5cc", + "0x182cae2c253", + "0x751", + "0x182cae2c253" + ] + }, + { + "pc": 1793, + "op": "DUP2", + "gas": 3000172, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0xf0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x61b", + "0x24", + "0x4", + "0x182cae2c253", + "0x5cc", + "0x182cae2c253", + "0x751", + "0x182cae2c253", + "0x0" + ] + }, + { + "pc": 1794, + "op": "SWAP1", + "gas": 3000169, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0xf0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x61b", + "0x24", + "0x4", + "0x182cae2c253", + "0x5cc", + "0x182cae2c253", + "0x751", + "0x182cae2c253", + "0x0", + "0x182cae2c253" + ] + }, + { + "pc": 1795, + "op": "POP", + "gas": 3000166, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0xf0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x61b", + "0x24", + "0x4", + "0x182cae2c253", + "0x5cc", + "0x182cae2c253", + "0x751", + "0x182cae2c253", + "0x182cae2c253", + "0x0" + ] + }, + { + "pc": 1796, + "op": "SWAP2", + "gas": 3000164, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0xf0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x61b", + "0x24", + "0x4", + "0x182cae2c253", + "0x5cc", + "0x182cae2c253", + "0x751", + "0x182cae2c253", + "0x182cae2c253" + ] + }, + { + "pc": 1797, + "op": "SWAP1", + "gas": 3000161, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0xf0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x61b", + "0x24", + "0x4", + "0x182cae2c253", + "0x5cc", + "0x182cae2c253", + "0x182cae2c253", + "0x182cae2c253", + "0x751" + ] + }, + { + "pc": 1798, + "op": "POP", + "gas": 3000158, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0xf0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x61b", + "0x24", + "0x4", + "0x182cae2c253", + "0x5cc", + "0x182cae2c253", + "0x182cae2c253", + "0x751", + "0x182cae2c253" + ] + }, + { + "pc": 1799, + "op": "JUMP", + "gas": 3000156, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0xf0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x61b", + "0x24", + "0x4", + "0x182cae2c253", + "0x5cc", + "0x182cae2c253", + "0x182cae2c253", + "0x751" + ] + }, + { + "pc": 1873, + "op": "JUMPDEST", + "gas": 3000148, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0xf0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x61b", + "0x24", + "0x4", + "0x182cae2c253", + "0x5cc", + "0x182cae2c253", + "0x182cae2c253" + ] + }, + { + "pc": 1874, + "op": "DUP2", + "gas": 3000147, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0xf0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x61b", + "0x24", + "0x4", + "0x182cae2c253", + "0x5cc", + "0x182cae2c253", + "0x182cae2c253" + ] + }, + { + "pc": 1875, + "op": "EQ", + "gas": 3000144, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0xf0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x61b", + "0x24", + "0x4", + "0x182cae2c253", + "0x5cc", + "0x182cae2c253", + "0x182cae2c253", + "0x182cae2c253" + ] + }, + { + "pc": 1876, + "op": "PUSH2", + "gas": 3000141, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0xf0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x61b", + "0x24", + "0x4", + "0x182cae2c253", + "0x5cc", + "0x182cae2c253", + "0x1" + ] + }, + { + "pc": 1879, + "op": "JUMPI", + "gas": 3000138, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0xf0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x61b", + "0x24", + "0x4", + "0x182cae2c253", + "0x5cc", + "0x182cae2c253", + "0x1", + "0x75c" + ] + }, + { + "pc": 1884, + "op": "JUMPDEST", + "gas": 3000128, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0xf0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x61b", + "0x24", + "0x4", + "0x182cae2c253", + "0x5cc", + "0x182cae2c253" + ] + }, + { + "pc": 1885, + "op": "POP", + "gas": 3000127, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0xf0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x61b", + "0x24", + "0x4", + "0x182cae2c253", + "0x5cc", + "0x182cae2c253" + ] + }, + { + "pc": 1886, + "op": "JUMP", + "gas": 3000125, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0xf0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x61b", + "0x24", + "0x4", + "0x182cae2c253", + "0x5cc" + ] + }, + { + "pc": 1484, + "op": "JUMPDEST", + "gas": 3000117, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0xf0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x61b", + "0x24", + "0x4", + "0x182cae2c253" + ] + }, + { + "pc": 1485, + "op": "SWAP3", + "gas": 3000116, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0xf0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x61b", + "0x24", + "0x4", + "0x182cae2c253" + ] + }, + { + "pc": 1486, + "op": "SWAP2", + "gas": 3000113, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0xf0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x182cae2c253", + "0x24", + "0x4", + "0x61b" + ] + }, + { + "pc": 1487, + "op": "POP", + "gas": 3000110, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0xf0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x182cae2c253", + "0x61b", + "0x4", + "0x24" + ] + }, + { + "pc": 1488, + "op": "POP", + "gas": 3000108, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0xf0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x182cae2c253", + "0x61b", + "0x4" + ] + }, + { + "pc": 1489, + "op": "JUMP", + "gas": 3000106, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0xf0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x182cae2c253", + "0x61b" + ] + }, + { + "pc": 1563, + "op": "JUMPDEST", + "gas": 3000098, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0xf0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x182cae2c253" + ] + }, + { + "pc": 1564, + "op": "SWAP2", + "gas": 3000097, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0xf0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x182cae2c253" + ] + }, + { + "pc": 1565, + "op": "POP", + "gas": 3000094, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0xf0", + "0x24", + "0x4", + "0x182cae2c253", + "0x0", + "0x0" + ] + }, + { + "pc": 1566, + "op": "POP", + "gas": 3000092, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0xf0", + "0x24", + "0x4", + "0x182cae2c253", + "0x0" + ] + }, + { + "pc": 1567, + "op": "SWAP3", + "gas": 3000090, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0xf0", + "0x24", + "0x4", + "0x182cae2c253" + ] + }, + { + "pc": 1568, + "op": "SWAP2", + "gas": 3000087, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x24", + "0x4", + "0xf0" + ] + }, + { + "pc": 1569, + "op": "POP", + "gas": 3000084, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0xf0", + "0x4", + "0x24" + ] + }, + { + "pc": 1570, + "op": "POP", + "gas": 3000082, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0xf0", + "0x4" + ] + }, + { + "pc": 1571, + "op": "JUMP", + "gas": 3000080, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0xf0" + ] + }, + { + "pc": 240, + "op": "JUMPDEST", + "gas": 3000072, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253" + ] + }, + { + "pc": 241, + "op": "PUSH2", + "gas": 3000071, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253" + ] + }, + { + "pc": 244, + "op": "JUMP", + "gas": 3000068, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x387" + ] + }, + { + "pc": 903, + "op": "JUMPDEST", + "gas": 3000060, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253" + ] + }, + { + "pc": 904, + "op": "PUSH1", + "gas": 3000059, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253" + ] + }, + { + "pc": 906, + "op": "DUP1", + "gas": 3000056, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x0" + ] + }, + { + "pc": 907, + "op": "PUSH1", + "gas": 3000053, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x0", + "0x0" + ] + }, + { + "pc": 909, + "op": "SWAP1", + "gas": 3000050, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 910, + "op": "SLOAD", + "gas": 3000047, + "gasCost": 2100, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x0", + "0x0", + "0x0" + ], + "storage": { + "0x0000000000000000000000000000000000000000000000000000000000000000": "0x000000000000000000000000467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a" + }, + "extraData": { + "proofList": [ + { + "address": "0xda1ad647621a1984ce21b0bab020005fe3b5f4da", + "nonce": 1, + "balance": "0x0", + "codeHash": "0x00c2455a35210099bbbb95bdd1b6a9bfc4702d98ba0f971009391cd8f970e729", + "storage": { + "key": "0x0000000000000000000000000000000000000000000000000000000000000000", + "value": "0x000000000000000000000000467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a" + } + } + ] + } + }, + { + "pc": 911, + "op": "SWAP1", + "gas": 2997947, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x0", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a" + ] + }, + { + "pc": 912, + "op": "PUSH2", + "gas": 2997944, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x0" + ] + }, + { + "pc": 915, + "op": "EXP", + "gas": 2997941, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x0", + "0x100" + ] + }, + { + "pc": 916, + "op": "SWAP1", + "gas": 2997931, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x1" + ] + }, + { + "pc": 917, + "op": "DIV", + "gas": 2997928, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x0", + "0x1", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a" + ] + }, + { + "pc": 918, + "op": "PUSH20", + "gas": 2997923, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a" + ] + }, + { + "pc": 939, + "op": "AND", + "gas": 2997920, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 940, + "op": "SWAP1", + "gas": 2997917, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a" + ] + }, + { + "pc": 941, + "op": "POP", + "gas": 2997914, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x0" + ] + }, + { + "pc": 942, + "op": "DUP1", + "gas": 2997912, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a" + ] + }, + { + "pc": 943, + "op": "PUSH20", + "gas": 2997909, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a" + ] + }, + { + "pc": 964, + "op": "AND", + "gas": 2997906, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 965, + "op": "PUSH4", + "gas": 2997903, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a" + ] + }, + { + "pc": 970, + "op": "DUP4", + "gas": 2997900, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x20408cd9" + ] + }, + { + "pc": 971, + "op": "PUSH1", + "gas": 2997897, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x20408cd9", + "0x182cae2c253" + ] + }, + { + "pc": 973, + "op": "MLOAD", + "gas": 2997894, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x20408cd9", + "0x182cae2c253", + "0x40" + ] + }, + { + "pc": 974, + "op": "DUP3", + "gas": 2997891, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x20408cd9", + "0x182cae2c253", + "0x80" + ] + }, + { + "pc": 975, + "op": "PUSH4", + "gas": 2997888, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x20408cd9", + "0x182cae2c253", + "0x80", + "0x20408cd9" + ] + }, + { + "pc": 980, + "op": "AND", + "gas": 2997885, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x20408cd9", + "0x182cae2c253", + "0x80", + "0x20408cd9", + "0xffffffff" + ] + }, + { + "pc": 981, + "op": "PUSH1", + "gas": 2997882, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x20408cd9", + "0x182cae2c253", + "0x80", + "0x20408cd9" + ] + }, + { + "pc": 983, + "op": "SHL", + "gas": 2997879, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x20408cd9", + "0x182cae2c253", + "0x80", + "0x20408cd9", + "0xe0" + ] + }, + { + "pc": 984, + "op": "DUP2", + "gas": 2997876, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x20408cd9", + "0x182cae2c253", + "0x80", + "0x20408cd900000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 985, + "op": "MSTORE", + "gas": 2997873, + "gasCost": 9, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x20408cd9", + "0x182cae2c253", + "0x80", + "0x20408cd900000000000000000000000000000000000000000000000000000000", + "0x80" + ] + }, + { + "pc": 986, + "op": "PUSH1", + "gas": 2997864, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x20408cd9", + "0x182cae2c253", + "0x80" + ] + }, + { + "pc": 988, + "op": "ADD", + "gas": 2997861, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x20408cd9", + "0x182cae2c253", + "0x80", + "0x4" + ] + }, + { + "pc": 989, + "op": "PUSH2", + "gas": 2997858, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x20408cd9", + "0x182cae2c253", + "0x84" + ] + }, + { + "pc": 992, + "op": "SWAP2", + "gas": 2997855, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x20408cd9", + "0x182cae2c253", + "0x84", + "0x3e6" + ] + }, + { + "pc": 993, + "op": "SWAP1", + "gas": 2997852, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x20408cd9", + "0x3e6", + "0x84", + "0x182cae2c253" + ] + }, + { + "pc": 994, + "op": "PUSH2", + "gas": 2997849, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x20408cd9", + "0x3e6", + "0x182cae2c253", + "0x84" + ] + }, + { + "pc": 997, + "op": "JUMP", + "gas": 2997846, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x20408cd9", + "0x3e6", + "0x182cae2c253", + "0x84", + "0x6a0" + ] + }, + { + "pc": 1696, + "op": "JUMPDEST", + "gas": 2997838, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x20408cd9", + "0x3e6", + "0x182cae2c253", + "0x84" + ] + }, + { + "pc": 1697, + "op": "PUSH1", + "gas": 2997837, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x20408cd9", + "0x3e6", + "0x182cae2c253", + "0x84" + ] + }, + { + "pc": 1699, + "op": "PUSH1", + "gas": 2997834, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x20408cd9", + "0x3e6", + "0x182cae2c253", + "0x84", + "0x0" + ] + }, + { + "pc": 1701, + "op": "DUP3", + "gas": 2997831, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x20408cd9", + "0x3e6", + "0x182cae2c253", + "0x84", + "0x0", + "0x20" + ] + }, + { + "pc": 1702, + "op": "ADD", + "gas": 2997828, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x20408cd9", + "0x3e6", + "0x182cae2c253", + "0x84", + "0x0", + "0x20", + "0x84" + ] + }, + { + "pc": 1703, + "op": "SWAP1", + "gas": 2997825, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x20408cd9", + "0x3e6", + "0x182cae2c253", + "0x84", + "0x0", + "0xa4" + ] + }, + { + "pc": 1704, + "op": "POP", + "gas": 2997822, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x20408cd9", + "0x3e6", + "0x182cae2c253", + "0x84", + "0xa4", + "0x0" + ] + }, + { + "pc": 1705, + "op": "PUSH2", + "gas": 2997820, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x20408cd9", + "0x3e6", + "0x182cae2c253", + "0x84", + "0xa4" + ] + }, + { + "pc": 1708, + "op": "PUSH1", + "gas": 2997817, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x20408cd9", + "0x3e6", + "0x182cae2c253", + "0x84", + "0xa4", + "0x6b5" + ] + }, + { + "pc": 1710, + "op": "DUP4", + "gas": 2997814, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x20408cd9", + "0x3e6", + "0x182cae2c253", + "0x84", + "0xa4", + "0x6b5", + "0x0" + ] + }, + { + "pc": 1711, + "op": "ADD", + "gas": 2997811, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x20408cd9", + "0x3e6", + "0x182cae2c253", + "0x84", + "0xa4", + "0x6b5", + "0x0", + "0x84" + ] + }, + { + "pc": 1712, + "op": "DUP5", + "gas": 2997808, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x20408cd9", + "0x3e6", + "0x182cae2c253", + "0x84", + "0xa4", + "0x6b5", + "0x84" + ] + }, + { + "pc": 1713, + "op": "PUSH2", + "gas": 2997805, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x20408cd9", + "0x3e6", + "0x182cae2c253", + "0x84", + "0xa4", + "0x6b5", + "0x84", + "0x182cae2c253" + ] + }, + { + "pc": 1716, + "op": "JUMP", + "gas": 2997802, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x20408cd9", + "0x3e6", + "0x182cae2c253", + "0x84", + "0xa4", + "0x6b5", + "0x84", + "0x182cae2c253", + "0x656" + ] + }, + { + "pc": 1622, + "op": "JUMPDEST", + "gas": 2997794, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x20408cd9", + "0x3e6", + "0x182cae2c253", + "0x84", + "0xa4", + "0x6b5", + "0x84", + "0x182cae2c253" + ] + }, + { + "pc": 1623, + "op": "PUSH2", + "gas": 2997793, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x20408cd9", + "0x3e6", + "0x182cae2c253", + "0x84", + "0xa4", + "0x6b5", + "0x84", + "0x182cae2c253" + ] + }, + { + "pc": 1626, + "op": "DUP2", + "gas": 2997790, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x20408cd9", + "0x3e6", + "0x182cae2c253", + "0x84", + "0xa4", + "0x6b5", + "0x84", + "0x182cae2c253", + "0x65f" + ] + }, + { + "pc": 1627, + "op": "PUSH2", + "gas": 2997787, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x20408cd9", + "0x3e6", + "0x182cae2c253", + "0x84", + "0xa4", + "0x6b5", + "0x84", + "0x182cae2c253", + "0x65f", + "0x182cae2c253" + ] + }, + { + "pc": 1630, + "op": "JUMP", + "gas": 2997784, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x20408cd9", + "0x3e6", + "0x182cae2c253", + "0x84", + "0xa4", + "0x6b5", + "0x84", + "0x182cae2c253", + "0x65f", + "0x182cae2c253", + "0x6fe" + ] + }, + { + "pc": 1790, + "op": "JUMPDEST", + "gas": 2997776, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x20408cd9", + "0x3e6", + "0x182cae2c253", + "0x84", + "0xa4", + "0x6b5", + "0x84", + "0x182cae2c253", + "0x65f", + "0x182cae2c253" + ] + }, + { + "pc": 1791, + "op": "PUSH1", + "gas": 2997775, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x20408cd9", + "0x3e6", + "0x182cae2c253", + "0x84", + "0xa4", + "0x6b5", + "0x84", + "0x182cae2c253", + "0x65f", + "0x182cae2c253" + ] + }, + { + "pc": 1793, + "op": "DUP2", + "gas": 2997772, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x20408cd9", + "0x3e6", + "0x182cae2c253", + "0x84", + "0xa4", + "0x6b5", + "0x84", + "0x182cae2c253", + "0x65f", + "0x182cae2c253", + "0x0" + ] + }, + { + "pc": 1794, + "op": "SWAP1", + "gas": 2997769, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x20408cd9", + "0x3e6", + "0x182cae2c253", + "0x84", + "0xa4", + "0x6b5", + "0x84", + "0x182cae2c253", + "0x65f", + "0x182cae2c253", + "0x0", + "0x182cae2c253" + ] + }, + { + "pc": 1795, + "op": "POP", + "gas": 2997766, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x20408cd9", + "0x3e6", + "0x182cae2c253", + "0x84", + "0xa4", + "0x6b5", + "0x84", + "0x182cae2c253", + "0x65f", + "0x182cae2c253", + "0x182cae2c253", + "0x0" + ] + }, + { + "pc": 1796, + "op": "SWAP2", + "gas": 2997764, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x20408cd9", + "0x3e6", + "0x182cae2c253", + "0x84", + "0xa4", + "0x6b5", + "0x84", + "0x182cae2c253", + "0x65f", + "0x182cae2c253", + "0x182cae2c253" + ] + }, + { + "pc": 1797, + "op": "SWAP1", + "gas": 2997761, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x20408cd9", + "0x3e6", + "0x182cae2c253", + "0x84", + "0xa4", + "0x6b5", + "0x84", + "0x182cae2c253", + "0x182cae2c253", + "0x182cae2c253", + "0x65f" + ] + }, + { + "pc": 1798, + "op": "POP", + "gas": 2997758, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x20408cd9", + "0x3e6", + "0x182cae2c253", + "0x84", + "0xa4", + "0x6b5", + "0x84", + "0x182cae2c253", + "0x182cae2c253", + "0x65f", + "0x182cae2c253" + ] + }, + { + "pc": 1799, + "op": "JUMP", + "gas": 2997756, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x20408cd9", + "0x3e6", + "0x182cae2c253", + "0x84", + "0xa4", + "0x6b5", + "0x84", + "0x182cae2c253", + "0x182cae2c253", + "0x65f" + ] + }, + { + "pc": 1631, + "op": "JUMPDEST", + "gas": 2997748, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x20408cd9", + "0x3e6", + "0x182cae2c253", + "0x84", + "0xa4", + "0x6b5", + "0x84", + "0x182cae2c253", + "0x182cae2c253" + ] + }, + { + "pc": 1632, + "op": "DUP3", + "gas": 2997747, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x20408cd9", + "0x3e6", + "0x182cae2c253", + "0x84", + "0xa4", + "0x6b5", + "0x84", + "0x182cae2c253", + "0x182cae2c253" + ] + }, + { + "pc": 1633, + "op": "MSTORE", + "gas": 2997744, + "gasCost": 6, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x20408cd9", + "0x3e6", + "0x182cae2c253", + "0x84", + "0xa4", + "0x6b5", + "0x84", + "0x182cae2c253", + "0x182cae2c253", + "0x84" + ] + }, + { + "pc": 1634, + "op": "POP", + "gas": 2997738, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x20408cd9", + "0x3e6", + "0x182cae2c253", + "0x84", + "0xa4", + "0x6b5", + "0x84", + "0x182cae2c253" + ] + }, + { + "pc": 1635, + "op": "POP", + "gas": 2997736, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x20408cd9", + "0x3e6", + "0x182cae2c253", + "0x84", + "0xa4", + "0x6b5", + "0x84" + ] + }, + { + "pc": 1636, + "op": "JUMP", + "gas": 2997734, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x20408cd9", + "0x3e6", + "0x182cae2c253", + "0x84", + "0xa4", + "0x6b5" + ] + }, + { + "pc": 1717, + "op": "JUMPDEST", + "gas": 2997726, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x20408cd9", + "0x3e6", + "0x182cae2c253", + "0x84", + "0xa4" + ] + }, + { + "pc": 1718, + "op": "SWAP3", + "gas": 2997725, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x20408cd9", + "0x3e6", + "0x182cae2c253", + "0x84", + "0xa4" + ] + }, + { + "pc": 1719, + "op": "SWAP2", + "gas": 2997722, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x20408cd9", + "0xa4", + "0x182cae2c253", + "0x84", + "0x3e6" + ] + }, + { + "pc": 1720, + "op": "POP", + "gas": 2997719, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x20408cd9", + "0xa4", + "0x3e6", + "0x84", + "0x182cae2c253" + ] + }, + { + "pc": 1721, + "op": "POP", + "gas": 2997717, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x20408cd9", + "0xa4", + "0x3e6", + "0x84" + ] + }, + { + "pc": 1722, + "op": "JUMP", + "gas": 2997715, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x20408cd9", + "0xa4", + "0x3e6" + ] + }, + { + "pc": 998, + "op": "JUMPDEST", + "gas": 2997707, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x20408cd9", + "0xa4" + ] + }, + { + "pc": 999, + "op": "PUSH1", + "gas": 2997706, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x20408cd9", + "0xa4" + ] + }, + { + "pc": 1001, + "op": "PUSH1", + "gas": 2997703, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x20408cd9", + "0xa4", + "0x20" + ] + }, + { + "pc": 1003, + "op": "MLOAD", + "gas": 2997700, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x20408cd9", + "0xa4", + "0x20", + "0x40" + ] + }, + { + "pc": 1004, + "op": "DUP1", + "gas": 2997697, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x20408cd9", + "0xa4", + "0x20", + "0x80" + ] + }, + { + "pc": 1005, + "op": "DUP4", + "gas": 2997694, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x20408cd9", + "0xa4", + "0x20", + "0x80", + "0x80" + ] + }, + { + "pc": 1006, + "op": "SUB", + "gas": 2997691, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x20408cd9", + "0xa4", + "0x20", + "0x80", + "0x80", + "0xa4" + ] + }, + { + "pc": 1007, + "op": "DUP2", + "gas": 2997688, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x20408cd9", + "0xa4", + "0x20", + "0x80", + "0x24" + ] + }, + { + "pc": 1008, + "op": "PUSH1", + "gas": 2997685, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x20408cd9", + "0xa4", + "0x20", + "0x80", + "0x24", + "0x80" + ] + }, + { + "pc": 1010, + "op": "DUP8", + "gas": 2997682, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x20408cd9", + "0xa4", + "0x20", + "0x80", + "0x24", + "0x80", + "0x0" + ] + }, + { + "pc": 1011, + "op": "DUP1", + "gas": 2997679, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x20408cd9", + "0xa4", + "0x20", + "0x80", + "0x24", + "0x80", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a" + ] + }, + { + "pc": 1012, + "op": "EXTCODESIZE", + "gas": 2997676, + "gasCost": 2600, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x20408cd9", + "0xa4", + "0x20", + "0x80", + "0x24", + "0x80", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a" + ], + "extraData": { + "codeList": [ + "0x608060405234801561001057600080fd5b50600436106100575760003560e01c806313ab33b11461005c57806320408cd91461008c578063314a09a8146100bc578063c5b0437c146100da578063ce0dbd67146100f6575b600080fd5b61007660048036038101906100719190610323565b610112565b604051610083919061036a565b60405180910390f35b6100a660048036038101906100a19190610323565b610155565b6040516100b3919061036a565b60405180910390f35b6100c4610197565b6040516100d1919061036a565b60405180910390f35b6100f460048036038101906100ef9190610323565b6101c0565b005b610110600480360381019061010b9190610323565b61023c565b005b600081604051610121906102f5565b61012b9190610385565b604051809103906000f0801561013e5760015b61014b5760009050610150565b809150505b919050565b6000808260405161016590610301565b61016f9190610385565b604051809103906000f08015801561018b573d6000803e3d6000fd5b50905080915050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000816040516101cf90610301565b6101d99190610385565b604051809103906000f0801580156101f5573d6000803e3d6000fd5b509050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b80604051610249906102f5565b6102539190610385565b604051809103906000f080156102665760015b6102b05760008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506102f2565b806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505b50565b60e2806103f483390190565b6103ab806104d683390190565b60008135905061031d816103dc565b92915050565b60006020828403121561033557600080fd5b60006103438482850161030e565b91505092915050565b610355816103a0565b82525050565b610364816103d2565b82525050565b600060208201905061037f600083018461034c565b92915050565b600060208201905061039a600083018461035b565b92915050565b60006103ab826103b2565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6103e5816103d2565b81146103f057600080fd5b5056fe6080604052348015600f57600080fd5b5060405160e238038060e28339818101604052810190602d91906052565b6000811415603a57600080fd5b506096565b600081519050604c816082565b92915050565b600060208284031215606357600080fd5b6000606f84828501603f565b91505092915050565b6000819050919050565b6089816078565b8114609357600080fd5b50565b603f8060a36000396000f3fe6080604052600080fdfea2646970667358221220d980928765b61eb01523442146dc4518e079360da1cc4a7f1ab97c88f137c27e64736f6c63430008040033608060405234801561001057600080fd5b506040516103ab3803806103ab83398181016040528101906100329190610054565b806000819055505061009e565b60008151905061004e81610087565b92915050565b60006020828403121561006657600080fd5b60006100748482850161003f565b91505092915050565b6000819050919050565b6100908161007d565b811461009b57600080fd5b50565b6102fe806100ad6000396000f3fe6080604052600436106100555760003560e01c806321848c461461005a5780632e64cec114610083578063b0f2b72a146100ae578063c4e96ec0146100d7578063e5223f88146100f3578063f34176731461010f575b600080fd5b34801561006657600080fd5b50610081600480360381019061007c91906101d7565b61013a565b005b34801561008f57600080fd5b5061009861014f565b6040516100a59190610252565b60405180910390f35b3480156100ba57600080fd5b506100d560048036038101906100d091906101d7565b610158565b005b6100f160048036038101906100ec91906101d7565b610162565b005b61010d600480360381019061010891906101d7565b6101a4565b005b34801561011b57600080fd5b506101246101ae565b6040516101319190610252565b60405180910390f35b80600081905550600061014c57600080fd5b50565b60008054905090565b8060008190555050565b806000819055506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161019b90610232565b60405180910390fd5b8060008190555050565b6000806101ba57600080fd5b600054905090565b6000813590506101d1816102b1565b92915050565b6000602082840312156101e957600080fd5b60006101f7848285016101c2565b91505092915050565b600061020d600c8361026d565b915061021882610288565b602082019050919050565b61022c8161027e565b82525050565b6000602082019050818103600083015261024b81610200565b9050919050565b60006020820190506102676000830184610223565b92915050565b600082825260208201905092915050565b6000819050919050565b7f64656c696265726174656c790000000000000000000000000000000000000000600082015250565b6102ba8161027e565b81146102c557600080fd5b5056fea26469706673582212206fa6988b66dece47dc22658a0058d7f113ce303b23abdbfb3e29ee300a66489464736f6c63430008040033a264697066735822122024e6552371fbd96476a2ebdebcd94517f44d186fe1b33f5e31629291591786e764736f6c63430008040033" + ] + } + }, + { + "pc": 1013, + "op": "ISZERO", + "gas": 2995076, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x20408cd9", + "0xa4", + "0x20", + "0x80", + "0x24", + "0x80", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x8b6" + ] + }, + { + "pc": 1014, + "op": "DUP1", + "gas": 2995073, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x20408cd9", + "0xa4", + "0x20", + "0x80", + "0x24", + "0x80", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x0" + ] + }, + { + "pc": 1015, + "op": "ISZERO", + "gas": 2995070, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x20408cd9", + "0xa4", + "0x20", + "0x80", + "0x24", + "0x80", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x0", + "0x0" + ] + }, + { + "pc": 1016, + "op": "PUSH2", + "gas": 2995067, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x20408cd9", + "0xa4", + "0x20", + "0x80", + "0x24", + "0x80", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x0", + "0x1" + ] + }, + { + "pc": 1019, + "op": "JUMPI", + "gas": 2995064, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x20408cd9", + "0xa4", + "0x20", + "0x80", + "0x24", + "0x80", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x0", + "0x1", + "0x400" + ] + }, + { + "pc": 1024, + "op": "JUMPDEST", + "gas": 2995054, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x20408cd9", + "0xa4", + "0x20", + "0x80", + "0x24", + "0x80", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x0" + ] + }, + { + "pc": 1025, + "op": "POP", + "gas": 2995053, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x20408cd9", + "0xa4", + "0x20", + "0x80", + "0x24", + "0x80", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x0" + ] + }, + { + "pc": 1026, + "op": "GAS", + "gas": 2995051, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x20408cd9", + "0xa4", + "0x20", + "0x80", + "0x24", + "0x80", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a" + ] + }, + { + "pc": 1027, + "op": "CALL", + "gas": 2995049, + "gasCost": 2948253, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x20408cd9", + "0xa4", + "0x20", + "0x80", + "0x24", + "0x80", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x2db369" + ], + "extraData": { + "codeList": [ + "0x608060405234801561001057600080fd5b50600436106100625760003560e01c8063200d2ed214610067578063295a8edc146100855780633719f511146100a15780633e23ee43146100bd5780635696ec35146100db5780635dec31ca146100f7575b600080fd5b61006f610113565b60405161007c9190610665565b60405180910390f35b61009f600480360381019061009a91906105fb565b61013d565b005b6100bb60048036038101906100b691906105fb565b610269565b005b6100c561035e565b6040516100d29190610665565b60405180910390f35b6100f560048036038101906100f091906105fb565b610387565b005b610111600480360381019061010c91906105fb565b61047c565b005b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff166320408cd9836040518263ffffffff1660e01b815260040161019c91906106a0565b602060405180830381600087803b1580156101b657600080fd5b505af11580156101ca573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906101ee91906105d2565b600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161026090610680565b60405180910390fd5b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff166313ab33b1836040518263ffffffff1660e01b81526004016102c891906106a0565b602060405180830381600087803b1580156102e257600080fd5b505af11580156102f6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061031a91906105d2565b600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff166320408cd9836040518263ffffffff1660e01b81526004016103e691906106a0565b602060405180830381600087803b15801561040057600080fd5b505af1158015610414573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061043891906105d2565b600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff166313ab33b1836040518263ffffffff1660e01b81526004016104db91906106a0565b602060405180830381600087803b1580156104f557600080fd5b505af1158015610509573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061052d91906105d2565b600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161059f90610680565b60405180910390fd5b6000815190506105b781610731565b92915050565b6000813590506105cc81610748565b92915050565b6000602082840312156105e457600080fd5b60006105f2848285016105a8565b91505092915050565b60006020828403121561060d57600080fd5b600061061b848285016105bd565b91505092915050565b61062d816106cc565b82525050565b6000610640600c836106bb565b915061064b82610708565b602082019050919050565b61065f816106fe565b82525050565b600060208201905061067a6000830184610624565b92915050565b6000602082019050818103600083015261069981610633565b9050919050565b60006020820190506106b56000830184610656565b92915050565b600082825260208201905092915050565b60006106d7826106de565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b7f64656c696265726174656c790000000000000000000000000000000000000000600082015250565b61073a816106cc565b811461074557600080fd5b50565b610751816106fe565b811461075c57600080fd5b5056fea26469706673582212206d22486e2deddb5e91f0979599a7e467825532693839695bd2c007645b06ee3f64736f6c63430008040033", + "0x608060405234801561001057600080fd5b50600436106100575760003560e01c806313ab33b11461005c57806320408cd91461008c578063314a09a8146100bc578063c5b0437c146100da578063ce0dbd67146100f6575b600080fd5b61007660048036038101906100719190610323565b610112565b604051610083919061036a565b60405180910390f35b6100a660048036038101906100a19190610323565b610155565b6040516100b3919061036a565b60405180910390f35b6100c4610197565b6040516100d1919061036a565b60405180910390f35b6100f460048036038101906100ef9190610323565b6101c0565b005b610110600480360381019061010b9190610323565b61023c565b005b600081604051610121906102f5565b61012b9190610385565b604051809103906000f0801561013e5760015b61014b5760009050610150565b809150505b919050565b6000808260405161016590610301565b61016f9190610385565b604051809103906000f08015801561018b573d6000803e3d6000fd5b50905080915050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000816040516101cf90610301565b6101d99190610385565b604051809103906000f0801580156101f5573d6000803e3d6000fd5b509050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b80604051610249906102f5565b6102539190610385565b604051809103906000f080156102665760015b6102b05760008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506102f2565b806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505b50565b60e2806103f483390190565b6103ab806104d683390190565b60008135905061031d816103dc565b92915050565b60006020828403121561033557600080fd5b60006103438482850161030e565b91505092915050565b610355816103a0565b82525050565b610364816103d2565b82525050565b600060208201905061037f600083018461034c565b92915050565b600060208201905061039a600083018461035b565b92915050565b60006103ab826103b2565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6103e5816103d2565b81146103f057600080fd5b5056fe6080604052348015600f57600080fd5b5060405160e238038060e28339818101604052810190602d91906052565b6000811415603a57600080fd5b506096565b600081519050604c816082565b92915050565b600060208284031215606357600080fd5b6000606f84828501603f565b91505092915050565b6000819050919050565b6089816078565b8114609357600080fd5b50565b603f8060a36000396000f3fe6080604052600080fdfea2646970667358221220d980928765b61eb01523442146dc4518e079360da1cc4a7f1ab97c88f137c27e64736f6c63430008040033608060405234801561001057600080fd5b506040516103ab3803806103ab83398181016040528101906100329190610054565b806000819055505061009e565b60008151905061004e81610087565b92915050565b60006020828403121561006657600080fd5b60006100748482850161003f565b91505092915050565b6000819050919050565b6100908161007d565b811461009b57600080fd5b50565b6102fe806100ad6000396000f3fe6080604052600436106100555760003560e01c806321848c461461005a5780632e64cec114610083578063b0f2b72a146100ae578063c4e96ec0146100d7578063e5223f88146100f3578063f34176731461010f575b600080fd5b34801561006657600080fd5b50610081600480360381019061007c91906101d7565b61013a565b005b34801561008f57600080fd5b5061009861014f565b6040516100a59190610252565b60405180910390f35b3480156100ba57600080fd5b506100d560048036038101906100d091906101d7565b610158565b005b6100f160048036038101906100ec91906101d7565b610162565b005b61010d600480360381019061010891906101d7565b6101a4565b005b34801561011b57600080fd5b506101246101ae565b6040516101319190610252565b60405180910390f35b80600081905550600061014c57600080fd5b50565b60008054905090565b8060008190555050565b806000819055506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161019b90610232565b60405180910390fd5b8060008190555050565b6000806101ba57600080fd5b600054905090565b6000813590506101d1816102b1565b92915050565b6000602082840312156101e957600080fd5b60006101f7848285016101c2565b91505092915050565b600061020d600c8361026d565b915061021882610288565b602082019050919050565b61022c8161027e565b82525050565b6000602082019050818103600083015261024b81610200565b9050919050565b60006020820190506102676000830184610223565b92915050565b600082825260208201905092915050565b6000819050919050565b7f64656c696265726174656c790000000000000000000000000000000000000000600082015250565b6102ba8161027e565b81146102c557600080fd5b5056fea26469706673582212206fa6988b66dece47dc22658a0058d7f113ce303b23abdbfb3e29ee300a66489464736f6c63430008040033a264697066735822122024e6552371fbd96476a2ebdebcd94517f44d186fe1b33f5e31629291591786e764736f6c63430008040033" + ], + "proofList": [ + { + "address": "0xda1ad647621a1984ce21b0bab020005fe3b5f4da", + "nonce": 1, + "balance": "0x0", + "codeHash": "0x00c2455a35210099bbbb95bdd1b6a9bfc4702d98ba0f971009391cd8f970e729" + }, + { + "address": "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "nonce": 11, + "balance": "0x0", + "codeHash": "0x0197f7ef0aab588fbcc511af4e7d236206b90e8fbe1adfc7afe76c181cc4e9f0" + }, + { + "address": "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "nonce": 11, + "balance": "0x0", + "codeHash": "0x0197f7ef0aab588fbcc511af4e7d236206b90e8fbe1adfc7afe76c181cc4e9f0" + } + ], + "caller": [ + { + "address": "0xda1ad647621a1984ce21b0bab020005fe3b5f4da", + "nonce": 1, + "balance": "0x0", + "codeHash": "0x00c2455a35210099bbbb95bdd1b6a9bfc4702d98ba0f971009391cd8f970e729" + }, + { + "address": "0xda1ad647621a1984ce21b0bab020005fe3b5f4da", + "nonce": 1, + "balance": "0x0", + "codeHash": "0x00c2455a35210099bbbb95bdd1b6a9bfc4702d98ba0f971009391cd8f970e729" + } + ] + } + }, + { + "pc": 0, + "op": "PUSH1", + "gas": 2948153, + "gasCost": 3, + "depth": 2 + }, + { + "pc": 2, + "op": "PUSH1", + "gas": 2948150, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x80" + ] + }, + { + "pc": 4, + "op": "MSTORE", + "gas": 2948147, + "gasCost": 12, + "depth": 2, + "stack": [ + "0x80", + "0x40" + ] + }, + { + "pc": 5, + "op": "CALLVALUE", + "gas": 2948135, + "gasCost": 2, + "depth": 2 + }, + { + "pc": 6, + "op": "DUP1", + "gas": 2948133, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x0" + ] + }, + { + "pc": 7, + "op": "ISZERO", + "gas": 2948130, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x0", + "0x0" + ] + }, + { + "pc": 8, + "op": "PUSH2", + "gas": 2948127, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x0", + "0x1" + ] + }, + { + "pc": 11, + "op": "JUMPI", + "gas": 2948124, + "gasCost": 10, + "depth": 2, + "stack": [ + "0x0", + "0x1", + "0x10" + ] + }, + { + "pc": 16, + "op": "JUMPDEST", + "gas": 2948114, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x0" + ] + }, + { + "pc": 17, + "op": "POP", + "gas": 2948113, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x0" + ] + }, + { + "pc": 18, + "op": "PUSH1", + "gas": 2948111, + "gasCost": 3, + "depth": 2 + }, + { + "pc": 20, + "op": "CALLDATASIZE", + "gas": 2948108, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x4" + ] + }, + { + "pc": 21, + "op": "LT", + "gas": 2948106, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x4", + "0x24" + ] + }, + { + "pc": 22, + "op": "PUSH2", + "gas": 2948103, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x0" + ] + }, + { + "pc": 25, + "op": "JUMPI", + "gas": 2948100, + "gasCost": 10, + "depth": 2, + "stack": [ + "0x0", + "0x57" + ] + }, + { + "pc": 26, + "op": "PUSH1", + "gas": 2948090, + "gasCost": 3, + "depth": 2 + }, + { + "pc": 28, + "op": "CALLDATALOAD", + "gas": 2948087, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x0" + ] + }, + { + "pc": 29, + "op": "PUSH1", + "gas": 2948084, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd900000000000000000000000000000000000000000000000000000182" + ] + }, + { + "pc": 31, + "op": "SHR", + "gas": 2948081, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd900000000000000000000000000000000000000000000000000000182", + "0xe0" + ] + }, + { + "pc": 32, + "op": "DUP1", + "gas": 2948078, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9" + ] + }, + { + "pc": 33, + "op": "PUSH4", + "gas": 2948075, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0x20408cd9" + ] + }, + { + "pc": 38, + "op": "EQ", + "gas": 2948072, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0x20408cd9", + "0x13ab33b1" + ] + }, + { + "pc": 39, + "op": "PUSH2", + "gas": 2948069, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0x0" + ] + }, + { + "pc": 42, + "op": "JUMPI", + "gas": 2948066, + "gasCost": 10, + "depth": 2, + "stack": [ + "0x20408cd9", + "0x0", + "0x5c" + ] + }, + { + "pc": 43, + "op": "DUP1", + "gas": 2948056, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9" + ] + }, + { + "pc": 44, + "op": "PUSH4", + "gas": 2948053, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0x20408cd9" + ] + }, + { + "pc": 49, + "op": "EQ", + "gas": 2948050, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0x20408cd9", + "0x20408cd9" + ] + }, + { + "pc": 50, + "op": "PUSH2", + "gas": 2948047, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0x1" + ] + }, + { + "pc": 53, + "op": "JUMPI", + "gas": 2948044, + "gasCost": 10, + "depth": 2, + "stack": [ + "0x20408cd9", + "0x1", + "0x8c" + ] + }, + { + "pc": 140, + "op": "JUMPDEST", + "gas": 2948034, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x20408cd9" + ] + }, + { + "pc": 141, + "op": "PUSH2", + "gas": 2948033, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9" + ] + }, + { + "pc": 144, + "op": "PUSH1", + "gas": 2948030, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6" + ] + }, + { + "pc": 146, + "op": "DUP1", + "gas": 2948027, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0x4" + ] + }, + { + "pc": 147, + "op": "CALLDATASIZE", + "gas": 2948024, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0x4", + "0x4" + ] + }, + { + "pc": 148, + "op": "SUB", + "gas": 2948022, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0x4", + "0x4", + "0x24" + ] + }, + { + "pc": 149, + "op": "DUP2", + "gas": 2948019, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0x4", + "0x20" + ] + }, + { + "pc": 150, + "op": "ADD", + "gas": 2948016, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0x4", + "0x20", + "0x4" + ] + }, + { + "pc": 151, + "op": "SWAP1", + "gas": 2948013, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0x4", + "0x24" + ] + }, + { + "pc": 152, + "op": "PUSH2", + "gas": 2948010, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0x24", + "0x4" + ] + }, + { + "pc": 155, + "op": "SWAP2", + "gas": 2948007, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0x24", + "0x4", + "0xa1" + ] + }, + { + "pc": 156, + "op": "SWAP1", + "gas": 2948004, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0xa1", + "0x4", + "0x24" + ] + }, + { + "pc": 157, + "op": "PUSH2", + "gas": 2948001, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0xa1", + "0x24", + "0x4" + ] + }, + { + "pc": 160, + "op": "JUMP", + "gas": 2947998, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0xa1", + "0x24", + "0x4", + "0x323" + ] + }, + { + "pc": 803, + "op": "JUMPDEST", + "gas": 2947990, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0xa1", + "0x24", + "0x4" + ] + }, + { + "pc": 804, + "op": "PUSH1", + "gas": 2947989, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0xa1", + "0x24", + "0x4" + ] + }, + { + "pc": 806, + "op": "PUSH1", + "gas": 2947986, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0xa1", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 808, + "op": "DUP3", + "gas": 2947983, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0xa1", + "0x24", + "0x4", + "0x0", + "0x20" + ] + }, + { + "pc": 809, + "op": "DUP5", + "gas": 2947980, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0xa1", + "0x24", + "0x4", + "0x0", + "0x20", + "0x4" + ] + }, + { + "pc": 810, + "op": "SUB", + "gas": 2947977, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0xa1", + "0x24", + "0x4", + "0x0", + "0x20", + "0x4", + "0x24" + ] + }, + { + "pc": 811, + "op": "SLT", + "gas": 2947974, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0xa1", + "0x24", + "0x4", + "0x0", + "0x20", + "0x20" + ] + }, + { + "pc": 812, + "op": "ISZERO", + "gas": 2947971, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0xa1", + "0x24", + "0x4", + "0x0", + "0x0" + ] + }, + { + "pc": 813, + "op": "PUSH2", + "gas": 2947968, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0xa1", + "0x24", + "0x4", + "0x0", + "0x1" + ] + }, + { + "pc": 816, + "op": "JUMPI", + "gas": 2947965, + "gasCost": 10, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0xa1", + "0x24", + "0x4", + "0x0", + "0x1", + "0x335" + ] + }, + { + "pc": 821, + "op": "JUMPDEST", + "gas": 2947955, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0xa1", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 822, + "op": "PUSH1", + "gas": 2947954, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0xa1", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 824, + "op": "PUSH2", + "gas": 2947951, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0xa1", + "0x24", + "0x4", + "0x0", + "0x0" + ] + }, + { + "pc": 827, + "op": "DUP5", + "gas": 2947948, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0xa1", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343" + ] + }, + { + "pc": 828, + "op": "DUP3", + "gas": 2947945, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0xa1", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24" + ] + }, + { + "pc": 829, + "op": "DUP6", + "gas": 2947942, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0xa1", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x0" + ] + }, + { + "pc": 830, + "op": "ADD", + "gas": 2947939, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0xa1", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x0", + "0x4" + ] + }, + { + "pc": 831, + "op": "PUSH2", + "gas": 2947936, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0xa1", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4" + ] + }, + { + "pc": 834, + "op": "JUMP", + "gas": 2947933, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0xa1", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x30e" + ] + }, + { + "pc": 782, + "op": "JUMPDEST", + "gas": 2947925, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0xa1", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4" + ] + }, + { + "pc": 783, + "op": "PUSH1", + "gas": 2947924, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0xa1", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4" + ] + }, + { + "pc": 785, + "op": "DUP2", + "gas": 2947921, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0xa1", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 786, + "op": "CALLDATALOAD", + "gas": 2947918, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0xa1", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x0", + "0x4" + ] + }, + { + "pc": 787, + "op": "SWAP1", + "gas": 2947915, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0xa1", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x0", + "0x182cae2c253" + ] + }, + { + "pc": 788, + "op": "POP", + "gas": 2947912, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0xa1", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x182cae2c253", + "0x0" + ] + }, + { + "pc": 789, + "op": "PUSH2", + "gas": 2947910, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0xa1", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x182cae2c253" + ] + }, + { + "pc": 792, + "op": "DUP2", + "gas": 2947907, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0xa1", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x182cae2c253", + "0x31d" + ] + }, + { + "pc": 793, + "op": "PUSH2", + "gas": 2947904, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0xa1", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x182cae2c253", + "0x31d", + "0x182cae2c253" + ] + }, + { + "pc": 796, + "op": "JUMP", + "gas": 2947901, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0xa1", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x182cae2c253", + "0x31d", + "0x182cae2c253", + "0x3dc" + ] + }, + { + "pc": 988, + "op": "JUMPDEST", + "gas": 2947893, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0xa1", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x182cae2c253", + "0x31d", + "0x182cae2c253" + ] + }, + { + "pc": 989, + "op": "PUSH2", + "gas": 2947892, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0xa1", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x182cae2c253", + "0x31d", + "0x182cae2c253" + ] + }, + { + "pc": 992, + "op": "DUP2", + "gas": 2947889, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0xa1", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x182cae2c253", + "0x31d", + "0x182cae2c253", + "0x3e5" + ] + }, + { + "pc": 993, + "op": "PUSH2", + "gas": 2947886, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0xa1", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x182cae2c253", + "0x31d", + "0x182cae2c253", + "0x3e5", + "0x182cae2c253" + ] + }, + { + "pc": 996, + "op": "JUMP", + "gas": 2947883, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0xa1", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x182cae2c253", + "0x31d", + "0x182cae2c253", + "0x3e5", + "0x182cae2c253", + "0x3d2" + ] + }, + { + "pc": 978, + "op": "JUMPDEST", + "gas": 2947875, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0xa1", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x182cae2c253", + "0x31d", + "0x182cae2c253", + "0x3e5", + "0x182cae2c253" + ] + }, + { + "pc": 979, + "op": "PUSH1", + "gas": 2947874, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0xa1", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x182cae2c253", + "0x31d", + "0x182cae2c253", + "0x3e5", + "0x182cae2c253" + ] + }, + { + "pc": 981, + "op": "DUP2", + "gas": 2947871, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0xa1", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x182cae2c253", + "0x31d", + "0x182cae2c253", + "0x3e5", + "0x182cae2c253", + "0x0" + ] + }, + { + "pc": 982, + "op": "SWAP1", + "gas": 2947868, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0xa1", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x182cae2c253", + "0x31d", + "0x182cae2c253", + "0x3e5", + "0x182cae2c253", + "0x0", + "0x182cae2c253" + ] + }, + { + "pc": 983, + "op": "POP", + "gas": 2947865, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0xa1", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x182cae2c253", + "0x31d", + "0x182cae2c253", + "0x3e5", + "0x182cae2c253", + "0x182cae2c253", + "0x0" + ] + }, + { + "pc": 984, + "op": "SWAP2", + "gas": 2947863, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0xa1", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x182cae2c253", + "0x31d", + "0x182cae2c253", + "0x3e5", + "0x182cae2c253", + "0x182cae2c253" + ] + }, + { + "pc": 985, + "op": "SWAP1", + "gas": 2947860, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0xa1", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x182cae2c253", + "0x31d", + "0x182cae2c253", + "0x182cae2c253", + "0x182cae2c253", + "0x3e5" + ] + }, + { + "pc": 986, + "op": "POP", + "gas": 2947857, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0xa1", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x182cae2c253", + "0x31d", + "0x182cae2c253", + "0x182cae2c253", + "0x3e5", + "0x182cae2c253" + ] + }, + { + "pc": 987, + "op": "JUMP", + "gas": 2947855, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0xa1", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x182cae2c253", + "0x31d", + "0x182cae2c253", + "0x182cae2c253", + "0x3e5" + ] + }, + { + "pc": 997, + "op": "JUMPDEST", + "gas": 2947847, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0xa1", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x182cae2c253", + "0x31d", + "0x182cae2c253", + "0x182cae2c253" + ] + }, + { + "pc": 998, + "op": "DUP2", + "gas": 2947846, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0xa1", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x182cae2c253", + "0x31d", + "0x182cae2c253", + "0x182cae2c253" + ] + }, + { + "pc": 999, + "op": "EQ", + "gas": 2947843, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0xa1", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x182cae2c253", + "0x31d", + "0x182cae2c253", + "0x182cae2c253", + "0x182cae2c253" + ] + }, + { + "pc": 1000, + "op": "PUSH2", + "gas": 2947840, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0xa1", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x182cae2c253", + "0x31d", + "0x182cae2c253", + "0x1" + ] + }, + { + "pc": 1003, + "op": "JUMPI", + "gas": 2947837, + "gasCost": 10, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0xa1", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x182cae2c253", + "0x31d", + "0x182cae2c253", + "0x1", + "0x3f0" + ] + }, + { + "pc": 1008, + "op": "JUMPDEST", + "gas": 2947827, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0xa1", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x182cae2c253", + "0x31d", + "0x182cae2c253" + ] + }, + { + "pc": 1009, + "op": "POP", + "gas": 2947826, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0xa1", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x182cae2c253", + "0x31d", + "0x182cae2c253" + ] + }, + { + "pc": 1010, + "op": "JUMP", + "gas": 2947824, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0xa1", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x182cae2c253", + "0x31d" + ] + }, + { + "pc": 797, + "op": "JUMPDEST", + "gas": 2947816, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0xa1", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x182cae2c253" + ] + }, + { + "pc": 798, + "op": "SWAP3", + "gas": 2947815, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0xa1", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x182cae2c253" + ] + }, + { + "pc": 799, + "op": "SWAP2", + "gas": 2947812, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0xa1", + "0x24", + "0x4", + "0x0", + "0x0", + "0x182cae2c253", + "0x24", + "0x4", + "0x343" + ] + }, + { + "pc": 800, + "op": "POP", + "gas": 2947809, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0xa1", + "0x24", + "0x4", + "0x0", + "0x0", + "0x182cae2c253", + "0x343", + "0x4", + "0x24" + ] + }, + { + "pc": 801, + "op": "POP", + "gas": 2947807, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0xa1", + "0x24", + "0x4", + "0x0", + "0x0", + "0x182cae2c253", + "0x343", + "0x4" + ] + }, + { + "pc": 802, + "op": "JUMP", + "gas": 2947805, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0xa1", + "0x24", + "0x4", + "0x0", + "0x0", + "0x182cae2c253", + "0x343" + ] + }, + { + "pc": 835, + "op": "JUMPDEST", + "gas": 2947797, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0xa1", + "0x24", + "0x4", + "0x0", + "0x0", + "0x182cae2c253" + ] + }, + { + "pc": 836, + "op": "SWAP2", + "gas": 2947796, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0xa1", + "0x24", + "0x4", + "0x0", + "0x0", + "0x182cae2c253" + ] + }, + { + "pc": 837, + "op": "POP", + "gas": 2947793, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0xa1", + "0x24", + "0x4", + "0x182cae2c253", + "0x0", + "0x0" + ] + }, + { + "pc": 838, + "op": "POP", + "gas": 2947791, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0xa1", + "0x24", + "0x4", + "0x182cae2c253", + "0x0" + ] + }, + { + "pc": 839, + "op": "SWAP3", + "gas": 2947789, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0xa1", + "0x24", + "0x4", + "0x182cae2c253" + ] + }, + { + "pc": 840, + "op": "SWAP2", + "gas": 2947786, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0x182cae2c253", + "0x24", + "0x4", + "0xa1" + ] + }, + { + "pc": 841, + "op": "POP", + "gas": 2947783, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0x182cae2c253", + "0xa1", + "0x4", + "0x24" + ] + }, + { + "pc": 842, + "op": "POP", + "gas": 2947781, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0x182cae2c253", + "0xa1", + "0x4" + ] + }, + { + "pc": 843, + "op": "JUMP", + "gas": 2947779, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0x182cae2c253", + "0xa1" + ] + }, + { + "pc": 161, + "op": "JUMPDEST", + "gas": 2947771, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0x182cae2c253" + ] + }, + { + "pc": 162, + "op": "PUSH2", + "gas": 2947770, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0x182cae2c253" + ] + }, + { + "pc": 165, + "op": "JUMP", + "gas": 2947767, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0x182cae2c253", + "0x155" + ] + }, + { + "pc": 341, + "op": "JUMPDEST", + "gas": 2947759, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0x182cae2c253" + ] + }, + { + "pc": 342, + "op": "PUSH1", + "gas": 2947758, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0x182cae2c253" + ] + }, + { + "pc": 344, + "op": "DUP1", + "gas": 2947755, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0x182cae2c253", + "0x0" + ] + }, + { + "pc": 345, + "op": "DUP3", + "gas": 2947752, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0x182cae2c253", + "0x0", + "0x0" + ] + }, + { + "pc": 346, + "op": "PUSH1", + "gas": 2947749, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0x182cae2c253", + "0x0", + "0x0", + "0x182cae2c253" + ] + }, + { + "pc": 348, + "op": "MLOAD", + "gas": 2947746, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0x182cae2c253", + "0x0", + "0x0", + "0x182cae2c253", + "0x40" + ] + }, + { + "pc": 349, + "op": "PUSH2", + "gas": 2947743, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0x182cae2c253", + "0x0", + "0x0", + "0x182cae2c253", + "0x80" + ] + }, + { + "pc": 352, + "op": "SWAP1", + "gas": 2947740, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0x182cae2c253", + "0x0", + "0x0", + "0x182cae2c253", + "0x80", + "0x165" + ] + }, + { + "pc": 353, + "op": "PUSH2", + "gas": 2947737, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0x182cae2c253", + "0x0", + "0x0", + "0x182cae2c253", + "0x165", + "0x80" + ] + }, + { + "pc": 356, + "op": "JUMP", + "gas": 2947734, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0x182cae2c253", + "0x0", + "0x0", + "0x182cae2c253", + "0x165", + "0x80", + "0x301" + ] + }, + { + "pc": 769, + "op": "JUMPDEST", + "gas": 2947726, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0x182cae2c253", + "0x0", + "0x0", + "0x182cae2c253", + "0x165", + "0x80" + ] + }, + { + "pc": 770, + "op": "PUSH2", + "gas": 2947725, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0x182cae2c253", + "0x0", + "0x0", + "0x182cae2c253", + "0x165", + "0x80" + ] + }, + { + "pc": 773, + "op": "DUP1", + "gas": 2947722, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0x182cae2c253", + "0x0", + "0x0", + "0x182cae2c253", + "0x165", + "0x80", + "0x3ab" + ] + }, + { + "pc": 774, + "op": "PUSH2", + "gas": 2947719, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0x182cae2c253", + "0x0", + "0x0", + "0x182cae2c253", + "0x165", + "0x80", + "0x3ab", + "0x3ab" + ] + }, + { + "pc": 777, + "op": "DUP4", + "gas": 2947716, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0x182cae2c253", + "0x0", + "0x0", + "0x182cae2c253", + "0x165", + "0x80", + "0x3ab", + "0x3ab", + "0x4d6" + ] + }, + { + "pc": 778, + "op": "CODECOPY", + "gas": 2947713, + "gasCost": 188, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0x182cae2c253", + "0x0", + "0x0", + "0x182cae2c253", + "0x165", + "0x80", + "0x3ab", + "0x3ab", + "0x4d6", + "0x80" + ], + "extraData": { + "codeList": [ + "0x608060405234801561001057600080fd5b50600436106100575760003560e01c806313ab33b11461005c57806320408cd91461008c578063314a09a8146100bc578063c5b0437c146100da578063ce0dbd67146100f6575b600080fd5b61007660048036038101906100719190610323565b610112565b604051610083919061036a565b60405180910390f35b6100a660048036038101906100a19190610323565b610155565b6040516100b3919061036a565b60405180910390f35b6100c4610197565b6040516100d1919061036a565b60405180910390f35b6100f460048036038101906100ef9190610323565b6101c0565b005b610110600480360381019061010b9190610323565b61023c565b005b600081604051610121906102f5565b61012b9190610385565b604051809103906000f0801561013e5760015b61014b5760009050610150565b809150505b919050565b6000808260405161016590610301565b61016f9190610385565b604051809103906000f08015801561018b573d6000803e3d6000fd5b50905080915050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000816040516101cf90610301565b6101d99190610385565b604051809103906000f0801580156101f5573d6000803e3d6000fd5b509050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b80604051610249906102f5565b6102539190610385565b604051809103906000f080156102665760015b6102b05760008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506102f2565b806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505b50565b60e2806103f483390190565b6103ab806104d683390190565b60008135905061031d816103dc565b92915050565b60006020828403121561033557600080fd5b60006103438482850161030e565b91505092915050565b610355816103a0565b82525050565b610364816103d2565b82525050565b600060208201905061037f600083018461034c565b92915050565b600060208201905061039a600083018461035b565b92915050565b60006103ab826103b2565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6103e5816103d2565b81146103f057600080fd5b5056fe6080604052348015600f57600080fd5b5060405160e238038060e28339818101604052810190602d91906052565b6000811415603a57600080fd5b506096565b600081519050604c816082565b92915050565b600060208284031215606357600080fd5b6000606f84828501603f565b91505092915050565b6000819050919050565b6089816078565b8114609357600080fd5b50565b603f8060a36000396000f3fe6080604052600080fdfea2646970667358221220d980928765b61eb01523442146dc4518e079360da1cc4a7f1ab97c88f137c27e64736f6c63430008040033608060405234801561001057600080fd5b506040516103ab3803806103ab83398181016040528101906100329190610054565b806000819055505061009e565b60008151905061004e81610087565b92915050565b60006020828403121561006657600080fd5b60006100748482850161003f565b91505092915050565b6000819050919050565b6100908161007d565b811461009b57600080fd5b50565b6102fe806100ad6000396000f3fe6080604052600436106100555760003560e01c806321848c461461005a5780632e64cec114610083578063b0f2b72a146100ae578063c4e96ec0146100d7578063e5223f88146100f3578063f34176731461010f575b600080fd5b34801561006657600080fd5b50610081600480360381019061007c91906101d7565b61013a565b005b34801561008f57600080fd5b5061009861014f565b6040516100a59190610252565b60405180910390f35b3480156100ba57600080fd5b506100d560048036038101906100d091906101d7565b610158565b005b6100f160048036038101906100ec91906101d7565b610162565b005b61010d600480360381019061010891906101d7565b6101a4565b005b34801561011b57600080fd5b506101246101ae565b6040516101319190610252565b60405180910390f35b80600081905550600061014c57600080fd5b50565b60008054905090565b8060008190555050565b806000819055506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161019b90610232565b60405180910390fd5b8060008190555050565b6000806101ba57600080fd5b600054905090565b6000813590506101d1816102b1565b92915050565b6000602082840312156101e957600080fd5b60006101f7848285016101c2565b91505092915050565b600061020d600c8361026d565b915061021882610288565b602082019050919050565b61022c8161027e565b82525050565b6000602082019050818103600083015261024b81610200565b9050919050565b60006020820190506102676000830184610223565b92915050565b600082825260208201905092915050565b6000819050919050565b7f64656c696265726174656c790000000000000000000000000000000000000000600082015250565b6102ba8161027e565b81146102c557600080fd5b5056fea26469706673582212206fa6988b66dece47dc22658a0058d7f113ce303b23abdbfb3e29ee300a66489464736f6c63430008040033a264697066735822122024e6552371fbd96476a2ebdebcd94517f44d186fe1b33f5e31629291591786e764736f6c63430008040033" + ] + } + }, + { + "pc": 779, + "op": "ADD", + "gas": 2947525, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0x182cae2c253", + "0x0", + "0x0", + "0x182cae2c253", + "0x165", + "0x80", + "0x3ab" + ] + }, + { + "pc": 780, + "op": "SWAP1", + "gas": 2947522, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0x182cae2c253", + "0x0", + "0x0", + "0x182cae2c253", + "0x165", + "0x42b" + ] + }, + { + "pc": 781, + "op": "JUMP", + "gas": 2947519, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0x182cae2c253", + "0x0", + "0x0", + "0x182cae2c253", + "0x42b", + "0x165" + ] + }, + { + "pc": 357, + "op": "JUMPDEST", + "gas": 2947511, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0x182cae2c253", + "0x0", + "0x0", + "0x182cae2c253", + "0x42b" + ] + }, + { + "pc": 358, + "op": "PUSH2", + "gas": 2947510, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0x182cae2c253", + "0x0", + "0x0", + "0x182cae2c253", + "0x42b" + ] + }, + { + "pc": 361, + "op": "SWAP2", + "gas": 2947507, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0x182cae2c253", + "0x0", + "0x0", + "0x182cae2c253", + "0x42b", + "0x16f" + ] + }, + { + "pc": 362, + "op": "SWAP1", + "gas": 2947504, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0x182cae2c253", + "0x0", + "0x0", + "0x16f", + "0x42b", + "0x182cae2c253" + ] + }, + { + "pc": 363, + "op": "PUSH2", + "gas": 2947501, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0x182cae2c253", + "0x0", + "0x0", + "0x16f", + "0x182cae2c253", + "0x42b" + ] + }, + { + "pc": 366, + "op": "JUMP", + "gas": 2947498, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0x182cae2c253", + "0x0", + "0x0", + "0x16f", + "0x182cae2c253", + "0x42b", + "0x385" + ] + }, + { + "pc": 901, + "op": "JUMPDEST", + "gas": 2947490, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0x182cae2c253", + "0x0", + "0x0", + "0x16f", + "0x182cae2c253", + "0x42b" + ] + }, + { + "pc": 902, + "op": "PUSH1", + "gas": 2947489, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0x182cae2c253", + "0x0", + "0x0", + "0x16f", + "0x182cae2c253", + "0x42b" + ] + }, + { + "pc": 904, + "op": "PUSH1", + "gas": 2947486, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0x182cae2c253", + "0x0", + "0x0", + "0x16f", + "0x182cae2c253", + "0x42b", + "0x0" + ] + }, + { + "pc": 906, + "op": "DUP3", + "gas": 2947483, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0x182cae2c253", + "0x0", + "0x0", + "0x16f", + "0x182cae2c253", + "0x42b", + "0x0", + "0x20" + ] + }, + { + "pc": 907, + "op": "ADD", + "gas": 2947480, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0x182cae2c253", + "0x0", + "0x0", + "0x16f", + "0x182cae2c253", + "0x42b", + "0x0", + "0x20", + "0x42b" + ] + }, + { + "pc": 908, + "op": "SWAP1", + "gas": 2947477, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0x182cae2c253", + "0x0", + "0x0", + "0x16f", + "0x182cae2c253", + "0x42b", + "0x0", + "0x44b" + ] + }, + { + "pc": 909, + "op": "POP", + "gas": 2947474, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0x182cae2c253", + "0x0", + "0x0", + "0x16f", + "0x182cae2c253", + "0x42b", + "0x44b", + "0x0" + ] + }, + { + "pc": 910, + "op": "PUSH2", + "gas": 2947472, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0x182cae2c253", + "0x0", + "0x0", + "0x16f", + "0x182cae2c253", + "0x42b", + "0x44b" + ] + }, + { + "pc": 913, + "op": "PUSH1", + "gas": 2947469, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0x182cae2c253", + "0x0", + "0x0", + "0x16f", + "0x182cae2c253", + "0x42b", + "0x44b", + "0x39a" + ] + }, + { + "pc": 915, + "op": "DUP4", + "gas": 2947466, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0x182cae2c253", + "0x0", + "0x0", + "0x16f", + "0x182cae2c253", + "0x42b", + "0x44b", + "0x39a", + "0x0" + ] + }, + { + "pc": 916, + "op": "ADD", + "gas": 2947463, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0x182cae2c253", + "0x0", + "0x0", + "0x16f", + "0x182cae2c253", + "0x42b", + "0x44b", + "0x39a", + "0x0", + "0x42b" + ] + }, + { + "pc": 917, + "op": "DUP5", + "gas": 2947460, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0x182cae2c253", + "0x0", + "0x0", + "0x16f", + "0x182cae2c253", + "0x42b", + "0x44b", + "0x39a", + "0x42b" + ] + }, + { + "pc": 918, + "op": "PUSH2", + "gas": 2947457, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0x182cae2c253", + "0x0", + "0x0", + "0x16f", + "0x182cae2c253", + "0x42b", + "0x44b", + "0x39a", + "0x42b", + "0x182cae2c253" + ] + }, + { + "pc": 921, + "op": "JUMP", + "gas": 2947454, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0x182cae2c253", + "0x0", + "0x0", + "0x16f", + "0x182cae2c253", + "0x42b", + "0x44b", + "0x39a", + "0x42b", + "0x182cae2c253", + "0x35b" + ] + }, + { + "pc": 859, + "op": "JUMPDEST", + "gas": 2947446, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0x182cae2c253", + "0x0", + "0x0", + "0x16f", + "0x182cae2c253", + "0x42b", + "0x44b", + "0x39a", + "0x42b", + "0x182cae2c253" + ] + }, + { + "pc": 860, + "op": "PUSH2", + "gas": 2947445, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0x182cae2c253", + "0x0", + "0x0", + "0x16f", + "0x182cae2c253", + "0x42b", + "0x44b", + "0x39a", + "0x42b", + "0x182cae2c253" + ] + }, + { + "pc": 863, + "op": "DUP2", + "gas": 2947442, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0x182cae2c253", + "0x0", + "0x0", + "0x16f", + "0x182cae2c253", + "0x42b", + "0x44b", + "0x39a", + "0x42b", + "0x182cae2c253", + "0x364" + ] + }, + { + "pc": 864, + "op": "PUSH2", + "gas": 2947439, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0x182cae2c253", + "0x0", + "0x0", + "0x16f", + "0x182cae2c253", + "0x42b", + "0x44b", + "0x39a", + "0x42b", + "0x182cae2c253", + "0x364", + "0x182cae2c253" + ] + }, + { + "pc": 867, + "op": "JUMP", + "gas": 2947436, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0x182cae2c253", + "0x0", + "0x0", + "0x16f", + "0x182cae2c253", + "0x42b", + "0x44b", + "0x39a", + "0x42b", + "0x182cae2c253", + "0x364", + "0x182cae2c253", + "0x3d2" + ] + }, + { + "pc": 978, + "op": "JUMPDEST", + "gas": 2947428, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0x182cae2c253", + "0x0", + "0x0", + "0x16f", + "0x182cae2c253", + "0x42b", + "0x44b", + "0x39a", + "0x42b", + "0x182cae2c253", + "0x364", + "0x182cae2c253" + ] + }, + { + "pc": 979, + "op": "PUSH1", + "gas": 2947427, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0x182cae2c253", + "0x0", + "0x0", + "0x16f", + "0x182cae2c253", + "0x42b", + "0x44b", + "0x39a", + "0x42b", + "0x182cae2c253", + "0x364", + "0x182cae2c253" + ] + }, + { + "pc": 981, + "op": "DUP2", + "gas": 2947424, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0x182cae2c253", + "0x0", + "0x0", + "0x16f", + "0x182cae2c253", + "0x42b", + "0x44b", + "0x39a", + "0x42b", + "0x182cae2c253", + "0x364", + "0x182cae2c253", + "0x0" + ] + }, + { + "pc": 982, + "op": "SWAP1", + "gas": 2947421, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0x182cae2c253", + "0x0", + "0x0", + "0x16f", + "0x182cae2c253", + "0x42b", + "0x44b", + "0x39a", + "0x42b", + "0x182cae2c253", + "0x364", + "0x182cae2c253", + "0x0", + "0x182cae2c253" + ] + }, + { + "pc": 983, + "op": "POP", + "gas": 2947418, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0x182cae2c253", + "0x0", + "0x0", + "0x16f", + "0x182cae2c253", + "0x42b", + "0x44b", + "0x39a", + "0x42b", + "0x182cae2c253", + "0x364", + "0x182cae2c253", + "0x182cae2c253", + "0x0" + ] + }, + { + "pc": 984, + "op": "SWAP2", + "gas": 2947416, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0x182cae2c253", + "0x0", + "0x0", + "0x16f", + "0x182cae2c253", + "0x42b", + "0x44b", + "0x39a", + "0x42b", + "0x182cae2c253", + "0x364", + "0x182cae2c253", + "0x182cae2c253" + ] + }, + { + "pc": 985, + "op": "SWAP1", + "gas": 2947413, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0x182cae2c253", + "0x0", + "0x0", + "0x16f", + "0x182cae2c253", + "0x42b", + "0x44b", + "0x39a", + "0x42b", + "0x182cae2c253", + "0x182cae2c253", + "0x182cae2c253", + "0x364" + ] + }, + { + "pc": 986, + "op": "POP", + "gas": 2947410, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0x182cae2c253", + "0x0", + "0x0", + "0x16f", + "0x182cae2c253", + "0x42b", + "0x44b", + "0x39a", + "0x42b", + "0x182cae2c253", + "0x182cae2c253", + "0x364", + "0x182cae2c253" + ] + }, + { + "pc": 987, + "op": "JUMP", + "gas": 2947408, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0x182cae2c253", + "0x0", + "0x0", + "0x16f", + "0x182cae2c253", + "0x42b", + "0x44b", + "0x39a", + "0x42b", + "0x182cae2c253", + "0x182cae2c253", + "0x364" + ] + }, + { + "pc": 868, + "op": "JUMPDEST", + "gas": 2947400, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0x182cae2c253", + "0x0", + "0x0", + "0x16f", + "0x182cae2c253", + "0x42b", + "0x44b", + "0x39a", + "0x42b", + "0x182cae2c253", + "0x182cae2c253" + ] + }, + { + "pc": 869, + "op": "DUP3", + "gas": 2947399, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0x182cae2c253", + "0x0", + "0x0", + "0x16f", + "0x182cae2c253", + "0x42b", + "0x44b", + "0x39a", + "0x42b", + "0x182cae2c253", + "0x182cae2c253" + ] + }, + { + "pc": 870, + "op": "MSTORE", + "gas": 2947396, + "gasCost": 6, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0x182cae2c253", + "0x0", + "0x0", + "0x16f", + "0x182cae2c253", + "0x42b", + "0x44b", + "0x39a", + "0x42b", + "0x182cae2c253", + "0x182cae2c253", + "0x42b" + ] + }, + { + "pc": 871, + "op": "POP", + "gas": 2947390, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0x182cae2c253", + "0x0", + "0x0", + "0x16f", + "0x182cae2c253", + "0x42b", + "0x44b", + "0x39a", + "0x42b", + "0x182cae2c253" + ] + }, + { + "pc": 872, + "op": "POP", + "gas": 2947388, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0x182cae2c253", + "0x0", + "0x0", + "0x16f", + "0x182cae2c253", + "0x42b", + "0x44b", + "0x39a", + "0x42b" + ] + }, + { + "pc": 873, + "op": "JUMP", + "gas": 2947386, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0x182cae2c253", + "0x0", + "0x0", + "0x16f", + "0x182cae2c253", + "0x42b", + "0x44b", + "0x39a" + ] + }, + { + "pc": 922, + "op": "JUMPDEST", + "gas": 2947378, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0x182cae2c253", + "0x0", + "0x0", + "0x16f", + "0x182cae2c253", + "0x42b", + "0x44b" + ] + }, + { + "pc": 923, + "op": "SWAP3", + "gas": 2947377, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0x182cae2c253", + "0x0", + "0x0", + "0x16f", + "0x182cae2c253", + "0x42b", + "0x44b" + ] + }, + { + "pc": 924, + "op": "SWAP2", + "gas": 2947374, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0x182cae2c253", + "0x0", + "0x0", + "0x44b", + "0x182cae2c253", + "0x42b", + "0x16f" + ] + }, + { + "pc": 925, + "op": "POP", + "gas": 2947371, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0x182cae2c253", + "0x0", + "0x0", + "0x44b", + "0x16f", + "0x42b", + "0x182cae2c253" + ] + }, + { + "pc": 926, + "op": "POP", + "gas": 2947369, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0x182cae2c253", + "0x0", + "0x0", + "0x44b", + "0x16f", + "0x42b" + ] + }, + { + "pc": 927, + "op": "JUMP", + "gas": 2947367, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0x182cae2c253", + "0x0", + "0x0", + "0x44b", + "0x16f" + ] + }, + { + "pc": 367, + "op": "JUMPDEST", + "gas": 2947359, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0x182cae2c253", + "0x0", + "0x0", + "0x44b" + ] + }, + { + "pc": 368, + "op": "PUSH1", + "gas": 2947358, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0x182cae2c253", + "0x0", + "0x0", + "0x44b" + ] + }, + { + "pc": 370, + "op": "MLOAD", + "gas": 2947355, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0x182cae2c253", + "0x0", + "0x0", + "0x44b", + "0x40" + ] + }, + { + "pc": 371, + "op": "DUP1", + "gas": 2947352, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0x182cae2c253", + "0x0", + "0x0", + "0x44b", + "0x80" + ] + }, + { + "pc": 372, + "op": "SWAP2", + "gas": 2947349, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0x182cae2c253", + "0x0", + "0x0", + "0x44b", + "0x80", + "0x80" + ] + }, + { + "pc": 373, + "op": "SUB", + "gas": 2947346, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0x182cae2c253", + "0x0", + "0x0", + "0x80", + "0x80", + "0x44b" + ] + }, + { + "pc": 374, + "op": "SWAP1", + "gas": 2947343, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0x182cae2c253", + "0x0", + "0x0", + "0x80", + "0x3cb" + ] + }, + { + "pc": 375, + "op": "PUSH1", + "gas": 2947340, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0x182cae2c253", + "0x0", + "0x0", + "0x3cb", + "0x80" + ] + }, + { + "pc": 377, + "op": "CREATE", + "gas": 2947337, + "gasCost": 32000, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0x182cae2c253", + "0x0", + "0x0", + "0x3cb", + "0x80", + "0x0" + ], + "extraData": { + "codeList": [ + "0x6080604052600436106100555760003560e01c806321848c461461005a5780632e64cec114610083578063b0f2b72a146100ae578063c4e96ec0146100d7578063e5223f88146100f3578063f34176731461010f575b600080fd5b34801561006657600080fd5b50610081600480360381019061007c91906101d7565b61013a565b005b34801561008f57600080fd5b5061009861014f565b6040516100a59190610252565b60405180910390f35b3480156100ba57600080fd5b506100d560048036038101906100d091906101d7565b610158565b005b6100f160048036038101906100ec91906101d7565b610162565b005b61010d600480360381019061010891906101d7565b6101a4565b005b34801561011b57600080fd5b506101246101ae565b6040516101319190610252565b60405180910390f35b80600081905550600061014c57600080fd5b50565b60008054905090565b8060008190555050565b806000819055506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161019b90610232565b60405180910390fd5b8060008190555050565b6000806101ba57600080fd5b600054905090565b6000813590506101d1816102b1565b92915050565b6000602082840312156101e957600080fd5b60006101f7848285016101c2565b91505092915050565b600061020d600c8361026d565b915061021882610288565b602082019050919050565b61022c8161027e565b82525050565b6000602082019050818103600083015261024b81610200565b9050919050565b60006020820190506102676000830184610223565b92915050565b600082825260208201905092915050565b6000819050919050565b7f64656c696265726174656c790000000000000000000000000000000000000000600082015250565b6102ba8161027e565b81146102c557600080fd5b5056fea26469706673582212206fa6988b66dece47dc22658a0058d7f113ce303b23abdbfb3e29ee300a66489464736f6c63430008040033" + ], + "proofList": [ + { + "address": "0x07179993df93db69cfdefca8af12ffcc24f3188c", + "nonce": 1, + "balance": "0x0", + "codeHash": "0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470" + }, + { + "address": "0x07179993df93db69cfdefca8af12ffcc24f3188c", + "nonce": 1, + "balance": "0x0", + "codeHash": "0x4ee2afb169bef88abed9792edc0230c2cda9c19a48639d2db199479f1176928e" + } + ], + "caller": [ + { + "address": "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "nonce": 11, + "balance": "0x0", + "codeHash": "0x0197f7ef0aab588fbcc511af4e7d236206b90e8fbe1adfc7afe76c181cc4e9f0" + }, + { + "address": "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "nonce": 12, + "balance": "0x0", + "codeHash": "0x0197f7ef0aab588fbcc511af4e7d236206b90e8fbe1adfc7afe76c181cc4e9f0" + } + ] + } + }, + { + "pc": 0, + "op": "PUSH1", + "gas": 2869785, + "gasCost": 3, + "depth": 3 + }, + { + "pc": 2, + "op": "PUSH1", + "gas": 2869782, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x80" + ] + }, + { + "pc": 4, + "op": "MSTORE", + "gas": 2869779, + "gasCost": 12, + "depth": 3, + "stack": [ + "0x80", + "0x40" + ] + }, + { + "pc": 5, + "op": "CALLVALUE", + "gas": 2869767, + "gasCost": 2, + "depth": 3 + }, + { + "pc": 6, + "op": "DUP1", + "gas": 2869765, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x0" + ] + }, + { + "pc": 7, + "op": "ISZERO", + "gas": 2869762, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x0", + "0x0" + ] + }, + { + "pc": 8, + "op": "PUSH2", + "gas": 2869759, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x0", + "0x1" + ] + }, + { + "pc": 11, + "op": "JUMPI", + "gas": 2869756, + "gasCost": 10, + "depth": 3, + "stack": [ + "0x0", + "0x1", + "0x10" + ] + }, + { + "pc": 16, + "op": "JUMPDEST", + "gas": 2869746, + "gasCost": 1, + "depth": 3, + "stack": [ + "0x0" + ] + }, + { + "pc": 17, + "op": "POP", + "gas": 2869745, + "gasCost": 2, + "depth": 3, + "stack": [ + "0x0" + ] + }, + { + "pc": 18, + "op": "PUSH1", + "gas": 2869743, + "gasCost": 3, + "depth": 3 + }, + { + "pc": 20, + "op": "MLOAD", + "gas": 2869740, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x40" + ] + }, + { + "pc": 21, + "op": "PUSH2", + "gas": 2869737, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x80" + ] + }, + { + "pc": 24, + "op": "CODESIZE", + "gas": 2869734, + "gasCost": 2, + "depth": 3, + "stack": [ + "0x80", + "0x3ab" + ], + "extraData": { + "codeList": [ + "0x" + ] + } + }, + { + "pc": 25, + "op": "SUB", + "gas": 2869732, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x80", + "0x3ab", + "0x3cb" + ] + }, + { + "pc": 26, + "op": "DUP1", + "gas": 2869729, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x80", + "0x20" + ] + }, + { + "pc": 27, + "op": "PUSH2", + "gas": 2869726, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x80", + "0x20", + "0x20" + ] + }, + { + "pc": 30, + "op": "DUP4", + "gas": 2869723, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x80", + "0x20", + "0x20", + "0x3ab" + ] + }, + { + "pc": 31, + "op": "CODECOPY", + "gas": 2869720, + "gasCost": 12, + "depth": 3, + "stack": [ + "0x80", + "0x20", + "0x20", + "0x3ab", + "0x80" + ], + "extraData": { + "codeList": [ + "0x" + ] + } + }, + { + "pc": 32, + "op": "DUP2", + "gas": 2869708, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x80", + "0x20" + ] + }, + { + "pc": 33, + "op": "DUP2", + "gas": 2869705, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x80", + "0x20", + "0x80" + ] + }, + { + "pc": 34, + "op": "ADD", + "gas": 2869702, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x80", + "0x20", + "0x80", + "0x20" + ] + }, + { + "pc": 35, + "op": "PUSH1", + "gas": 2869699, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x80", + "0x20", + "0xa0" + ] + }, + { + "pc": 37, + "op": "MSTORE", + "gas": 2869696, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x80", + "0x20", + "0xa0", + "0x40" + ] + }, + { + "pc": 38, + "op": "DUP2", + "gas": 2869693, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x80", + "0x20" + ] + }, + { + "pc": 39, + "op": "ADD", + "gas": 2869690, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x80", + "0x20", + "0x80" + ] + }, + { + "pc": 40, + "op": "SWAP1", + "gas": 2869687, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x80", + "0xa0" + ] + }, + { + "pc": 41, + "op": "PUSH2", + "gas": 2869684, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xa0", + "0x80" + ] + }, + { + "pc": 44, + "op": "SWAP2", + "gas": 2869681, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xa0", + "0x80", + "0x32" + ] + }, + { + "pc": 45, + "op": "SWAP1", + "gas": 2869678, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x32", + "0x80", + "0xa0" + ] + }, + { + "pc": 46, + "op": "PUSH2", + "gas": 2869675, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x32", + "0xa0", + "0x80" + ] + }, + { + "pc": 49, + "op": "JUMP", + "gas": 2869672, + "gasCost": 8, + "depth": 3, + "stack": [ + "0x32", + "0xa0", + "0x80", + "0x54" + ] + }, + { + "pc": 84, + "op": "JUMPDEST", + "gas": 2869664, + "gasCost": 1, + "depth": 3, + "stack": [ + "0x32", + "0xa0", + "0x80" + ] + }, + { + "pc": 85, + "op": "PUSH1", + "gas": 2869663, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x32", + "0xa0", + "0x80" + ] + }, + { + "pc": 87, + "op": "PUSH1", + "gas": 2869660, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x32", + "0xa0", + "0x80", + "0x0" + ] + }, + { + "pc": 89, + "op": "DUP3", + "gas": 2869657, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x32", + "0xa0", + "0x80", + "0x0", + "0x20" + ] + }, + { + "pc": 90, + "op": "DUP5", + "gas": 2869654, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x32", + "0xa0", + "0x80", + "0x0", + "0x20", + "0x80" + ] + }, + { + "pc": 91, + "op": "SUB", + "gas": 2869651, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x32", + "0xa0", + "0x80", + "0x0", + "0x20", + "0x80", + "0xa0" + ] + }, + { + "pc": 92, + "op": "SLT", + "gas": 2869648, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x32", + "0xa0", + "0x80", + "0x0", + "0x20", + "0x20" + ] + }, + { + "pc": 93, + "op": "ISZERO", + "gas": 2869645, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x32", + "0xa0", + "0x80", + "0x0", + "0x0" + ] + }, + { + "pc": 94, + "op": "PUSH2", + "gas": 2869642, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x32", + "0xa0", + "0x80", + "0x0", + "0x1" + ] + }, + { + "pc": 97, + "op": "JUMPI", + "gas": 2869639, + "gasCost": 10, + "depth": 3, + "stack": [ + "0x32", + "0xa0", + "0x80", + "0x0", + "0x1", + "0x66" + ] + }, + { + "pc": 102, + "op": "JUMPDEST", + "gas": 2869629, + "gasCost": 1, + "depth": 3, + "stack": [ + "0x32", + "0xa0", + "0x80", + "0x0" + ] + }, + { + "pc": 103, + "op": "PUSH1", + "gas": 2869628, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x32", + "0xa0", + "0x80", + "0x0" + ] + }, + { + "pc": 105, + "op": "PUSH2", + "gas": 2869625, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x32", + "0xa0", + "0x80", + "0x0", + "0x0" + ] + }, + { + "pc": 108, + "op": "DUP5", + "gas": 2869622, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x32", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x74" + ] + }, + { + "pc": 109, + "op": "DUP3", + "gas": 2869619, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x32", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x74", + "0xa0" + ] + }, + { + "pc": 110, + "op": "DUP6", + "gas": 2869616, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x32", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x74", + "0xa0", + "0x0" + ] + }, + { + "pc": 111, + "op": "ADD", + "gas": 2869613, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x32", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x74", + "0xa0", + "0x0", + "0x80" + ] + }, + { + "pc": 112, + "op": "PUSH2", + "gas": 2869610, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x32", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x74", + "0xa0", + "0x80" + ] + }, + { + "pc": 115, + "op": "JUMP", + "gas": 2869607, + "gasCost": 8, + "depth": 3, + "stack": [ + "0x32", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x74", + "0xa0", + "0x80", + "0x3f" + ] + }, + { + "pc": 63, + "op": "JUMPDEST", + "gas": 2869599, + "gasCost": 1, + "depth": 3, + "stack": [ + "0x32", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x74", + "0xa0", + "0x80" + ] + }, + { + "pc": 64, + "op": "PUSH1", + "gas": 2869598, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x32", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x74", + "0xa0", + "0x80" + ] + }, + { + "pc": 66, + "op": "DUP2", + "gas": 2869595, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x32", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x74", + "0xa0", + "0x80", + "0x0" + ] + }, + { + "pc": 67, + "op": "MLOAD", + "gas": 2869592, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x32", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x74", + "0xa0", + "0x80", + "0x0", + "0x80" + ] + }, + { + "pc": 68, + "op": "SWAP1", + "gas": 2869589, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x32", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x74", + "0xa0", + "0x80", + "0x0", + "0x182cae2c253" + ] + }, + { + "pc": 69, + "op": "POP", + "gas": 2869586, + "gasCost": 2, + "depth": 3, + "stack": [ + "0x32", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x74", + "0xa0", + "0x80", + "0x182cae2c253", + "0x0" + ] + }, + { + "pc": 70, + "op": "PUSH2", + "gas": 2869584, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x32", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x74", + "0xa0", + "0x80", + "0x182cae2c253" + ] + }, + { + "pc": 73, + "op": "DUP2", + "gas": 2869581, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x32", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x74", + "0xa0", + "0x80", + "0x182cae2c253", + "0x4e" + ] + }, + { + "pc": 74, + "op": "PUSH2", + "gas": 2869578, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x32", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x74", + "0xa0", + "0x80", + "0x182cae2c253", + "0x4e", + "0x182cae2c253" + ] + }, + { + "pc": 77, + "op": "JUMP", + "gas": 2869575, + "gasCost": 8, + "depth": 3, + "stack": [ + "0x32", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x74", + "0xa0", + "0x80", + "0x182cae2c253", + "0x4e", + "0x182cae2c253", + "0x87" + ] + }, + { + "pc": 135, + "op": "JUMPDEST", + "gas": 2869567, + "gasCost": 1, + "depth": 3, + "stack": [ + "0x32", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x74", + "0xa0", + "0x80", + "0x182cae2c253", + "0x4e", + "0x182cae2c253" + ] + }, + { + "pc": 136, + "op": "PUSH2", + "gas": 2869566, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x32", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x74", + "0xa0", + "0x80", + "0x182cae2c253", + "0x4e", + "0x182cae2c253" + ] + }, + { + "pc": 139, + "op": "DUP2", + "gas": 2869563, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x32", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x74", + "0xa0", + "0x80", + "0x182cae2c253", + "0x4e", + "0x182cae2c253", + "0x90" + ] + }, + { + "pc": 140, + "op": "PUSH2", + "gas": 2869560, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x32", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x74", + "0xa0", + "0x80", + "0x182cae2c253", + "0x4e", + "0x182cae2c253", + "0x90", + "0x182cae2c253" + ] + }, + { + "pc": 143, + "op": "JUMP", + "gas": 2869557, + "gasCost": 8, + "depth": 3, + "stack": [ + "0x32", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x74", + "0xa0", + "0x80", + "0x182cae2c253", + "0x4e", + "0x182cae2c253", + "0x90", + "0x182cae2c253", + "0x7d" + ] + }, + { + "pc": 125, + "op": "JUMPDEST", + "gas": 2869549, + "gasCost": 1, + "depth": 3, + "stack": [ + "0x32", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x74", + "0xa0", + "0x80", + "0x182cae2c253", + "0x4e", + "0x182cae2c253", + "0x90", + "0x182cae2c253" + ] + }, + { + "pc": 126, + "op": "PUSH1", + "gas": 2869548, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x32", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x74", + "0xa0", + "0x80", + "0x182cae2c253", + "0x4e", + "0x182cae2c253", + "0x90", + "0x182cae2c253" + ] + }, + { + "pc": 128, + "op": "DUP2", + "gas": 2869545, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x32", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x74", + "0xa0", + "0x80", + "0x182cae2c253", + "0x4e", + "0x182cae2c253", + "0x90", + "0x182cae2c253", + "0x0" + ] + }, + { + "pc": 129, + "op": "SWAP1", + "gas": 2869542, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x32", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x74", + "0xa0", + "0x80", + "0x182cae2c253", + "0x4e", + "0x182cae2c253", + "0x90", + "0x182cae2c253", + "0x0", + "0x182cae2c253" + ] + }, + { + "pc": 130, + "op": "POP", + "gas": 2869539, + "gasCost": 2, + "depth": 3, + "stack": [ + "0x32", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x74", + "0xa0", + "0x80", + "0x182cae2c253", + "0x4e", + "0x182cae2c253", + "0x90", + "0x182cae2c253", + "0x182cae2c253", + "0x0" + ] + }, + { + "pc": 131, + "op": "SWAP2", + "gas": 2869537, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x32", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x74", + "0xa0", + "0x80", + "0x182cae2c253", + "0x4e", + "0x182cae2c253", + "0x90", + "0x182cae2c253", + "0x182cae2c253" + ] + }, + { + "pc": 132, + "op": "SWAP1", + "gas": 2869534, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x32", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x74", + "0xa0", + "0x80", + "0x182cae2c253", + "0x4e", + "0x182cae2c253", + "0x182cae2c253", + "0x182cae2c253", + "0x90" + ] + }, + { + "pc": 133, + "op": "POP", + "gas": 2869531, + "gasCost": 2, + "depth": 3, + "stack": [ + "0x32", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x74", + "0xa0", + "0x80", + "0x182cae2c253", + "0x4e", + "0x182cae2c253", + "0x182cae2c253", + "0x90", + "0x182cae2c253" + ] + }, + { + "pc": 134, + "op": "JUMP", + "gas": 2869529, + "gasCost": 8, + "depth": 3, + "stack": [ + "0x32", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x74", + "0xa0", + "0x80", + "0x182cae2c253", + "0x4e", + "0x182cae2c253", + "0x182cae2c253", + "0x90" + ] + }, + { + "pc": 144, + "op": "JUMPDEST", + "gas": 2869521, + "gasCost": 1, + "depth": 3, + "stack": [ + "0x32", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x74", + "0xa0", + "0x80", + "0x182cae2c253", + "0x4e", + "0x182cae2c253", + "0x182cae2c253" + ] + }, + { + "pc": 145, + "op": "DUP2", + "gas": 2869520, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x32", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x74", + "0xa0", + "0x80", + "0x182cae2c253", + "0x4e", + "0x182cae2c253", + "0x182cae2c253" + ] + }, + { + "pc": 146, + "op": "EQ", + "gas": 2869517, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x32", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x74", + "0xa0", + "0x80", + "0x182cae2c253", + "0x4e", + "0x182cae2c253", + "0x182cae2c253", + "0x182cae2c253" + ] + }, + { + "pc": 147, + "op": "PUSH2", + "gas": 2869514, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x32", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x74", + "0xa0", + "0x80", + "0x182cae2c253", + "0x4e", + "0x182cae2c253", + "0x1" + ] + }, + { + "pc": 150, + "op": "JUMPI", + "gas": 2869511, + "gasCost": 10, + "depth": 3, + "stack": [ + "0x32", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x74", + "0xa0", + "0x80", + "0x182cae2c253", + "0x4e", + "0x182cae2c253", + "0x1", + "0x9b" + ] + }, + { + "pc": 155, + "op": "JUMPDEST", + "gas": 2869501, + "gasCost": 1, + "depth": 3, + "stack": [ + "0x32", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x74", + "0xa0", + "0x80", + "0x182cae2c253", + "0x4e", + "0x182cae2c253" + ] + }, + { + "pc": 156, + "op": "POP", + "gas": 2869500, + "gasCost": 2, + "depth": 3, + "stack": [ + "0x32", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x74", + "0xa0", + "0x80", + "0x182cae2c253", + "0x4e", + "0x182cae2c253" + ] + }, + { + "pc": 157, + "op": "JUMP", + "gas": 2869498, + "gasCost": 8, + "depth": 3, + "stack": [ + "0x32", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x74", + "0xa0", + "0x80", + "0x182cae2c253", + "0x4e" + ] + }, + { + "pc": 78, + "op": "JUMPDEST", + "gas": 2869490, + "gasCost": 1, + "depth": 3, + "stack": [ + "0x32", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x74", + "0xa0", + "0x80", + "0x182cae2c253" + ] + }, + { + "pc": 79, + "op": "SWAP3", + "gas": 2869489, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x32", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x74", + "0xa0", + "0x80", + "0x182cae2c253" + ] + }, + { + "pc": 80, + "op": "SWAP2", + "gas": 2869486, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x32", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x182cae2c253", + "0xa0", + "0x80", + "0x74" + ] + }, + { + "pc": 81, + "op": "POP", + "gas": 2869483, + "gasCost": 2, + "depth": 3, + "stack": [ + "0x32", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x182cae2c253", + "0x74", + "0x80", + "0xa0" + ] + }, + { + "pc": 82, + "op": "POP", + "gas": 2869481, + "gasCost": 2, + "depth": 3, + "stack": [ + "0x32", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x182cae2c253", + "0x74", + "0x80" + ] + }, + { + "pc": 83, + "op": "JUMP", + "gas": 2869479, + "gasCost": 8, + "depth": 3, + "stack": [ + "0x32", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x182cae2c253", + "0x74" + ] + }, + { + "pc": 116, + "op": "JUMPDEST", + "gas": 2869471, + "gasCost": 1, + "depth": 3, + "stack": [ + "0x32", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x182cae2c253" + ] + }, + { + "pc": 117, + "op": "SWAP2", + "gas": 2869470, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x32", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x182cae2c253" + ] + }, + { + "pc": 118, + "op": "POP", + "gas": 2869467, + "gasCost": 2, + "depth": 3, + "stack": [ + "0x32", + "0xa0", + "0x80", + "0x182cae2c253", + "0x0", + "0x0" + ] + }, + { + "pc": 119, + "op": "POP", + "gas": 2869465, + "gasCost": 2, + "depth": 3, + "stack": [ + "0x32", + "0xa0", + "0x80", + "0x182cae2c253", + "0x0" + ] + }, + { + "pc": 120, + "op": "SWAP3", + "gas": 2869463, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x32", + "0xa0", + "0x80", + "0x182cae2c253" + ] + }, + { + "pc": 121, + "op": "SWAP2", + "gas": 2869460, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x182cae2c253", + "0xa0", + "0x80", + "0x32" + ] + }, + { + "pc": 122, + "op": "POP", + "gas": 2869457, + "gasCost": 2, + "depth": 3, + "stack": [ + "0x182cae2c253", + "0x32", + "0x80", + "0xa0" + ] + }, + { + "pc": 123, + "op": "POP", + "gas": 2869455, + "gasCost": 2, + "depth": 3, + "stack": [ + "0x182cae2c253", + "0x32", + "0x80" + ] + }, + { + "pc": 124, + "op": "JUMP", + "gas": 2869453, + "gasCost": 8, + "depth": 3, + "stack": [ + "0x182cae2c253", + "0x32" + ] + }, + { + "pc": 50, + "op": "JUMPDEST", + "gas": 2869445, + "gasCost": 1, + "depth": 3, + "stack": [ + "0x182cae2c253" + ] + }, + { + "pc": 51, + "op": "DUP1", + "gas": 2869444, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x182cae2c253" + ] + }, + { + "pc": 52, + "op": "PUSH1", + "gas": 2869441, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x182cae2c253", + "0x182cae2c253" + ] + }, + { + "pc": 54, + "op": "DUP2", + "gas": 2869438, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x182cae2c253", + "0x182cae2c253", + "0x0" + ] + }, + { + "pc": 55, + "op": "SWAP1", + "gas": 2869435, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x182cae2c253", + "0x182cae2c253", + "0x0", + "0x182cae2c253" + ] + }, + { + "pc": 56, + "op": "SSTORE", + "gas": 2869432, + "gasCost": 22100, + "depth": 3, + "stack": [ + "0x182cae2c253", + "0x182cae2c253", + "0x182cae2c253", + "0x0" + ], + "storage": { + "0x0000000000000000000000000000000000000000000000000000000000000000": "0x00000000000000000000000000000000000000000000000000000182cae2c253" + }, + "extraData": { + "proofList": [ + { + "address": "0x07179993df93db69cfdefca8af12ffcc24f3188c", + "nonce": 1, + "balance": "0x0", + "codeHash": "0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470", + "storage": { + "key": "0x0000000000000000000000000000000000000000000000000000000000000000", + "value": "0x0000000000000000000000000000000000000000000000000000000000000000" + } + } + ] + } + }, + { + "pc": 57, + "op": "POP", + "gas": 2847332, + "gasCost": 2, + "depth": 3, + "stack": [ + "0x182cae2c253", + "0x182cae2c253" + ] + }, + { + "pc": 58, + "op": "POP", + "gas": 2847330, + "gasCost": 2, + "depth": 3, + "stack": [ + "0x182cae2c253" + ] + }, + { + "pc": 59, + "op": "PUSH2", + "gas": 2847328, + "gasCost": 3, + "depth": 3 + }, + { + "pc": 62, + "op": "JUMP", + "gas": 2847325, + "gasCost": 8, + "depth": 3, + "stack": [ + "0x9e" + ] + }, + { + "pc": 158, + "op": "JUMPDEST", + "gas": 2847317, + "gasCost": 1, + "depth": 3 + }, + { + "pc": 159, + "op": "PUSH2", + "gas": 2847316, + "gasCost": 3, + "depth": 3 + }, + { + "pc": 162, + "op": "DUP1", + "gas": 2847313, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x2fe" + ] + }, + { + "pc": 163, + "op": "PUSH2", + "gas": 2847310, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x2fe", + "0x2fe" + ] + }, + { + "pc": 166, + "op": "PUSH1", + "gas": 2847307, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x2fe", + "0x2fe", + "0xad" + ] + }, + { + "pc": 168, + "op": "CODECOPY", + "gas": 2847304, + "gasCost": 133, + "depth": 3, + "stack": [ + "0x2fe", + "0x2fe", + "0xad", + "0x0" + ], + "extraData": { + "codeList": [ + "0x" + ] + } + }, + { + "pc": 169, + "op": "PUSH1", + "gas": 2847171, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x2fe" + ] + }, + { + "pc": 171, + "op": "RETURN", + "gas": 2847168, + "gasCost": 0, + "depth": 3, + "stack": [ + "0x2fe", + "0x0" + ] + }, + { + "pc": 378, + "op": "DUP1", + "gas": 2739520, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0x182cae2c253", + "0x0", + "0x0", + "0x7179993df93db69cfdefca8af12ffcc24f3188c" + ] + }, + { + "pc": 379, + "op": "ISZERO", + "gas": 2739517, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0x182cae2c253", + "0x0", + "0x0", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x7179993df93db69cfdefca8af12ffcc24f3188c" + ] + }, + { + "pc": 380, + "op": "DUP1", + "gas": 2739514, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0x182cae2c253", + "0x0", + "0x0", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x0" + ] + }, + { + "pc": 381, + "op": "ISZERO", + "gas": 2739511, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0x182cae2c253", + "0x0", + "0x0", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x0", + "0x0" + ] + }, + { + "pc": 382, + "op": "PUSH2", + "gas": 2739508, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0x182cae2c253", + "0x0", + "0x0", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x0", + "0x1" + ] + }, + { + "pc": 385, + "op": "JUMPI", + "gas": 2739505, + "gasCost": 10, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0x182cae2c253", + "0x0", + "0x0", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x0", + "0x1", + "0x18b" + ] + }, + { + "pc": 395, + "op": "JUMPDEST", + "gas": 2739495, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0x182cae2c253", + "0x0", + "0x0", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x0" + ] + }, + { + "pc": 396, + "op": "POP", + "gas": 2739494, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0x182cae2c253", + "0x0", + "0x0", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x0" + ] + }, + { + "pc": 397, + "op": "SWAP1", + "gas": 2739492, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0x182cae2c253", + "0x0", + "0x0", + "0x7179993df93db69cfdefca8af12ffcc24f3188c" + ] + }, + { + "pc": 398, + "op": "POP", + "gas": 2739489, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0x182cae2c253", + "0x0", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x0" + ] + }, + { + "pc": 399, + "op": "DUP1", + "gas": 2739487, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0x182cae2c253", + "0x0", + "0x7179993df93db69cfdefca8af12ffcc24f3188c" + ] + }, + { + "pc": 400, + "op": "SWAP2", + "gas": 2739484, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0x182cae2c253", + "0x0", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x7179993df93db69cfdefca8af12ffcc24f3188c" + ] + }, + { + "pc": 401, + "op": "POP", + "gas": 2739481, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0x182cae2c253", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x0" + ] + }, + { + "pc": 402, + "op": "POP", + "gas": 2739479, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0x182cae2c253", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x7179993df93db69cfdefca8af12ffcc24f3188c" + ] + }, + { + "pc": 403, + "op": "SWAP2", + "gas": 2739477, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa6", + "0x182cae2c253", + "0x7179993df93db69cfdefca8af12ffcc24f3188c" + ] + }, + { + "pc": 404, + "op": "SWAP1", + "gas": 2739474, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x182cae2c253", + "0xa6" + ] + }, + { + "pc": 405, + "op": "POP", + "gas": 2739471, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x20408cd9", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0xa6", + "0x182cae2c253" + ] + }, + { + "pc": 406, + "op": "JUMP", + "gas": 2739469, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x20408cd9", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0xa6" + ] + }, + { + "pc": 166, + "op": "JUMPDEST", + "gas": 2739461, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x20408cd9", + "0x7179993df93db69cfdefca8af12ffcc24f3188c" + ] + }, + { + "pc": 167, + "op": "PUSH1", + "gas": 2739460, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0x7179993df93db69cfdefca8af12ffcc24f3188c" + ] + }, + { + "pc": 169, + "op": "MLOAD", + "gas": 2739457, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x40" + ] + }, + { + "pc": 170, + "op": "PUSH2", + "gas": 2739454, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x80" + ] + }, + { + "pc": 173, + "op": "SWAP2", + "gas": 2739451, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x80", + "0xb3" + ] + }, + { + "pc": 174, + "op": "SWAP1", + "gas": 2739448, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xb3", + "0x80", + "0x7179993df93db69cfdefca8af12ffcc24f3188c" + ] + }, + { + "pc": 175, + "op": "PUSH2", + "gas": 2739445, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xb3", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x80" + ] + }, + { + "pc": 178, + "op": "JUMP", + "gas": 2739442, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xb3", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x80", + "0x36a" + ] + }, + { + "pc": 874, + "op": "JUMPDEST", + "gas": 2739434, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xb3", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x80" + ] + }, + { + "pc": 875, + "op": "PUSH1", + "gas": 2739433, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xb3", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x80" + ] + }, + { + "pc": 877, + "op": "PUSH1", + "gas": 2739430, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xb3", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x80", + "0x0" + ] + }, + { + "pc": 879, + "op": "DUP3", + "gas": 2739427, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xb3", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x80", + "0x0", + "0x20" + ] + }, + { + "pc": 880, + "op": "ADD", + "gas": 2739424, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xb3", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x80", + "0x0", + "0x20", + "0x80" + ] + }, + { + "pc": 881, + "op": "SWAP1", + "gas": 2739421, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xb3", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x80", + "0x0", + "0xa0" + ] + }, + { + "pc": 882, + "op": "POP", + "gas": 2739418, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xb3", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x80", + "0xa0", + "0x0" + ] + }, + { + "pc": 883, + "op": "PUSH2", + "gas": 2739416, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xb3", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x80", + "0xa0" + ] + }, + { + "pc": 886, + "op": "PUSH1", + "gas": 2739413, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xb3", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x80", + "0xa0", + "0x37f" + ] + }, + { + "pc": 888, + "op": "DUP4", + "gas": 2739410, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xb3", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x80", + "0xa0", + "0x37f", + "0x0" + ] + }, + { + "pc": 889, + "op": "ADD", + "gas": 2739407, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xb3", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x80", + "0xa0", + "0x37f", + "0x0", + "0x80" + ] + }, + { + "pc": 890, + "op": "DUP5", + "gas": 2739404, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xb3", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x80", + "0xa0", + "0x37f", + "0x80" + ] + }, + { + "pc": 891, + "op": "PUSH2", + "gas": 2739401, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xb3", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x80", + "0xa0", + "0x37f", + "0x80", + "0x7179993df93db69cfdefca8af12ffcc24f3188c" + ] + }, + { + "pc": 894, + "op": "JUMP", + "gas": 2739398, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xb3", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x80", + "0xa0", + "0x37f", + "0x80", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x34c" + ] + }, + { + "pc": 844, + "op": "JUMPDEST", + "gas": 2739390, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xb3", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x80", + "0xa0", + "0x37f", + "0x80", + "0x7179993df93db69cfdefca8af12ffcc24f3188c" + ] + }, + { + "pc": 845, + "op": "PUSH2", + "gas": 2739389, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xb3", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x80", + "0xa0", + "0x37f", + "0x80", + "0x7179993df93db69cfdefca8af12ffcc24f3188c" + ] + }, + { + "pc": 848, + "op": "DUP2", + "gas": 2739386, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xb3", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x80", + "0xa0", + "0x37f", + "0x80", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x355" + ] + }, + { + "pc": 849, + "op": "PUSH2", + "gas": 2739383, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xb3", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x80", + "0xa0", + "0x37f", + "0x80", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x355", + "0x7179993df93db69cfdefca8af12ffcc24f3188c" + ] + }, + { + "pc": 852, + "op": "JUMP", + "gas": 2739380, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xb3", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x80", + "0xa0", + "0x37f", + "0x80", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x355", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x3a0" + ] + }, + { + "pc": 928, + "op": "JUMPDEST", + "gas": 2739372, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xb3", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x80", + "0xa0", + "0x37f", + "0x80", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x355", + "0x7179993df93db69cfdefca8af12ffcc24f3188c" + ] + }, + { + "pc": 929, + "op": "PUSH1", + "gas": 2739371, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xb3", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x80", + "0xa0", + "0x37f", + "0x80", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x355", + "0x7179993df93db69cfdefca8af12ffcc24f3188c" + ] + }, + { + "pc": 931, + "op": "PUSH2", + "gas": 2739368, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xb3", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x80", + "0xa0", + "0x37f", + "0x80", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x355", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x0" + ] + }, + { + "pc": 934, + "op": "DUP3", + "gas": 2739365, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xb3", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x80", + "0xa0", + "0x37f", + "0x80", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x355", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x0", + "0x3ab" + ] + }, + { + "pc": 935, + "op": "PUSH2", + "gas": 2739362, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xb3", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x80", + "0xa0", + "0x37f", + "0x80", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x355", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x0", + "0x3ab", + "0x7179993df93db69cfdefca8af12ffcc24f3188c" + ] + }, + { + "pc": 938, + "op": "JUMP", + "gas": 2739359, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xb3", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x80", + "0xa0", + "0x37f", + "0x80", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x355", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x0", + "0x3ab", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x3b2" + ] + }, + { + "pc": 946, + "op": "JUMPDEST", + "gas": 2739351, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xb3", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x80", + "0xa0", + "0x37f", + "0x80", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x355", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x0", + "0x3ab", + "0x7179993df93db69cfdefca8af12ffcc24f3188c" + ] + }, + { + "pc": 947, + "op": "PUSH1", + "gas": 2739350, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xb3", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x80", + "0xa0", + "0x37f", + "0x80", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x355", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x0", + "0x3ab", + "0x7179993df93db69cfdefca8af12ffcc24f3188c" + ] + }, + { + "pc": 949, + "op": "PUSH20", + "gas": 2739347, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xb3", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x80", + "0xa0", + "0x37f", + "0x80", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x355", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x0", + "0x3ab", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x0" + ] + }, + { + "pc": 970, + "op": "DUP3", + "gas": 2739344, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xb3", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x80", + "0xa0", + "0x37f", + "0x80", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x355", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x0", + "0x3ab", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 971, + "op": "AND", + "gas": 2739341, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xb3", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x80", + "0xa0", + "0x37f", + "0x80", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x355", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x0", + "0x3ab", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x7179993df93db69cfdefca8af12ffcc24f3188c" + ] + }, + { + "pc": 972, + "op": "SWAP1", + "gas": 2739338, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xb3", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x80", + "0xa0", + "0x37f", + "0x80", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x355", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x0", + "0x3ab", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x0", + "0x7179993df93db69cfdefca8af12ffcc24f3188c" + ] + }, + { + "pc": 973, + "op": "POP", + "gas": 2739335, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xb3", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x80", + "0xa0", + "0x37f", + "0x80", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x355", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x0", + "0x3ab", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x0" + ] + }, + { + "pc": 974, + "op": "SWAP2", + "gas": 2739333, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xb3", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x80", + "0xa0", + "0x37f", + "0x80", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x355", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x0", + "0x3ab", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x7179993df93db69cfdefca8af12ffcc24f3188c" + ] + }, + { + "pc": 975, + "op": "SWAP1", + "gas": 2739330, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xb3", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x80", + "0xa0", + "0x37f", + "0x80", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x355", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x0", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x3ab" + ] + }, + { + "pc": 976, + "op": "POP", + "gas": 2739327, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xb3", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x80", + "0xa0", + "0x37f", + "0x80", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x355", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x0", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x3ab", + "0x7179993df93db69cfdefca8af12ffcc24f3188c" + ] + }, + { + "pc": 977, + "op": "JUMP", + "gas": 2739325, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xb3", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x80", + "0xa0", + "0x37f", + "0x80", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x355", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x0", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x3ab" + ] + }, + { + "pc": 939, + "op": "JUMPDEST", + "gas": 2739317, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xb3", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x80", + "0xa0", + "0x37f", + "0x80", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x355", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x0", + "0x7179993df93db69cfdefca8af12ffcc24f3188c" + ] + }, + { + "pc": 940, + "op": "SWAP1", + "gas": 2739316, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xb3", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x80", + "0xa0", + "0x37f", + "0x80", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x355", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x0", + "0x7179993df93db69cfdefca8af12ffcc24f3188c" + ] + }, + { + "pc": 941, + "op": "POP", + "gas": 2739313, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xb3", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x80", + "0xa0", + "0x37f", + "0x80", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x355", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x0" + ] + }, + { + "pc": 942, + "op": "SWAP2", + "gas": 2739311, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xb3", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x80", + "0xa0", + "0x37f", + "0x80", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x355", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x7179993df93db69cfdefca8af12ffcc24f3188c" + ] + }, + { + "pc": 943, + "op": "SWAP1", + "gas": 2739308, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xb3", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x80", + "0xa0", + "0x37f", + "0x80", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x355" + ] + }, + { + "pc": 944, + "op": "POP", + "gas": 2739305, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xb3", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x80", + "0xa0", + "0x37f", + "0x80", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x355", + "0x7179993df93db69cfdefca8af12ffcc24f3188c" + ] + }, + { + "pc": 945, + "op": "JUMP", + "gas": 2739303, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xb3", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x80", + "0xa0", + "0x37f", + "0x80", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x355" + ] + }, + { + "pc": 853, + "op": "JUMPDEST", + "gas": 2739295, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xb3", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x80", + "0xa0", + "0x37f", + "0x80", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x7179993df93db69cfdefca8af12ffcc24f3188c" + ] + }, + { + "pc": 854, + "op": "DUP3", + "gas": 2739294, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xb3", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x80", + "0xa0", + "0x37f", + "0x80", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x7179993df93db69cfdefca8af12ffcc24f3188c" + ] + }, + { + "pc": 855, + "op": "MSTORE", + "gas": 2739291, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xb3", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x80", + "0xa0", + "0x37f", + "0x80", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x80" + ] + }, + { + "pc": 856, + "op": "POP", + "gas": 2739288, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xb3", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x80", + "0xa0", + "0x37f", + "0x80", + "0x7179993df93db69cfdefca8af12ffcc24f3188c" + ] + }, + { + "pc": 857, + "op": "POP", + "gas": 2739286, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xb3", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x80", + "0xa0", + "0x37f", + "0x80" + ] + }, + { + "pc": 858, + "op": "JUMP", + "gas": 2739284, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xb3", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x80", + "0xa0", + "0x37f" + ] + }, + { + "pc": 895, + "op": "JUMPDEST", + "gas": 2739276, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xb3", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x80", + "0xa0" + ] + }, + { + "pc": 896, + "op": "SWAP3", + "gas": 2739275, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xb3", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x80", + "0xa0" + ] + }, + { + "pc": 897, + "op": "SWAP2", + "gas": 2739272, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa0", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x80", + "0xb3" + ] + }, + { + "pc": 898, + "op": "POP", + "gas": 2739269, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa0", + "0xb3", + "0x80", + "0x7179993df93db69cfdefca8af12ffcc24f3188c" + ] + }, + { + "pc": 899, + "op": "POP", + "gas": 2739267, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa0", + "0xb3", + "0x80" + ] + }, + { + "pc": 900, + "op": "JUMP", + "gas": 2739265, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa0", + "0xb3" + ] + }, + { + "pc": 179, + "op": "JUMPDEST", + "gas": 2739257, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa0" + ] + }, + { + "pc": 180, + "op": "PUSH1", + "gas": 2739256, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa0" + ] + }, + { + "pc": 182, + "op": "MLOAD", + "gas": 2739253, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa0", + "0x40" + ] + }, + { + "pc": 183, + "op": "DUP1", + "gas": 2739250, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa0", + "0x80" + ] + }, + { + "pc": 184, + "op": "SWAP2", + "gas": 2739247, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0xa0", + "0x80", + "0x80" + ] + }, + { + "pc": 185, + "op": "SUB", + "gas": 2739244, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0x80", + "0x80", + "0xa0" + ] + }, + { + "pc": 186, + "op": "SWAP1", + "gas": 2739241, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x20408cd9", + "0x80", + "0x20" + ] + }, + { + "pc": 187, + "op": "RETURN", + "gas": 2739238, + "gasCost": 0, + "depth": 2, + "stack": [ + "0x20408cd9", + "0x20", + "0x80" + ] + }, + { + "pc": 1028, + "op": "ISZERO", + "gas": 2786034, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x20408cd9", + "0xa4", + "0x1" + ] + }, + { + "pc": 1029, + "op": "DUP1", + "gas": 2786031, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x20408cd9", + "0xa4", + "0x0" + ] + }, + { + "pc": 1030, + "op": "ISZERO", + "gas": 2786028, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x20408cd9", + "0xa4", + "0x0", + "0x0" + ] + }, + { + "pc": 1031, + "op": "PUSH2", + "gas": 2786025, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x20408cd9", + "0xa4", + "0x0", + "0x1" + ] + }, + { + "pc": 1034, + "op": "JUMPI", + "gas": 2786022, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x20408cd9", + "0xa4", + "0x0", + "0x1", + "0x414" + ] + }, + { + "pc": 1044, + "op": "JUMPDEST", + "gas": 2786012, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x20408cd9", + "0xa4", + "0x0" + ] + }, + { + "pc": 1045, + "op": "POP", + "gas": 2786011, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x20408cd9", + "0xa4", + "0x0" + ] + }, + { + "pc": 1046, + "op": "POP", + "gas": 2786009, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x20408cd9", + "0xa4" + ] + }, + { + "pc": 1047, + "op": "POP", + "gas": 2786007, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x20408cd9" + ] + }, + { + "pc": 1048, + "op": "POP", + "gas": 2786005, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a" + ] + }, + { + "pc": 1049, + "op": "PUSH1", + "gas": 2786003, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a" + ] + }, + { + "pc": 1051, + "op": "MLOAD", + "gas": 2786000, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x40" + ] + }, + { + "pc": 1052, + "op": "RETURNDATASIZE", + "gas": 2785997, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x80" + ] + }, + { + "pc": 1053, + "op": "PUSH1", + "gas": 2785995, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x80", + "0x20" + ] + }, + { + "pc": 1055, + "op": "NOT", + "gas": 2785992, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x80", + "0x20", + "0x1f" + ] + }, + { + "pc": 1056, + "op": "PUSH1", + "gas": 2785989, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x80", + "0x20", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0" + ] + }, + { + "pc": 1058, + "op": "DUP3", + "gas": 2785986, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x80", + "0x20", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", + "0x1f" + ] + }, + { + "pc": 1059, + "op": "ADD", + "gas": 2785983, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x80", + "0x20", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", + "0x1f", + "0x20" + ] + }, + { + "pc": 1060, + "op": "AND", + "gas": 2785980, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x80", + "0x20", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", + "0x3f" + ] + }, + { + "pc": 1061, + "op": "DUP3", + "gas": 2785977, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x80", + "0x20", + "0x20" + ] + }, + { + "pc": 1062, + "op": "ADD", + "gas": 2785974, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x80", + "0x20", + "0x20", + "0x80" + ] + }, + { + "pc": 1063, + "op": "DUP1", + "gas": 2785971, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x80", + "0x20", + "0xa0" + ] + }, + { + "pc": 1064, + "op": "PUSH1", + "gas": 2785968, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x80", + "0x20", + "0xa0", + "0xa0" + ] + }, + { + "pc": 1066, + "op": "MSTORE", + "gas": 2785965, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x80", + "0x20", + "0xa0", + "0xa0", + "0x40" + ] + }, + { + "pc": 1067, + "op": "POP", + "gas": 2785962, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x80", + "0x20", + "0xa0" + ] + }, + { + "pc": 1068, + "op": "DUP2", + "gas": 2785960, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x80", + "0x20" + ] + }, + { + "pc": 1069, + "op": "ADD", + "gas": 2785957, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x80", + "0x20", + "0x80" + ] + }, + { + "pc": 1070, + "op": "SWAP1", + "gas": 2785954, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x80", + "0xa0" + ] + }, + { + "pc": 1071, + "op": "PUSH2", + "gas": 2785951, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0xa0", + "0x80" + ] + }, + { + "pc": 1074, + "op": "SWAP2", + "gas": 2785948, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0xa0", + "0x80", + "0x438" + ] + }, + { + "pc": 1075, + "op": "SWAP1", + "gas": 2785945, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x438", + "0x80", + "0xa0" + ] + }, + { + "pc": 1076, + "op": "PUSH2", + "gas": 2785942, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x438", + "0xa0", + "0x80" + ] + }, + { + "pc": 1079, + "op": "JUMP", + "gas": 2785939, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x438", + "0xa0", + "0x80", + "0x5d2" + ] + }, + { + "pc": 1490, + "op": "JUMPDEST", + "gas": 2785931, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x438", + "0xa0", + "0x80" + ] + }, + { + "pc": 1491, + "op": "PUSH1", + "gas": 2785930, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x438", + "0xa0", + "0x80" + ] + }, + { + "pc": 1493, + "op": "PUSH1", + "gas": 2785927, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x438", + "0xa0", + "0x80", + "0x0" + ] + }, + { + "pc": 1495, + "op": "DUP3", + "gas": 2785924, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x438", + "0xa0", + "0x80", + "0x0", + "0x20" + ] + }, + { + "pc": 1496, + "op": "DUP5", + "gas": 2785921, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x438", + "0xa0", + "0x80", + "0x0", + "0x20", + "0x80" + ] + }, + { + "pc": 1497, + "op": "SUB", + "gas": 2785918, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x438", + "0xa0", + "0x80", + "0x0", + "0x20", + "0x80", + "0xa0" + ] + }, + { + "pc": 1498, + "op": "SLT", + "gas": 2785915, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x438", + "0xa0", + "0x80", + "0x0", + "0x20", + "0x20" + ] + }, + { + "pc": 1499, + "op": "ISZERO", + "gas": 2785912, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x438", + "0xa0", + "0x80", + "0x0", + "0x0" + ] + }, + { + "pc": 1500, + "op": "PUSH2", + "gas": 2785909, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x438", + "0xa0", + "0x80", + "0x0", + "0x1" + ] + }, + { + "pc": 1503, + "op": "JUMPI", + "gas": 2785906, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x438", + "0xa0", + "0x80", + "0x0", + "0x1", + "0x5e4" + ] + }, + { + "pc": 1508, + "op": "JUMPDEST", + "gas": 2785896, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x438", + "0xa0", + "0x80", + "0x0" + ] + }, + { + "pc": 1509, + "op": "PUSH1", + "gas": 2785895, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x438", + "0xa0", + "0x80", + "0x0" + ] + }, + { + "pc": 1511, + "op": "PUSH2", + "gas": 2785892, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x438", + "0xa0", + "0x80", + "0x0", + "0x0" + ] + }, + { + "pc": 1514, + "op": "DUP5", + "gas": 2785889, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x438", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2" + ] + }, + { + "pc": 1515, + "op": "DUP3", + "gas": 2785886, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x438", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0" + ] + }, + { + "pc": 1516, + "op": "DUP6", + "gas": 2785883, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x438", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x0" + ] + }, + { + "pc": 1517, + "op": "ADD", + "gas": 2785880, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x438", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x0", + "0x80" + ] + }, + { + "pc": 1518, + "op": "PUSH2", + "gas": 2785877, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x438", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80" + ] + }, + { + "pc": 1521, + "op": "JUMP", + "gas": 2785874, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x438", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x5a8" + ] + }, + { + "pc": 1448, + "op": "JUMPDEST", + "gas": 2785866, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x438", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80" + ] + }, + { + "pc": 1449, + "op": "PUSH1", + "gas": 2785865, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x438", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80" + ] + }, + { + "pc": 1451, + "op": "DUP2", + "gas": 2785862, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x438", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x0" + ] + }, + { + "pc": 1452, + "op": "MLOAD", + "gas": 2785859, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x438", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x0", + "0x80" + ] + }, + { + "pc": 1453, + "op": "SWAP1", + "gas": 2785856, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x438", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x0", + "0x7179993df93db69cfdefca8af12ffcc24f3188c" + ] + }, + { + "pc": 1454, + "op": "POP", + "gas": 2785853, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x438", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x0" + ] + }, + { + "pc": 1455, + "op": "PUSH2", + "gas": 2785851, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x438", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x7179993df93db69cfdefca8af12ffcc24f3188c" + ] + }, + { + "pc": 1458, + "op": "DUP2", + "gas": 2785848, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x438", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x5b7" + ] + }, + { + "pc": 1459, + "op": "PUSH2", + "gas": 2785845, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x438", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x5b7", + "0x7179993df93db69cfdefca8af12ffcc24f3188c" + ] + }, + { + "pc": 1462, + "op": "JUMP", + "gas": 2785842, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x438", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x5b7", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x731" + ] + }, + { + "pc": 1841, + "op": "JUMPDEST", + "gas": 2785834, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x438", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x5b7", + "0x7179993df93db69cfdefca8af12ffcc24f3188c" + ] + }, + { + "pc": 1842, + "op": "PUSH2", + "gas": 2785833, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x438", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x5b7", + "0x7179993df93db69cfdefca8af12ffcc24f3188c" + ] + }, + { + "pc": 1845, + "op": "DUP2", + "gas": 2785830, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x438", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x5b7", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x73a" + ] + }, + { + "pc": 1846, + "op": "PUSH2", + "gas": 2785827, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x438", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x5b7", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x73a", + "0x7179993df93db69cfdefca8af12ffcc24f3188c" + ] + }, + { + "pc": 1849, + "op": "JUMP", + "gas": 2785824, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x438", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x5b7", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x73a", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x6cc" + ] + }, + { + "pc": 1740, + "op": "JUMPDEST", + "gas": 2785816, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x438", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x5b7", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x73a", + "0x7179993df93db69cfdefca8af12ffcc24f3188c" + ] + }, + { + "pc": 1741, + "op": "PUSH1", + "gas": 2785815, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x438", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x5b7", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x73a", + "0x7179993df93db69cfdefca8af12ffcc24f3188c" + ] + }, + { + "pc": 1743, + "op": "PUSH2", + "gas": 2785812, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x438", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x5b7", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x73a", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x0" + ] + }, + { + "pc": 1746, + "op": "DUP3", + "gas": 2785809, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x438", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x5b7", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x73a", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x0", + "0x6d7" + ] + }, + { + "pc": 1747, + "op": "PUSH2", + "gas": 2785806, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x438", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x5b7", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x73a", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x0", + "0x6d7", + "0x7179993df93db69cfdefca8af12ffcc24f3188c" + ] + }, + { + "pc": 1750, + "op": "JUMP", + "gas": 2785803, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x438", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x5b7", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x73a", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x0", + "0x6d7", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x6de" + ] + }, + { + "pc": 1758, + "op": "JUMPDEST", + "gas": 2785795, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x438", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x5b7", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x73a", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x0", + "0x6d7", + "0x7179993df93db69cfdefca8af12ffcc24f3188c" + ] + }, + { + "pc": 1759, + "op": "PUSH1", + "gas": 2785794, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x438", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x5b7", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x73a", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x0", + "0x6d7", + "0x7179993df93db69cfdefca8af12ffcc24f3188c" + ] + }, + { + "pc": 1761, + "op": "PUSH20", + "gas": 2785791, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x438", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x5b7", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x73a", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x0", + "0x6d7", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x0" + ] + }, + { + "pc": 1782, + "op": "DUP3", + "gas": 2785788, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x438", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x5b7", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x73a", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x0", + "0x6d7", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 1783, + "op": "AND", + "gas": 2785785, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x438", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x5b7", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x73a", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x0", + "0x6d7", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x7179993df93db69cfdefca8af12ffcc24f3188c" + ] + }, + { + "pc": 1784, + "op": "SWAP1", + "gas": 2785782, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x438", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x5b7", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x73a", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x0", + "0x6d7", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x0", + "0x7179993df93db69cfdefca8af12ffcc24f3188c" + ] + }, + { + "pc": 1785, + "op": "POP", + "gas": 2785779, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x438", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x5b7", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x73a", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x0", + "0x6d7", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x0" + ] + }, + { + "pc": 1786, + "op": "SWAP2", + "gas": 2785777, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x438", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x5b7", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x73a", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x0", + "0x6d7", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x7179993df93db69cfdefca8af12ffcc24f3188c" + ] + }, + { + "pc": 1787, + "op": "SWAP1", + "gas": 2785774, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x438", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x5b7", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x73a", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x0", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x6d7" + ] + }, + { + "pc": 1788, + "op": "POP", + "gas": 2785771, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x438", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x5b7", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x73a", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x0", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x6d7", + "0x7179993df93db69cfdefca8af12ffcc24f3188c" + ] + }, + { + "pc": 1789, + "op": "JUMP", + "gas": 2785769, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x438", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x5b7", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x73a", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x0", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x6d7" + ] + }, + { + "pc": 1751, + "op": "JUMPDEST", + "gas": 2785761, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x438", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x5b7", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x73a", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x0", + "0x7179993df93db69cfdefca8af12ffcc24f3188c" + ] + }, + { + "pc": 1752, + "op": "SWAP1", + "gas": 2785760, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x438", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x5b7", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x73a", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x0", + "0x7179993df93db69cfdefca8af12ffcc24f3188c" + ] + }, + { + "pc": 1753, + "op": "POP", + "gas": 2785757, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x438", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x5b7", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x73a", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x0" + ] + }, + { + "pc": 1754, + "op": "SWAP2", + "gas": 2785755, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x438", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x5b7", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x73a", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x7179993df93db69cfdefca8af12ffcc24f3188c" + ] + }, + { + "pc": 1755, + "op": "SWAP1", + "gas": 2785752, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x438", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x5b7", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x73a" + ] + }, + { + "pc": 1756, + "op": "POP", + "gas": 2785749, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x438", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x5b7", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x73a", + "0x7179993df93db69cfdefca8af12ffcc24f3188c" + ] + }, + { + "pc": 1757, + "op": "JUMP", + "gas": 2785747, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x438", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x5b7", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x73a" + ] + }, + { + "pc": 1850, + "op": "JUMPDEST", + "gas": 2785739, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x438", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x5b7", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x7179993df93db69cfdefca8af12ffcc24f3188c" + ] + }, + { + "pc": 1851, + "op": "DUP2", + "gas": 2785738, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x438", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x5b7", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x7179993df93db69cfdefca8af12ffcc24f3188c" + ] + }, + { + "pc": 1852, + "op": "EQ", + "gas": 2785735, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x438", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x5b7", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x7179993df93db69cfdefca8af12ffcc24f3188c" + ] + }, + { + "pc": 1853, + "op": "PUSH2", + "gas": 2785732, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x438", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x5b7", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x1" + ] + }, + { + "pc": 1856, + "op": "JUMPI", + "gas": 2785729, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x438", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x5b7", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x1", + "0x745" + ] + }, + { + "pc": 1861, + "op": "JUMPDEST", + "gas": 2785719, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x438", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x5b7", + "0x7179993df93db69cfdefca8af12ffcc24f3188c" + ] + }, + { + "pc": 1862, + "op": "POP", + "gas": 2785718, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x438", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x5b7", + "0x7179993df93db69cfdefca8af12ffcc24f3188c" + ] + }, + { + "pc": 1863, + "op": "JUMP", + "gas": 2785716, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x438", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x5b7" + ] + }, + { + "pc": 1463, + "op": "JUMPDEST", + "gas": 2785708, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x438", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x7179993df93db69cfdefca8af12ffcc24f3188c" + ] + }, + { + "pc": 1464, + "op": "SWAP3", + "gas": 2785707, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x438", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x7179993df93db69cfdefca8af12ffcc24f3188c" + ] + }, + { + "pc": 1465, + "op": "SWAP2", + "gas": 2785704, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x438", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0xa0", + "0x80", + "0x5f2" + ] + }, + { + "pc": 1466, + "op": "POP", + "gas": 2785701, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x438", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x5f2", + "0x80", + "0xa0" + ] + }, + { + "pc": 1467, + "op": "POP", + "gas": 2785699, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x438", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x5f2", + "0x80" + ] + }, + { + "pc": 1468, + "op": "JUMP", + "gas": 2785697, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x438", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x5f2" + ] + }, + { + "pc": 1522, + "op": "JUMPDEST", + "gas": 2785689, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x438", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x7179993df93db69cfdefca8af12ffcc24f3188c" + ] + }, + { + "pc": 1523, + "op": "SWAP2", + "gas": 2785688, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x438", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x7179993df93db69cfdefca8af12ffcc24f3188c" + ] + }, + { + "pc": 1524, + "op": "POP", + "gas": 2785685, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x438", + "0xa0", + "0x80", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x0", + "0x0" + ] + }, + { + "pc": 1525, + "op": "POP", + "gas": 2785683, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x438", + "0xa0", + "0x80", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x0" + ] + }, + { + "pc": 1526, + "op": "SWAP3", + "gas": 2785681, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x438", + "0xa0", + "0x80", + "0x7179993df93db69cfdefca8af12ffcc24f3188c" + ] + }, + { + "pc": 1527, + "op": "SWAP2", + "gas": 2785678, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0xa0", + "0x80", + "0x438" + ] + }, + { + "pc": 1528, + "op": "POP", + "gas": 2785675, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x438", + "0x80", + "0xa0" + ] + }, + { + "pc": 1529, + "op": "POP", + "gas": 2785673, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x438", + "0x80" + ] + }, + { + "pc": 1530, + "op": "JUMP", + "gas": 2785671, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x438" + ] + }, + { + "pc": 1080, + "op": "JUMPDEST", + "gas": 2785663, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x7179993df93db69cfdefca8af12ffcc24f3188c" + ] + }, + { + "pc": 1081, + "op": "PUSH1", + "gas": 2785662, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x7179993df93db69cfdefca8af12ffcc24f3188c" + ] + }, + { + "pc": 1083, + "op": "PUSH1", + "gas": 2785659, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x1" + ] + }, + { + "pc": 1085, + "op": "PUSH2", + "gas": 2785656, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x1", + "0x0" + ] + }, + { + "pc": 1088, + "op": "EXP", + "gas": 2785653, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x1", + "0x0", + "0x100" + ] + }, + { + "pc": 1089, + "op": "DUP2", + "gas": 2785643, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x1", + "0x1" + ] + }, + { + "pc": 1090, + "op": "SLOAD", + "gas": 2785640, + "gasCost": 2100, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x1", + "0x1", + "0x1" + ], + "storage": { + "0x0000000000000000000000000000000000000000000000000000000000000000": "0x000000000000000000000000467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x0000000000000000000000000000000000000000000000000000000000000001": "0x000000000000000000000000765868fc6dc978441a7a12fcb1c48f70f23d1792" + }, + "extraData": { + "proofList": [ + { + "address": "0xda1ad647621a1984ce21b0bab020005fe3b5f4da", + "nonce": 1, + "balance": "0x0", + "codeHash": "0x00c2455a35210099bbbb95bdd1b6a9bfc4702d98ba0f971009391cd8f970e729", + "storage": { + "key": "0x0000000000000000000000000000000000000000000000000000000000000001", + "value": "0x000000000000000000000000765868fc6dc978441a7a12fcb1c48f70f23d1792" + } + } + ] + } + }, + { + "pc": 1091, + "op": "DUP2", + "gas": 2783540, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x1", + "0x1", + "0x765868fc6dc978441a7a12fcb1c48f70f23d1792" + ] + }, + { + "pc": 1092, + "op": "PUSH20", + "gas": 2783537, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x1", + "0x1", + "0x765868fc6dc978441a7a12fcb1c48f70f23d1792", + "0x1" + ] + }, + { + "pc": 1113, + "op": "MUL", + "gas": 2783534, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x1", + "0x1", + "0x765868fc6dc978441a7a12fcb1c48f70f23d1792", + "0x1", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 1114, + "op": "NOT", + "gas": 2783529, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x1", + "0x1", + "0x765868fc6dc978441a7a12fcb1c48f70f23d1792", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 1115, + "op": "AND", + "gas": 2783526, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x1", + "0x1", + "0x765868fc6dc978441a7a12fcb1c48f70f23d1792", + "0xffffffffffffffffffffffff0000000000000000000000000000000000000000" + ] + }, + { + "pc": 1116, + "op": "SWAP1", + "gas": 2783523, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x1", + "0x1", + "0x0" + ] + }, + { + "pc": 1117, + "op": "DUP4", + "gas": 2783520, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x1", + "0x0", + "0x1" + ] + }, + { + "pc": 1118, + "op": "PUSH20", + "gas": 2783517, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x1", + "0x0", + "0x1", + "0x7179993df93db69cfdefca8af12ffcc24f3188c" + ] + }, + { + "pc": 1139, + "op": "AND", + "gas": 2783514, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x1", + "0x0", + "0x1", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 1140, + "op": "MUL", + "gas": 2783511, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x1", + "0x0", + "0x1", + "0x7179993df93db69cfdefca8af12ffcc24f3188c" + ] + }, + { + "pc": 1141, + "op": "OR", + "gas": 2783506, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x1", + "0x0", + "0x7179993df93db69cfdefca8af12ffcc24f3188c" + ] + }, + { + "pc": 1142, + "op": "SWAP1", + "gas": 2783503, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x1", + "0x7179993df93db69cfdefca8af12ffcc24f3188c" + ] + }, + { + "pc": 1143, + "op": "SSTORE", + "gas": 2783500, + "gasCost": 2900, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x1" + ], + "storage": { + "0x0000000000000000000000000000000000000000000000000000000000000000": "0x000000000000000000000000467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x0000000000000000000000000000000000000000000000000000000000000001": "0x00000000000000000000000007179993df93db69cfdefca8af12ffcc24f3188c" + }, + "extraData": { + "proofList": [ + { + "address": "0xda1ad647621a1984ce21b0bab020005fe3b5f4da", + "nonce": 1, + "balance": "0x0", + "codeHash": "0x00c2455a35210099bbbb95bdd1b6a9bfc4702d98ba0f971009391cd8f970e729", + "storage": { + "key": "0x0000000000000000000000000000000000000000000000000000000000000001", + "value": "0x000000000000000000000000765868fc6dc978441a7a12fcb1c48f70f23d1792" + } + } + ] + } + }, + { + "pc": 1144, + "op": "POP", + "gas": 2780600, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x7179993df93db69cfdefca8af12ffcc24f3188c" + ] + }, + { + "pc": 1145, + "op": "POP", + "gas": 2780598, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a" + ] + }, + { + "pc": 1146, + "op": "POP", + "gas": 2780596, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5", + "0x182cae2c253" + ] + }, + { + "pc": 1147, + "op": "JUMP", + "gas": 2780594, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x5696ec35", + "0xf5" + ] + }, + { + "pc": 245, + "op": "JUMPDEST", + "gas": 2780586, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x5696ec35" + ] + }, + { + "pc": 246, + "op": "STOP", + "gas": 2780585, + "gasCost": 0, + "depth": 1, + "stack": [ + "0x5696ec35" + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/trie/zkproof/delete_trace.json b/internal/utesting/blocktraces/delete.json similarity index 63% rename from trie/zkproof/delete_trace.json rename to internal/utesting/blocktraces/delete.json index 1d0a0098a8..96341ac002 100644 --- a/trie/zkproof/delete_trace.json +++ b/internal/utesting/blocktraces/delete.json @@ -1,140 +1,134 @@ { "blockTrace": { - "number": "0x74", - "hash": "0x995bedf5bfb601afe76fca8bc42220d44f92f4d693706676c26c015be93e63b2", - "gasLimit": 7527660, + "number": "0x52", + "hash": "0xb0693254650e67ea230e7029a8ffc0822074406fb64ea3cce33517483925a53d", + "gasLimit": 7281984, "difficulty": "0x2", - "baseFee": "0x1365", + "baseFee": "0x19c53", "coinbase": { "address": "0x0000000000000000000000000000000000000000", "nonce": 0, "balance": "0x0", "codeHash": "0x0000000000000000000000000000000000000000000000000000000000000000" }, - "time": 1658365662, + "time": 1660051837, "transactions": [ { - "type": 2, - "nonce": 112, + "type": 0, + "nonce": 104, "gas": 3023192, - "gasPrice": "0x5968478b", + "gasPrice": "0xb2d5e282", "from": "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "to": "0x5847653f3c2e05aef6838550513fda1a8528dcb3", + "to": "0xd9a6bd6326a696711a4bc9a6500b5df879c4aa24", "chainId": "0xcf55", "value": "0x0", - "data": "0x40c10f190000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571000000000000000000000000000000000000000000000000000001821e4b97d6", + "data": "0x40c10f190000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd65710000000000000000000000000000000000000000000000000000018282cc9317", "isCreate": false, - "v": "0x1", - "r": "0x4ca41c5126c388f4c7135660f2c06a54220bafc559097120038554dc6932e994", - "s": "0x591452807a290f3b9bed977baffb9ebacc1214381c3dff776ec5bd2710bb274c" + "v": "0x19ece", + "r": "0x5bc2bb5ab97798c840acdb22467c8f9822ef845c6205f6b6894f1f6b23c5728e", + "s": "0x16d2a42e50df09f9ba3b11a9408e44e7139d4508f0c3289a599bf594bd6651a5" }, { - "type": 2, - "nonce": 113, + "type": 0, + "nonce": 105, "gas": 3024600, - "gasPrice": "0x5968478b", + "gasPrice": "0xb2d5e282", "from": "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "to": "0x5847653f3c2e05aef6838550513fda1a8528dcb3", + "to": "0xd9a6bd6326a696711a4bc9a6500b5df879c4aa24", "chainId": "0xcf55", "value": "0x0", - "data": "0x23b872dd0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5000000000000000000000000000000000000000000000000000001821e4b97d6", + "data": "0x23b872dd0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba50000000000000000000000000000000000000000000000000000018282cc9317", "isCreate": false, - "v": "0x1", - "r": "0x3b2f21e311dedd4c314efa5dd17328f812024bb72951ddc963abbec5ec6cbd1b", - "s": "0x6db3405bd11a0f5669609e970c779f32e6c6054b8b0c579a5d032bce466ec486" + "v": "0x19ecd", + "r": "0x5dfa77a4f4e99c049448905fbfbb2182c704679ef0201245102315899b229a9c", + "s": "0x5bd64112958bb890d696f391d9713ccb70b79882ffe9bb3cd7cebf06c82eb453" }, { "type": 2, - "nonce": 14, + "nonce": 10, "gas": 3021784, - "gasPrice": "0x59685b4a", + "gasPrice": "0x596bdcac", "from": "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "to": "0x5847653f3c2e05aef6838550513fda1a8528dcb3", + "to": "0xd9a6bd6326a696711a4bc9a6500b5df879c4aa24", "chainId": "0xcf55", "value": "0x0", - "data": "0x42966c68000000000000000000000000000000000000000000000000000001821e4b97d6", + "data": "0x42966c680000000000000000000000000000000000000000000000000000018282cc9317", "isCreate": false, "v": "0x1", - "r": "0xed9db7f4dbe6d9c44587403cbf5d84fa73c807dbd245c90882854e34cee83819", - "s": "0x2f89ec84d97d082091674677669ca5a02b457867473fd699b44f0fdcde3ad89b" + "r": "0xec77c420ce4ee746c9c0e6d25f05c540a6ef07740ee41c8d47c2d00d88212f84", + "s": "0x541b3d94758c951dc66a67c45069ac59ca91c12af66f0ed42ab3ea6e09b54195" } ] }, "storageTrace": { - "rootBefore": "0x153f9ae7171140f98e7783183be33d84f58102ac4cc2f9af72215fb46dc38c17", - "rootAfter": "0x217e31dfb3102a602d23bfc6f2f134b05c51d6d0f0a86abc100cce0d5dbdccbd", + "rootBefore": "0x0a511744d88452309c772d19ec7edaccb8c65ddfa8c1c327d63d62dac526716e", + "rootAfter": "0x21657558dccba5eced2b9661274ae2ce35b648fc80c52b25a3e01672d34b3519", "proofs": { "0x4cb1aB63aF5D8931Ce09673EbD8ae2ce16fD6571": [ - "0x003d4e24355756265585f139a469e6551627286f79a8db9ecdd2f293d555d1d8156e8cc3d26d602af5d3e15227227e87b2b59a66bd7c73ddfa8457b8cbc671ea28", - "0x00603e21ebf8347fef548726e5b087928ff28bbce516e97d10cfdbd3f965439909b08632d91acddee72b83ce5b028b52aeaeccf2e1a89f53fc0446ab443b617812", - "0x0016eab1722eeb0a7a94c49ec32419c7de863b891eca29598b10d668669a9806090af33831cde25ce42d7879de7da54788412e217d4631c9f17c7e9309898d6915", - "0x007b8467bb883f68c9741fdd26d34d095b9727139c5f91243a8e571086cbdfe50fb9b5450548241673c5c6b77730f2613b5943165d08931ff3da9b45c3742ddb0f", - "0x00504d00f97691e95b26869f3a3a00e500927037cb4c71afcd1c18d1cc5e78b62d5853f78346fc3c128a64874141784f78f6c4e9102e02b9a206f5df548b48491c", - "0x0078c7b59d789c294f21339f0a872b81a418d6b24273fe959dc00126520917970d45a8373e7697cde86d00fecdbcd53ff42b08c15fd123d69364451ccf89dcfd1a", - "0x000000000000000000000000000000000000000000000000000000000000000000f6cae2163871d052569d0fa2ea7e575a1e1c541cc862dc74a9803ab3a2878805", - "0x005c4f84a26d7c13aea5d1eda2f5f793a21a5f6fbe6bf33afc60a714d84a2e5c1ba72c67edca1db779b38140aaee9baf382c96315f0884909da4a4a7480f3ab82d", - "0x017581e431a68d0fa641e14a7d29a6c2b150db6da1d13f59dee6f7f492a0bebd290404000000000000000000000000000000000000000000000000000000000000000000700056bc75e2d630ffffffffffffffffffffffffffffffffffffb14f658c270a4ec5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470000000000000000000000000000000000000000000000000000000000000000000", + "0x00256d7909cbe445036c988d7bf80f46a91e6944c2f4dc040a4b3accbfe43d63082999be2601771f40e0e19194c13e9f3fcd2b18eb44a3bb3a32cca95c3d73d834", + "0x002c70c97160397d116549b572667ba4bcfc50316150b5db610834562af5a74e970d2de30f111b98642b95d20c7ad04b1238649044d47040de699de9bad8ab2a2c", + "0x0014ced77e42df8602549fdf9b8509d4cb6765e02256219619e2022ebf3b7351ab01a548e712c42f78e474781872e7f73c8763ad9aca12cdc2b340f8040f93d8f5", + "0x00065572926d31351d322df311ee904993ac0e79bc4600772924415ff2486905ee0f39394f0820bebc2fc3613c84d32a964e51bcad3a91c251f5348f0293aea2b1", + "0x00000000000000000000000000000000000000000000000000000000000000000017915464946b3d66f2e31b4fba6e492880d4abfdd18ce2948ea000a1cca2e6bc", + "0x002248f47a53d7e981b187961b71a36033d9ef59273228ec127666f43c5d0fd2c50546f52f95c3a2b5d6c61e6113ed084bfcc6b2f448176e2289024fcced08ce97", + "0x00000000000000000000000000000000000000000000000000000000000000000011753fce679f006d184370b88349cd7233c200028e47d2437896bd7de122d0ba", + "0x0021c858d309a2e778712c29786fb117f1e7c5ec0de3243e360ef2244f233228f92fe8b70043185278f8f6c75d7057d75ebc62e82052f480dfc207de3b0e89700e", + "0x0129bdbea092f4f7e6de593fd1a16ddb50b1c2a6297d4ae141a60f8da631e481750404000000000000000000000000000000000000000000000000000000000000000000680056bc75e2d630ffffffffffffffffffffffffffffffffffff3317f5333828dac5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470000000000000000000000000000000000000000000000000000000000000000000", "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" ], - "0x5847653F3c2E05aef6838550513fDA1A8528DCb3": [ - "0x003d4e24355756265585f139a469e6551627286f79a8db9ecdd2f293d555d1d8156e8cc3d26d602af5d3e15227227e87b2b59a66bd7c73ddfa8457b8cbc671ea28", - "0x00c6512e5f7a009bab7916fddbecc230de912849a0a13f03639ebbd49c3f42282ae7cb143fc0ec716ddcf502a4a91b3c420cf89e1a58c75c63c1a296b9748a872d", - "0x00376a69cbc9b2f52110fbf410e68369eb05ca5441d575594a816cd9b88f676f17b3eda526502208e66c787b8bd64c93ed963e4a3d5bf7e20cca24fce95a236e10", - "0x00a268c40f0bf2a86c539831ce19fdcc119577a520d4edc49be7e17b80611af6249e50de909d1fbf300487684aa2c9090f81926168fb6bdd393ac16e58e9e0ca0f", - "0x001c4388adb0f6e79ab3acb88c8295d0fd3eb428a6ba9fbf4f949a29680ab250225d2858031b288feae98f07ae5bff5b1e14fd6b1dc465dd3526b6d40e23b1330d", - "0x008ff66054000959fa56cdeaa64cd9563a60e47f7c1e6b9ad77a119c3c2151df0afa3a968241bccd7fac6f3bb66ce910d3dd41ac58c30ddfe5bc587c3d24a52709", - "0x00a043b85cbde7deac32a7012ecf06c76fbf0e26562daec4b9e49c3e9e7e5f8413c57ecdf95fe0b5e9d18979570d8c50faf6ea6b410fb9619040e555b3b8aa7a14", - "0x0138a7456d0b467b2e9a007b93494ee23cef1a22928d112201ee54f33d259df40804040000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000009772386adf211243e408babcc6954a63410e2d2b7eb665442221c5d5fcc7ccf027694212f58ec318f2de89e8f78d0ce20b6c9308728608acec1057daf8c3beb100", + "0xd9A6bD6326a696711A4bc9A6500b5dF879C4aA24": [ + "0x00256d7909cbe445036c988d7bf80f46a91e6944c2f4dc040a4b3accbfe43d63082999be2601771f40e0e19194c13e9f3fcd2b18eb44a3bb3a32cca95c3d73d834", + "0x000a464e1053d03aebedc32a74140ce93c0b1983b78897f18876dae29e0b84ca8e0e592f13245d94a61ca21f8e355afd60425b333f1cc01a7af006de57250538b1", + "0x00127ca5bdc103842568de79fa380a19a8272f9bc12faa22b442e76c04e5d7abd11a7431479d9900380716111ba2384e9d3ba1cf05ba3a33c689576cf21897cec6", + "0x00140d15a9783807e310c1adfadf0bbfa6df1fdaf108d6fb6b0b4ea422661a80cb0949d1f299cbc7cabec407abbf6a0c698ec882620b9637915e717b3013d7fc71", + "0x000f94c77dfccbabac05e0c30815935f1c9f3a0d0e373c0ce4f1a46df08ec0ca6d1a83c15abc2d9d1b7eae6db63154296d649f07b35fbfa2c5a23a8d1702f0a9a9", + "0x010aca42eb1e0bc5a1e794c2e0840cdda14c6daadf1e0a5d1a21ba91285c6ab82804040000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000009772386adf211243e408babcc6954a63410e2d2b7eb665442221c5d5fcc7ccf01fc09baf1f99baf9298bf0ca8c2a3ed1870ebc8501d1bb75da613b90f008bacc00", "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" ], "0xec9C8B21a9f8e5Eb22373eDf7D0860Df0b98EBa5": [ - "0x003d4e24355756265585f139a469e6551627286f79a8db9ecdd2f293d555d1d8156e8cc3d26d602af5d3e15227227e87b2b59a66bd7c73ddfa8457b8cbc671ea28", - "0x00c6512e5f7a009bab7916fddbecc230de912849a0a13f03639ebbd49c3f42282ae7cb143fc0ec716ddcf502a4a91b3c420cf89e1a58c75c63c1a296b9748a872d", - "0x00376a69cbc9b2f52110fbf410e68369eb05ca5441d575594a816cd9b88f676f17b3eda526502208e66c787b8bd64c93ed963e4a3d5bf7e20cca24fce95a236e10", - "0x00a268c40f0bf2a86c539831ce19fdcc119577a520d4edc49be7e17b80611af6249e50de909d1fbf300487684aa2c9090f81926168fb6bdd393ac16e58e9e0ca0f", - "0x001c4388adb0f6e79ab3acb88c8295d0fd3eb428a6ba9fbf4f949a29680ab250225d2858031b288feae98f07ae5bff5b1e14fd6b1dc465dd3526b6d40e23b1330d", - "0x008ff66054000959fa56cdeaa64cd9563a60e47f7c1e6b9ad77a119c3c2151df0afa3a968241bccd7fac6f3bb66ce910d3dd41ac58c30ddfe5bc587c3d24a52709", - "0x00a043b85cbde7deac32a7012ecf06c76fbf0e26562daec4b9e49c3e9e7e5f8413c57ecdf95fe0b5e9d18979570d8c50faf6ea6b410fb9619040e555b3b8aa7a14", - "0x000000000000000000000000000000000000000000000000000000000000000000535a086a5bdb885426dec301b9add9bc1683e8bda4a8baed99b3722f94c5c80b", - "0x00b032e14074ef7471e3812867a9cd40a34ebc715856c7d8f8cf92d968b2ceb415f8cbfde5ebfbef80a336d018e09d8bc80a4810d1e4cc0a0491ebda3471061920", - "0x01f8266d5345762716cb8d5697288e17210b587580f49cabc83b1d7214e193d90204040000000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000003d590f7cba0f3dc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470000000000000000000000000000000000000000000000000000000000000000000", + "0x00256d7909cbe445036c988d7bf80f46a91e6944c2f4dc040a4b3accbfe43d63082999be2601771f40e0e19194c13e9f3fcd2b18eb44a3bb3a32cca95c3d73d834", + "0x000a464e1053d03aebedc32a74140ce93c0b1983b78897f18876dae29e0b84ca8e0e592f13245d94a61ca21f8e355afd60425b333f1cc01a7af006de57250538b1", + "0x00127ca5bdc103842568de79fa380a19a8272f9bc12faa22b442e76c04e5d7abd11a7431479d9900380716111ba2384e9d3ba1cf05ba3a33c689576cf21897cec6", + "0x00140d15a9783807e310c1adfadf0bbfa6df1fdaf108d6fb6b0b4ea422661a80cb0949d1f299cbc7cabec407abbf6a0c698ec882620b9637915e717b3013d7fc71", + "0x000f94c77dfccbabac05e0c30815935f1c9f3a0d0e373c0ce4f1a46df08ec0ca6d1a83c15abc2d9d1b7eae6db63154296d649f07b35fbfa2c5a23a8d1702f0a9a9", + "0x0102d993e114721d3bc8ab9cf48075580b21178e2897568dcb16277645536d26f804040000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000093a6e0d71dc0f7c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470000000000000000000000000000000000000000000000000000000000000000000", "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" ] }, "storageProofs": { - "0x5847653F3c2E05aef6838550513fDA1A8528DCb3": { - "0x94e54a518d3c6f57d74f2c55b0483a8949b24c8947e1167ff82edf88b68212e6": [ - "0x00ad4ed85b07982c911365eb647b5b1c19ba3036b5d5d00b9a930bf1668aeda412f085cc41141012fb6a4c1169c86361b0be0d6ece313a29b0076ad09e1e125d25", - "0x004fef56c3c35d66b3e929867dad69579f9a8dd66ac4ee6154cc9aeb053002d60898d7719a52a588f7ef170583ca6f3485092ffd38768c781a5175e74d4d673001", - "0x006fb5aeb3da70522314a8a41429237b1b28827b4b9ada7085f55b36b9544a53206fa0ce482a11f4caef33207a8dd92637fe72adcbdf0ed78bc847c45666c00217", - "0x01236a1c45f5bbe1d82fe050186038c5f58fffe8eb68f2c1c0e621595751e3fe1f010100000000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd657100", + "0xd9A6bD6326a696711A4bc9A6500b5dF879C4aA24": { + "0x2b81c5ca775b32a00e4d070917698ec780b1570a5f3e34d5788e2f5b776d4b81": [ + "0x0005ab6a52d8b367064ac74dce747a7c78d31c830a3c6123024420f6cdca082eec2f97a37accb3af9413ecad862b24ca7f68fbf97adfe9f79bf4e6014c4dcd68ae", + "0x000e3c67540bccf8e2c7a067cfc016b8e60529cbf2d9b43341163984f5f0905f0103282857e91da8d921f12b28b19500f8d59251924f99a7e71d37b0e8ca2a44c0", + "0x000f4b8943cab7e27243ce5356b7c844b2df5c8f5f33e49fdfdf0ec378bf085abc0b659571da4aba746645b02a663ff4dc88420ee734b5f4e39a2536553c403638", + "0x0000000000000000000000000000000000000000000000000000000000000000001cbfed71e5901443225c367679cabb898962a2e1933b0c790d39d06366d54591", + "0x02", "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" ], - "0xa5fe1795ba21fb40f3bbfeafa51fa5cdc4a157f3ff388bbab3251269b2084c6d": [ - "0x00ad4ed85b07982c911365eb647b5b1c19ba3036b5d5d00b9a930bf1668aeda412f085cc41141012fb6a4c1169c86361b0be0d6ece313a29b0076ad09e1e125d25", - "0x00ebcf69eec5fc365b94b80cdb33c1bf070e08aebbeb9411dd65bb606087d55818117ecedf3cd6564e4066070ce95e2bb410aae5ace43dcf7016efd7c4c4003c1e", - "0x00318274b321f3829d1a738bac294198f6b069f67a2bdb742c67cf51f5e0670e06e08fc7b115e79c307838a13796aab4f6b889c129b8014b2faece4841d47c140a", - "0x007c17201e66c1949dda696daca0ef916309790712d873302e6d3fbfd8a37dd3293f1eefda56d0e3b867f6f039ce0fb2200fc32750e499aa2cde616f8b1d65301d", - "0x0091192d539e0db3f79df2ad9b0e65ddd464778e3a535e283f7e0eba68b8b8710dca9b7f3453502b2a3db1f439a34960a225c9d3e3de38913bcb008fd0a579be0f", - "0x00407e088eb3497aa8c352466761a32bea6f293b8d363164a45ca91eb629bbed023965b83e0fb3c7b5908c0c986dfbfcc47f31c75778f539dfb74001598ef6a41e", - "0x01024bf643b1070d640e8e0a71057748118421d732eab2484bb0fd88cde7b0cf1001010000000000000000000000000000000000000000000000000000000000000000000000", + "0xba42f16ce9ab53f08b2613fa17b1a7bf7ae8df7c12ce4c0a71e9af736ce25154": [ + "0x0005ab6a52d8b367064ac74dce747a7c78d31c830a3c6123024420f6cdca082eec2f97a37accb3af9413ecad862b24ca7f68fbf97adfe9f79bf4e6014c4dcd68ae", + "0x00137a0046fa378a979734e6a1a5210f63994ec80c088edda0c90de6d0ffdeec0c0a29201787d2af43fd8a09bab84bbd0f0281b8aa6724cc2900000f91b6033b1b", + "0x002c9f7cb9ccc72e1c52911074f12d69d52187cb09f31fe421b685cbccf5941d4117a2cf80511bf8cc01a65dc803fdbb368ac2dc7c3a6caba39bd81fdd5260754b", + "0x001455cb6d38cabaeb8cdebc9396fa1e1978c5767af12d53f156caa40940270144016618d3961d87dbc548b826a4cf512f66be0b32db8ff301114b885eb2c32c24", + "0x010fe94c3650339827b21e5a13dc29730bf94f4e851acd3d8c28a61d05bdc8ef6f01010000000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba500", "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" ], "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce": [ - "0x00ad4ed85b07982c911365eb647b5b1c19ba3036b5d5d00b9a930bf1668aeda412f085cc41141012fb6a4c1169c86361b0be0d6ece313a29b0076ad09e1e125d25", - "0x00ebcf69eec5fc365b94b80cdb33c1bf070e08aebbeb9411dd65bb606087d55818117ecedf3cd6564e4066070ce95e2bb410aae5ace43dcf7016efd7c4c4003c1e", - "0x00318274b321f3829d1a738bac294198f6b069f67a2bdb742c67cf51f5e0670e06e08fc7b115e79c307838a13796aab4f6b889c129b8014b2faece4841d47c140a", - "0x000000000000000000000000000000000000000000000000000000000000000000bfe49bc4ac20539da22c266170d57da5b9b4b40f8da39e35af298656dec26127", - "0x008fea28790f62f249604813687e3dc0009b41eadf37655e5d923358d942a6372492e0a3e8db7c8c37355fe7e6e6eb4231bd1e5bb54cce695fca6d6bddb8ebd60e", - "0x016eb87f08d1e98c8f550733d56067dcb1360401bad3f8a70db2dc41bc6fc2a61001010000000000000000000000000000000000000000000000000000000000000000000300", + "0x0005ab6a52d8b367064ac74dce747a7c78d31c830a3c6123024420f6cdca082eec2f97a37accb3af9413ecad862b24ca7f68fbf97adfe9f79bf4e6014c4dcd68ae", + "0x000e3c67540bccf8e2c7a067cfc016b8e60529cbf2d9b43341163984f5f0905f0103282857e91da8d921f12b28b19500f8d59251924f99a7e71d37b0e8ca2a44c0", + "0x000f4b8943cab7e27243ce5356b7c844b2df5c8f5f33e49fdfdf0ec378bf085abc0b659571da4aba746645b02a663ff4dc88420ee734b5f4e39a2536553c403638", + "0x0000000000000000000000000000000000000000000000000000000000000000001cbfed71e5901443225c367679cabb898962a2e1933b0c790d39d06366d54591", + "0x001e1eb8a41e59df3aea18f06d6f2b12d8f7f56ce0257abe7307b09b9e0a0c85fc0ed6ebb8dd6b6dca5f69ce4cb55b1ebd3142ebe6e6e75f35378c7cdbe8a3e092", + "0x0110a6c26fbc41dcb20da7f8d3ba010436b1dc6760d53307558f8ce9d1087fb86e01010000000000000000000000000000000000000000000000000000000000000000000100", "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" ], "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df": [ - "0x00ad4ed85b07982c911365eb647b5b1c19ba3036b5d5d00b9a930bf1668aeda412f085cc41141012fb6a4c1169c86361b0be0d6ece313a29b0076ad09e1e125d25", - "0x00ebcf69eec5fc365b94b80cdb33c1bf070e08aebbeb9411dd65bb606087d55818117ecedf3cd6564e4066070ce95e2bb410aae5ace43dcf7016efd7c4c4003c1e", - "0x0036b38dcdac3a98c67c5bfc28ccdf9c6623595fd75e7fb8eeb2c2f03ca3a5612029774de3d4f8d05bec2205451924440aa86b5cf073c87c9cb0b4893658a26727", - "0x00eadcd8a29ee09fb7069bd5333cca296fe396f0c1091f85b5a43510377ffde61fa347491e6f56ae44163423f22243c2b39d27bce30baaebe9db652007e2324325", - "0x013c486aff184b37f3a3c8c47818d557995f55f239ee33938aa009a4b6b9bbbd2701010000000000000000000000000000000000000000000000000000000000000000000600", + "0x0005ab6a52d8b367064ac74dce747a7c78d31c830a3c6123024420f6cdca082eec2f97a37accb3af9413ecad862b24ca7f68fbf97adfe9f79bf4e6014c4dcd68ae", + "0x000e3c67540bccf8e2c7a067cfc016b8e60529cbf2d9b43341163984f5f0905f0103282857e91da8d921f12b28b19500f8d59251924f99a7e71d37b0e8ca2a44c0", + "0x000000000000000000000000000000000000000000000000000000000000000000208f0b5e4af40a6ab5fd350738880d96201de0e60637a481ce5e13a543daf384", + "0x0020e86d7b70d7d0d6b657d6c572b973f9af1e65703e002ea491f1c11116676fbb2959cdfe9d897b6a39e2c26cbec557846afe31833989179366255b49f1f07142", + "0x001f826394caeacce4b038c278d4729f56623cff08f8dcef2d1f217b7dc8cdbd1d254332e2072065dbe9ebaa0be3bc279db3c24322f223341644ae566f1e4947a3", + "0x0127bdbbb9b6a409a08a9333ee39f2555f9957d51878c4c8a3f3374b18ff6a483c01010000000000000000000000000000000000000000000000000000000000000000000600", "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" ] } @@ -146,12 +140,12 @@ "failed": false, "from": { "address": "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "nonce": 112, - "balance": "0x56bc75e2d630ffffffffffffffffffffffffffffffffffffb14f658c270a4e", + "nonce": 104, + "balance": "0x56bc75e2d630ffffffffffffffffffffffffffffffffffff3317f5333828da", "codeHash": "0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470" }, "to": { - "address": "0x5847653f3c2e05aef6838550513fda1a8528dcb3", + "address": "0xd9a6bd6326a696711a4bc9a6500b5df879c4aa24", "nonce": 1, "balance": "0x0", "codeHash": "0x9772386adf211243e408babcc6954a63410e2d2b7eb665442221c5d5fcc7ccf0" @@ -159,12 +153,12 @@ "accountAfter": [ { "address": "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "nonce": 113, - "balance": "0x56bc75e2d630ffffffffffffffffffffffffffffffffffffb14f657cb1f326", + "nonce": 105, + "balance": "0x56bc75e2d630ffffffffffffffffffffffffffffffffffff3317f3ea992242", "codeHash": "0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470" }, { - "address": "0x5847653f3c2e05aef6838550513fda1a8528dcb3", + "address": "0xd9a6bd6326a696711a4bc9a6500b5df879c4aa24", "nonce": 1, "balance": "0x0", "codeHash": "0x9772386adf211243e408babcc6954a63410e2d2b7eb665442221c5d5fcc7ccf0" @@ -199,11 +193,6 @@ "stack": [ "0x80", "0x40" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" ] }, { @@ -211,12 +200,7 @@ "op": "CALLVALUE", "gas": 3001542, "gasCost": 2, - "depth": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] + "depth": 1 }, { "pc": 6, @@ -226,11 +210,6 @@ "depth": 1, "stack": [ "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -242,11 +221,6 @@ "stack": [ "0x0", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -258,11 +232,6 @@ "stack": [ "0x0", "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -275,11 +244,6 @@ "0x0", "0x1", "0x10" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -290,11 +254,6 @@ "depth": 1, "stack": [ "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -305,11 +264,6 @@ "depth": 1, "stack": [ "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -317,12 +271,7 @@ "op": "PUSH1", "gas": 3001518, "gasCost": 3, - "depth": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] + "depth": 1 }, { "pc": 20, @@ -332,11 +281,6 @@ "depth": 1, "stack": [ "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -348,11 +292,6 @@ "stack": [ "0x4", "0x44" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -363,11 +302,6 @@ "depth": 1, "stack": [ "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -379,11 +313,6 @@ "stack": [ "0x0", "0x121" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -391,12 +320,7 @@ "op": "PUSH1", "gas": 3001497, "gasCost": 3, - "depth": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] + "depth": 1 }, { "pc": 28, @@ -406,11 +330,6 @@ "depth": 1, "stack": [ "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -421,11 +340,6 @@ "depth": 1, "stack": [ "0x40c10f190000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -437,11 +351,6 @@ "stack": [ "0x40c10f190000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce", "0xe0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -452,11 +361,6 @@ "depth": 1, "stack": [ "0x40c10f19" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -468,11 +372,6 @@ "stack": [ "0x40c10f19", "0x40c10f19" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -485,11 +384,6 @@ "0x40c10f19", "0x40c10f19", "0x6352211e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -501,11 +395,6 @@ "stack": [ "0x40c10f19", "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -518,11 +407,6 @@ "0x40c10f19", "0x1", "0xad" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -533,11 +417,6 @@ "depth": 1, "stack": [ "0x40c10f19" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -548,11 +427,6 @@ "depth": 1, "stack": [ "0x40c10f19" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -564,11 +438,6 @@ "stack": [ "0x40c10f19", "0x40c10f19" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -581,11 +450,6 @@ "0x40c10f19", "0x40c10f19", "0x23b872dd" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -597,11 +461,6 @@ "stack": [ "0x40c10f19", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -614,11 +473,6 @@ "0x40c10f19", "0x0", "0xf4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -629,11 +483,6 @@ "depth": 1, "stack": [ "0x40c10f19" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -645,11 +494,6 @@ "stack": [ "0x40c10f19", "0x40c10f19" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -662,11 +506,6 @@ "0x40c10f19", "0x40c10f19", "0x23b872dd" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -678,11 +517,6 @@ "stack": [ "0x40c10f19", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -695,11 +529,6 @@ "0x40c10f19", "0x0", "0x1c0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -710,11 +539,6 @@ "depth": 1, "stack": [ "0x40c10f19" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -726,11 +550,6 @@ "stack": [ "0x40c10f19", "0x40c10f19" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -743,11 +562,6 @@ "0x40c10f19", "0x40c10f19", "0x40c10f19" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -759,11 +573,6 @@ "stack": [ "0x40c10f19", "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -776,11 +585,6 @@ "0x40c10f19", "0x1", "0x1dc" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -791,11 +595,6 @@ "depth": 1, "stack": [ "0x40c10f19" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -806,11 +605,6 @@ "depth": 1, "stack": [ "0x40c10f19" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -822,11 +616,6 @@ "stack": [ "0x40c10f19", "0x1f6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -839,11 +628,6 @@ "0x40c10f19", "0x1f6", "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -857,11 +641,6 @@ "0x1f6", "0x4", "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -876,11 +655,6 @@ "0x4", "0x4", "0x44" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -894,11 +668,6 @@ "0x1f6", "0x4", "0x40" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -913,11 +682,6 @@ "0x4", "0x40", "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -931,11 +695,6 @@ "0x1f6", "0x4", "0x44" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -949,11 +708,6 @@ "0x1f6", "0x44", "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -968,11 +722,6 @@ "0x44", "0x4", "0x1f1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -987,11 +736,6 @@ "0x1f1", "0x4", "0x44" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -1006,11 +750,6 @@ "0x1f1", "0x44", "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -1026,11 +765,6 @@ "0x44", "0x4", "0x1ac2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -1045,11 +779,6 @@ "0x1f1", "0x44", "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -1064,11 +793,6 @@ "0x1f1", "0x44", "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -1084,11 +808,6 @@ "0x44", "0x4", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -1105,11 +824,6 @@ "0x4", "0x0", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -1127,11 +841,6 @@ "0x0", "0x0", "0x40" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -1150,11 +859,6 @@ "0x0", "0x40", "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -1174,11 +878,6 @@ "0x40", "0x4", "0x44" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -1197,11 +896,6 @@ "0x0", "0x40", "0x40" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -1219,11 +913,6 @@ "0x0", "0x0", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -1241,11 +930,6 @@ "0x0", "0x0", "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -1264,11 +948,6 @@ "0x0", "0x1", "0x1ad5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -1285,11 +964,6 @@ "0x4", "0x0", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -1306,11 +980,6 @@ "0x4", "0x0", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -1328,11 +997,6 @@ "0x0", "0x0", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -1351,11 +1015,6 @@ "0x0", "0x0", "0x1ae3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -1375,11 +1034,6 @@ "0x0", "0x1ae3", "0x44" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -1400,11 +1054,6 @@ "0x1ae3", "0x44", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -1426,11 +1075,6 @@ "0x44", "0x0", "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -1451,11 +1095,6 @@ "0x1ae3", "0x44", "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -1477,11 +1116,6 @@ "0x44", "0x4", "0x18c4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -1502,11 +1136,6 @@ "0x1ae3", "0x44", "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -1527,11 +1156,6 @@ "0x1ae3", "0x44", "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -1553,11 +1177,6 @@ "0x44", "0x4", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -1580,11 +1199,6 @@ "0x4", "0x0", "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -1607,11 +1221,6 @@ "0x4", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -1634,11 +1243,6 @@ "0x4", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -1660,11 +1264,6 @@ "0x44", "0x4", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -1687,11 +1286,6 @@ "0x4", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x18d3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -1715,11 +1309,6 @@ "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x18d3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -1744,11 +1333,6 @@ "0x18d3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x26f5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -1772,11 +1356,6 @@ "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x18d3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -1800,11 +1379,6 @@ "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x18d3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -1829,11 +1403,6 @@ "0x18d3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x26fe" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -1859,11 +1428,6 @@ "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x26fe", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -1890,11 +1454,6 @@ "0x26fe", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x21c8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -1920,11 +1479,6 @@ "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x26fe", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -1950,11 +1504,6 @@ "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x26fe", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -1981,11 +1530,6 @@ "0x26fe", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -2013,11 +1557,6 @@ "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x0", "0x21d3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -2046,11 +1585,6 @@ "0x0", "0x21d3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -2080,11 +1614,6 @@ "0x21d3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x2212" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -2113,11 +1642,6 @@ "0x0", "0x21d3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -2146,11 +1670,6 @@ "0x0", "0x21d3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -2180,11 +1699,6 @@ "0x21d3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -2215,11 +1729,6 @@ "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x0", "0xffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -2251,11 +1760,6 @@ "0x0", "0xffffffffffffffffffffffffffffffffffffffff", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -2286,11 +1790,6 @@ "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -2321,11 +1820,6 @@ "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -2355,11 +1849,6 @@ "0x21d3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -2389,11 +1878,6 @@ "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x21d3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -2423,11 +1907,6 @@ "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x21d3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -2456,11 +1935,6 @@ "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x21d3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -2488,11 +1962,6 @@ "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -2520,11 +1989,6 @@ "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -2552,11 +2016,6 @@ "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -2583,11 +2042,6 @@ "0x26fe", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -2614,11 +2068,6 @@ "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x26fe" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -2645,11 +2094,6 @@ "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x26fe", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -2675,11 +2119,6 @@ "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x26fe" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -2704,11 +2143,6 @@ "0x18d3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -2733,11 +2167,6 @@ "0x18d3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -2763,11 +2192,6 @@ "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -2792,11 +2216,6 @@ "0x18d3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -2822,11 +2241,6 @@ "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x1", "0x2709" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -2850,11 +2264,6 @@ "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x18d3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -2878,11 +2287,6 @@ "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x18d3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -2905,11 +2309,6 @@ "0x4", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x18d3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -2931,11 +2330,6 @@ "0x44", "0x4", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -2957,11 +2351,6 @@ "0x44", "0x4", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -2983,11 +2372,6 @@ "0x44", "0x4", "0x1ae3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -3009,11 +2393,6 @@ "0x1ae3", "0x4", "0x44" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -3034,11 +2413,6 @@ "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x1ae3", "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -3058,11 +2432,6 @@ "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x1ae3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -3081,11 +2450,6 @@ "0x0", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -3104,11 +2468,6 @@ "0x0", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -3127,11 +2486,6 @@ "0x0", "0x0", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -3149,11 +2503,6 @@ "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x0", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -3170,11 +2519,6 @@ "0x4", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -3192,11 +2536,6 @@ "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x0", "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -3215,11 +2554,6 @@ "0x0", "0x20", "0x1af4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -3239,11 +2573,6 @@ "0x20", "0x1af4", "0x44" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -3264,11 +2593,6 @@ "0x1af4", "0x44", "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -3290,11 +2614,6 @@ "0x44", "0x20", "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -3315,11 +2634,6 @@ "0x1af4", "0x44", "0x24" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -3341,11 +2655,6 @@ "0x44", "0x24", "0x1942" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -3366,11 +2675,6 @@ "0x1af4", "0x44", "0x24" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -3391,11 +2695,6 @@ "0x1af4", "0x44", "0x24" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -3417,11 +2716,6 @@ "0x44", "0x24", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -3444,11 +2738,6 @@ "0x24", "0x0", "0x24" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -3470,12 +2759,7 @@ "0x44", "0x24", "0x0", - "0x1821e4b97d6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -3496,13 +2780,8 @@ "0x1af4", "0x44", "0x24", - "0x1821e4b97d6", + "0x18282cc9317", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -3523,12 +2802,7 @@ "0x1af4", "0x44", "0x24", - "0x1821e4b97d6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -3549,13 +2823,8 @@ "0x1af4", "0x44", "0x24", - "0x1821e4b97d6", + "0x18282cc9317", "0x1951" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -3576,14 +2845,9 @@ "0x1af4", "0x44", "0x24", - "0x1821e4b97d6", + "0x18282cc9317", "0x1951", - "0x1821e4b97d6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -3604,15 +2868,10 @@ "0x1af4", "0x44", "0x24", - "0x1821e4b97d6", + "0x18282cc9317", "0x1951", - "0x1821e4b97d6", + "0x18282cc9317", "0x273a" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -3633,14 +2892,9 @@ "0x1af4", "0x44", "0x24", - "0x1821e4b97d6", + "0x18282cc9317", "0x1951", - "0x1821e4b97d6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -3661,14 +2915,9 @@ "0x1af4", "0x44", "0x24", - "0x1821e4b97d6", + "0x18282cc9317", "0x1951", - "0x1821e4b97d6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -3689,15 +2938,10 @@ "0x1af4", "0x44", "0x24", - "0x1821e4b97d6", + "0x18282cc9317", "0x1951", - "0x1821e4b97d6", + "0x18282cc9317", "0x2743" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -3718,16 +2962,11 @@ "0x1af4", "0x44", "0x24", - "0x1821e4b97d6", + "0x18282cc9317", "0x1951", - "0x1821e4b97d6", + "0x18282cc9317", "0x2743", - "0x1821e4b97d6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -3748,17 +2987,12 @@ "0x1af4", "0x44", "0x24", - "0x1821e4b97d6", + "0x18282cc9317", "0x1951", - "0x1821e4b97d6", + "0x18282cc9317", "0x2743", - "0x1821e4b97d6", + "0x18282cc9317", "0x2232" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -3779,16 +3013,11 @@ "0x1af4", "0x44", "0x24", - "0x1821e4b97d6", + "0x18282cc9317", "0x1951", - "0x1821e4b97d6", + "0x18282cc9317", "0x2743", - "0x1821e4b97d6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -3809,16 +3038,11 @@ "0x1af4", "0x44", "0x24", - "0x1821e4b97d6", + "0x18282cc9317", "0x1951", - "0x1821e4b97d6", + "0x18282cc9317", "0x2743", - "0x1821e4b97d6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -3839,17 +3063,12 @@ "0x1af4", "0x44", "0x24", - "0x1821e4b97d6", + "0x18282cc9317", "0x1951", - "0x1821e4b97d6", + "0x18282cc9317", "0x2743", - "0x1821e4b97d6", + "0x18282cc9317", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -3870,18 +3089,13 @@ "0x1af4", "0x44", "0x24", - "0x1821e4b97d6", + "0x18282cc9317", "0x1951", - "0x1821e4b97d6", + "0x18282cc9317", "0x2743", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", - "0x1821e4b97d6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -3902,18 +3116,13 @@ "0x1af4", "0x44", "0x24", - "0x1821e4b97d6", + "0x18282cc9317", "0x1951", - "0x1821e4b97d6", + "0x18282cc9317", "0x2743", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -3934,17 +3143,12 @@ "0x1af4", "0x44", "0x24", - "0x1821e4b97d6", + "0x18282cc9317", "0x1951", - "0x1821e4b97d6", + "0x18282cc9317", "0x2743", - "0x1821e4b97d6", - "0x1821e4b97d6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317", + "0x18282cc9317" ] }, { @@ -3965,17 +3169,12 @@ "0x1af4", "0x44", "0x24", - "0x1821e4b97d6", + "0x18282cc9317", "0x1951", - "0x1821e4b97d6", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", + "0x18282cc9317", "0x2743" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -3996,17 +3195,12 @@ "0x1af4", "0x44", "0x24", - "0x1821e4b97d6", + "0x18282cc9317", "0x1951", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x2743", - "0x1821e4b97d6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -4027,16 +3221,11 @@ "0x1af4", "0x44", "0x24", - "0x1821e4b97d6", + "0x18282cc9317", "0x1951", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x2743" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -4057,15 +3246,10 @@ "0x1af4", "0x44", "0x24", - "0x1821e4b97d6", + "0x18282cc9317", "0x1951", - "0x1821e4b97d6", - "0x1821e4b97d6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317", + "0x18282cc9317" ] }, { @@ -4086,15 +3270,10 @@ "0x1af4", "0x44", "0x24", - "0x1821e4b97d6", + "0x18282cc9317", "0x1951", - "0x1821e4b97d6", - "0x1821e4b97d6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317", + "0x18282cc9317" ] }, { @@ -4115,16 +3294,11 @@ "0x1af4", "0x44", "0x24", - "0x1821e4b97d6", + "0x18282cc9317", "0x1951", - "0x1821e4b97d6", - "0x1821e4b97d6", - "0x1821e4b97d6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317", + "0x18282cc9317", + "0x18282cc9317" ] }, { @@ -4145,15 +3319,10 @@ "0x1af4", "0x44", "0x24", - "0x1821e4b97d6", + "0x18282cc9317", "0x1951", - "0x1821e4b97d6", + "0x18282cc9317", "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -4174,16 +3343,11 @@ "0x1af4", "0x44", "0x24", - "0x1821e4b97d6", + "0x18282cc9317", "0x1951", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0x274e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -4204,14 +3368,9 @@ "0x1af4", "0x44", "0x24", - "0x1821e4b97d6", + "0x18282cc9317", "0x1951", - "0x1821e4b97d6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -4232,14 +3391,9 @@ "0x1af4", "0x44", "0x24", - "0x1821e4b97d6", + "0x18282cc9317", "0x1951", - "0x1821e4b97d6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -4260,13 +3414,8 @@ "0x1af4", "0x44", "0x24", - "0x1821e4b97d6", + "0x18282cc9317", "0x1951" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -4287,12 +3436,7 @@ "0x1af4", "0x44", "0x24", - "0x1821e4b97d6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -4313,12 +3457,7 @@ "0x1af4", "0x44", "0x24", - "0x1821e4b97d6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -4336,15 +3475,10 @@ "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x0", "0x20", - "0x1821e4b97d6", + "0x18282cc9317", "0x44", "0x24", "0x1af4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -4362,15 +3496,10 @@ "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x0", "0x20", - "0x1821e4b97d6", + "0x18282cc9317", "0x1af4", "0x24", "0x44" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -4388,14 +3517,9 @@ "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x0", "0x20", - "0x1821e4b97d6", + "0x18282cc9317", "0x1af4", "0x24" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -4413,13 +3537,8 @@ "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x0", "0x20", - "0x1821e4b97d6", + "0x18282cc9317", "0x1af4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -4437,12 +3556,7 @@ "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x0", "0x20", - "0x1821e4b97d6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -4460,12 +3574,7 @@ "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x0", "0x20", - "0x1821e4b97d6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -4481,14 +3590,9 @@ "0x44", "0x4", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x20", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -4504,13 +3608,8 @@ "0x44", "0x4", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -4526,12 +3625,7 @@ "0x44", "0x4", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -4544,15 +3638,10 @@ "0x40c10f19", "0x1f6", "0x1f1", - "0x1821e4b97d6", + "0x18282cc9317", "0x4", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x44" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -4565,14 +3654,9 @@ "0x40c10f19", "0x1f6", "0x1f1", - "0x1821e4b97d6", + "0x18282cc9317", "0x4", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -4585,14 +3669,9 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x4", "0x1f1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -4605,14 +3684,9 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x1f1", "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -4625,13 +3699,8 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x1f1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -4644,12 +3713,7 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -4662,12 +3726,7 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -4680,13 +3739,8 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x6fe" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -4699,12 +3753,7 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -4717,12 +3766,7 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -4735,13 +3779,8 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -4754,14 +3793,9 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -4774,15 +3808,10 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -4795,16 +3824,11 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0xf59" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -4817,15 +3841,10 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -4838,15 +3857,10 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -4859,16 +3873,11 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -4881,17 +3890,12 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0xffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -4904,16 +3908,11 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -4926,17 +3925,12 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -4949,18 +3943,13 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -4973,17 +3962,12 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -4996,16 +3980,11 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -5018,16 +3997,11 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -5040,17 +4014,12 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xfc9" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -5063,15 +4032,10 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -5084,15 +4048,10 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -5105,16 +4064,11 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0xfd2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -5127,17 +4081,12 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0xfd2", - "0x1821e4b97d6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -5150,18 +4099,13 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0xfd2", - "0x1821e4b97d6", + "0x18282cc9317", "0x1250" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -5174,17 +4118,12 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0xfd2", - "0x1821e4b97d6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -5197,17 +4136,12 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0xfd2", - "0x1821e4b97d6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -5220,18 +4154,13 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0xfd2", - "0x1821e4b97d6", + "0x18282cc9317", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -5244,19 +4173,14 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0xfd2", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -5269,20 +4193,15 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0xfd2", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0xffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -5295,19 +4214,14 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0xfd2", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -5320,20 +4234,15 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0xfd2", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0x2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -5346,21 +4255,16 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0xfd2", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0x2", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -5373,22 +4277,17 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0xfd2", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0x2", "0x0", - "0x1821e4b97d6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -5401,23 +4300,18 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0xfd2", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0x2", "0x0", - "0x1821e4b97d6", + "0x18282cc9317", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -5430,21 +4324,16 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0xfd2", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0x2", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -5457,22 +4346,17 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0xfd2", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0x2", "0x0", "0x20" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -5485,21 +4369,16 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0xfd2", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0x2", "0x20" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -5512,21 +4391,16 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0xfd2", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0x20", "0x2" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -5539,22 +4413,17 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0xfd2", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0x20", "0x2", "0x20" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -5567,20 +4436,15 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0xfd2", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0x20" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -5593,21 +4457,16 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0xfd2", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0x20", "0x20" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -5620,20 +4479,15 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0xfd2", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0x40" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -5646,21 +4500,16 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0xfd2", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0x40", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -5673,20 +4522,15 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0xfd2", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", - "0x94e54a518d3c6f57d74f2c55b0483a8949b24c8947e1167ff82edf88b68212e6" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x2b81c5ca775b32a00e4d070917698ec780b1570a5f3e34d5788e2f5b776d4b81" ] }, { @@ -5699,21 +4543,16 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0xfd2", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", - "0x94e54a518d3c6f57d74f2c55b0483a8949b24c8947e1167ff82edf88b68212e6", + "0x2b81c5ca775b32a00e4d070917698ec780b1570a5f3e34d5788e2f5b776d4b81", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -5726,34 +4565,29 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0xfd2", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0x0", - "0x94e54a518d3c6f57d74f2c55b0483a8949b24c8947e1167ff82edf88b68212e6" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x2b81c5ca775b32a00e4d070917698ec780b1570a5f3e34d5788e2f5b776d4b81" ], "storage": { - "0x94e54a518d3c6f57d74f2c55b0483a8949b24c8947e1167ff82edf88b68212e6": "0x0000000000000000000000000000000000000000000000000000000000000000" + "0x2b81c5ca775b32a00e4d070917698ec780b1570a5f3e34d5788e2f5b776d4b81": "0x0000000000000000000000000000000000000000000000000000000000000000" }, "extraData": { "proofList": [ { - "address": "0x5847653f3c2e05aef6838550513fda1a8528dcb3", + "address": "0xd9a6bd6326a696711a4bc9a6500b5df879c4aa24", "nonce": 1, "balance": "0x0", "codeHash": "0x9772386adf211243e408babcc6954a63410e2d2b7eb665442221c5d5fcc7ccf0", "storage": { - "key": "0x94e54a518d3c6f57d74f2c55b0483a8949b24c8947e1167ff82edf88b68212e6", + "key": "0x2b81c5ca775b32a00e4d070917698ec780b1570a5f3e34d5788e2f5b776d4b81", "value": "0x0000000000000000000000000000000000000000000000000000000000000000" } } @@ -5770,21 +4604,16 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0xfd2", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0x0", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -5797,21 +4626,16 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0xfd2", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0x0", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -5824,22 +4648,17 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0xfd2", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0x0", "0x0", "0x100" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -5852,21 +4671,16 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0xfd2", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0x0", "0x1" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -5879,21 +4693,16 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0xfd2", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0x1", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -5906,20 +4715,15 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0xfd2", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -5932,21 +4736,16 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0xfd2", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0x0", "0xffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -5959,20 +4758,15 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0xfd2", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -5985,21 +4779,16 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0xfd2", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0x0", "0xffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -6012,20 +4801,15 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0xfd2", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -6038,19 +4822,14 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0xfd2", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x1" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -6063,19 +4842,14 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0xfd2", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -6088,19 +4862,14 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0xfd2", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -6113,18 +4882,13 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0xfd2", - "0x1821e4b97d6", + "0x18282cc9317", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -6137,18 +4901,13 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", - "0x1821e4b97d6", + "0x18282cc9317", "0xfd2" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -6161,18 +4920,13 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0xfd2", - "0x1821e4b97d6" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -6185,17 +4939,12 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0xfd2" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -6208,16 +4957,11 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -6230,16 +4974,11 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -6252,16 +4991,11 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x1" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -6274,17 +5008,12 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0x1012" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -6297,15 +5026,10 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -6318,15 +5042,10 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -6339,16 +5058,11 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x101e" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -6361,17 +5075,12 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x101e", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -6384,18 +5093,13 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x101e", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -6408,19 +5112,14 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x101e", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -6433,20 +5132,15 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x101e", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x16c2" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -6459,19 +5153,14 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x101e", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -6484,19 +5173,14 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x101e", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -6509,18 +5193,13 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x101e", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -6533,17 +5212,12 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x101e", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -6556,16 +5230,11 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x101e" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -6578,15 +5247,10 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -6599,15 +5263,10 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -6620,16 +5279,11 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x1" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -6642,17 +5296,12 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0x3" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -6665,18 +5314,13 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0x3", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -6689,19 +5333,14 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0x3", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -6714,20 +5353,15 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0x3", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -6740,19 +5374,14 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0x3", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -6765,20 +5394,15 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0x3", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -6791,19 +5415,14 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0x3", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -6816,20 +5435,15 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0x3", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -6842,18 +5456,13 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0x3", "0x0" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -6866,19 +5475,14 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0x3", "0x0", "0x20" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -6891,18 +5495,13 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0x3", "0x20" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -6915,18 +5514,13 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0x20", "0x3" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -6939,19 +5533,14 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0x20", "0x3", "0x20" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -6964,17 +5553,12 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0x20" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -6987,18 +5571,13 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0x20", "0x20" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -7011,17 +5590,12 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0x40" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -7034,18 +5608,13 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0x40", "0x0" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -7058,17 +5627,12 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -7081,18 +5645,13 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", "0x0" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -7105,19 +5664,14 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", "0x0", "0x1" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -7130,35 +5684,30 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", "0x0", "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce" ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" - ], "storage": { - "0x94e54a518d3c6f57d74f2c55b0483a8949b24c8947e1167ff82edf88b68212e6": "0x0000000000000000000000000000000000000000000000000000000000000000", - "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce": "0x0000000000000000000000000000000000000000000000000000000000000003" + "0x2b81c5ca775b32a00e4d070917698ec780b1570a5f3e34d5788e2f5b776d4b81": "0x0000000000000000000000000000000000000000000000000000000000000000", + "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce": "0x0000000000000000000000000000000000000000000000000000000000000001" }, "extraData": { "proofList": [ { - "address": "0x5847653f3c2e05aef6838550513fda1a8528dcb3", + "address": "0xd9a6bd6326a696711a4bc9a6500b5df879c4aa24", "nonce": 1, "balance": "0x0", "codeHash": "0x9772386adf211243e408babcc6954a63410e2d2b7eb665442221c5d5fcc7ccf0", "storage": { "key": "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", - "value": "0x0000000000000000000000000000000000000000000000000000000000000003" + "value": "0x0000000000000000000000000000000000000000000000000000000000000001" } } ] @@ -7174,20 +5723,15 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", "0x0", "0x1", - "0x3" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x1" ] }, { @@ -7200,21 +5744,16 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", "0x0", "0x1", - "0x3", + "0x1", "0x106e" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -7227,21 +5766,16 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", "0x0", "0x106e", - "0x3", + "0x1", "0x1" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -7254,21 +5788,16 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", "0x0", "0x106e", "0x1", - "0x3" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x1" ] }, { @@ -7281,22 +5810,17 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", "0x0", "0x106e", "0x1", - "0x3", + "0x1", "0x210d" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -7309,21 +5833,16 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", "0x0", "0x106e", "0x1", - "0x3" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x1" ] }, { @@ -7336,21 +5855,16 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", "0x0", "0x106e", "0x1", - "0x3" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x1" ] }, { @@ -7363,22 +5877,17 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", "0x0", "0x106e", "0x1", - "0x3", + "0x1", "0x0" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -7391,23 +5900,18 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", "0x0", "0x106e", "0x1", - "0x3", + "0x1", "0x0", "0x2118" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -7420,24 +5924,19 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", "0x0", "0x106e", "0x1", - "0x3", + "0x1", "0x0", "0x2118", - "0x3" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x1" ] }, { @@ -7450,25 +5949,20 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", "0x0", "0x106e", "0x1", - "0x3", + "0x1", "0x0", "0x2118", - "0x3", + "0x1", "0x2232" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -7481,24 +5975,19 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", "0x0", "0x106e", "0x1", - "0x3", + "0x1", "0x0", "0x2118", - "0x3" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x1" ] }, { @@ -7511,24 +6000,19 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", "0x0", "0x106e", "0x1", - "0x3", + "0x1", "0x0", "0x2118", - "0x3" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x1" ] }, { @@ -7541,25 +6025,20 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", "0x0", "0x106e", "0x1", - "0x3", + "0x1", "0x0", "0x2118", - "0x3", + "0x1", "0x0" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -7572,26 +6051,21 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", "0x0", "0x106e", "0x1", - "0x3", + "0x1", "0x0", "0x2118", - "0x3", + "0x1", "0x0", - "0x3" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x1" ] }, { @@ -7604,26 +6078,21 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", "0x0", "0x106e", "0x1", - "0x3", + "0x1", "0x0", "0x2118", - "0x3", - "0x3", + "0x1", + "0x1", "0x0" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -7636,25 +6105,20 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", "0x0", "0x106e", "0x1", - "0x3", + "0x1", "0x0", "0x2118", - "0x3", - "0x3" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x1", + "0x1" ] }, { @@ -7667,25 +6131,20 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", "0x0", "0x106e", "0x1", - "0x3", + "0x1", "0x0", - "0x3", - "0x3", + "0x1", + "0x1", "0x2118" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -7698,25 +6157,20 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", "0x0", "0x106e", "0x1", - "0x3", + "0x1", "0x0", - "0x3", + "0x1", "0x2118", - "0x3" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x1" ] }, { @@ -7729,24 +6183,19 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", "0x0", "0x106e", "0x1", - "0x3", + "0x1", "0x0", - "0x3", + "0x1", "0x2118" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -7759,23 +6208,18 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", "0x0", "0x106e", "0x1", - "0x3", + "0x1", "0x0", - "0x3" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x1" ] }, { @@ -7788,23 +6232,18 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", "0x0", "0x106e", "0x1", - "0x3", + "0x1", "0x0", - "0x3" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x1" ] }, { @@ -7817,23 +6256,18 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", "0x0", "0x106e", "0x1", - "0x3", + "0x1", "0x0", - "0x3" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x1" ] }, { @@ -7846,22 +6280,17 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", "0x0", "0x106e", "0x1", - "0x3", + "0x1", "0x0" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -7874,23 +6303,18 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", "0x0", "0x106e", "0x1", - "0x3", + "0x1", "0x0", "0x2123" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -7903,24 +6327,19 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", "0x0", "0x106e", "0x1", - "0x3", + "0x1", "0x0", "0x2123", "0x1" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -7933,25 +6352,20 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", "0x0", "0x106e", "0x1", - "0x3", + "0x1", "0x0", "0x2123", "0x1", "0x2232" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -7964,24 +6378,19 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", "0x0", "0x106e", "0x1", - "0x3", + "0x1", "0x0", "0x2123", "0x1" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -7994,24 +6403,19 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", "0x0", "0x106e", "0x1", - "0x3", + "0x1", "0x0", "0x2123", "0x1" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -8024,25 +6428,20 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", "0x0", "0x106e", "0x1", - "0x3", + "0x1", "0x0", "0x2123", "0x1", "0x0" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -8055,26 +6454,21 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", "0x0", "0x106e", "0x1", - "0x3", + "0x1", "0x0", "0x2123", "0x1", "0x0", "0x1" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -8087,26 +6481,21 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", "0x0", "0x106e", "0x1", - "0x3", + "0x1", "0x0", "0x2123", "0x1", "0x1", "0x0" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -8119,25 +6508,20 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", "0x0", "0x106e", "0x1", - "0x3", + "0x1", "0x0", "0x2123", "0x1", "0x1" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -8150,25 +6534,20 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", "0x0", "0x106e", "0x1", - "0x3", + "0x1", "0x0", "0x1", "0x1", "0x2123" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -8181,25 +6560,20 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", "0x0", "0x106e", "0x1", - "0x3", + "0x1", "0x0", "0x1", "0x2123", "0x1" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -8212,24 +6586,19 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", "0x0", "0x106e", "0x1", - "0x3", + "0x1", "0x0", "0x1", "0x2123" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -8242,23 +6611,18 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", "0x0", "0x106e", "0x1", - "0x3", + "0x1", "0x0", "0x1" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -8271,23 +6635,18 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", "0x0", "0x106e", "0x1", - "0x3", + "0x1", "0x0", "0x1" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -8300,23 +6659,18 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", "0x0", "0x106e", "0x1", - "0x3", + "0x1", "0x0", "0x1" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -8329,22 +6683,17 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", "0x0", "0x106e", "0x1", - "0x3", + "0x1", "0x0" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -8357,23 +6706,18 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", "0x0", "0x106e", "0x1", - "0x3", + "0x1", "0x0", "0x1" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -8386,24 +6730,19 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", "0x0", "0x106e", "0x1", - "0x3", + "0x1", "0x0", "0x1", "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -8416,23 +6755,18 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", "0x0", "0x106e", "0x1", - "0x3", + "0x1", "0x0", "0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -8445,24 +6779,19 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", "0x0", "0x106e", "0x1", - "0x3", + "0x1", "0x0", "0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe", - "0x3" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x1" ] }, { @@ -8475,23 +6804,18 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", "0x0", "0x106e", "0x1", - "0x3", + "0x1", "0x0", "0x0" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -8504,23 +6828,18 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", "0x0", "0x106e", "0x1", - "0x3", + "0x1", "0x0", "0x1" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -8533,24 +6852,19 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", "0x0", "0x106e", "0x1", - "0x3", + "0x1", "0x0", "0x1", "0x2158" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -8563,22 +6877,17 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", "0x0", "0x106e", "0x1", - "0x3", + "0x1", "0x0" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -8591,22 +6900,17 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", "0x0", "0x106e", "0x1", - "0x3", + "0x1", "0x0" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -8619,23 +6923,18 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", "0x0", "0x106e", "0x1", - "0x3", + "0x1", "0x0", "0x1" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -8648,24 +6947,19 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", "0x0", "0x106e", "0x1", - "0x3", + "0x1", "0x0", "0x1", - "0x3" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x1" ] }, { @@ -8678,23 +6972,18 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", "0x0", "0x106e", "0x1", - "0x3", + "0x1", "0x0", - "0x4" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x2" ] }, { @@ -8707,23 +6996,18 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", "0x0", "0x106e", "0x1", - "0x3", - "0x4", + "0x1", + "0x2", "0x0" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -8736,22 +7020,17 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", "0x0", "0x106e", "0x1", - "0x3", - "0x4" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x1", + "0x2" ] }, { @@ -8764,22 +7043,17 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", "0x0", - "0x4", + "0x2", + "0x1", "0x1", - "0x3", "0x106e" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -8792,22 +7066,17 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", "0x0", - "0x4", + "0x2", "0x106e", - "0x3", + "0x1", "0x1" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -8820,21 +7089,16 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", "0x0", - "0x4", + "0x2", "0x106e", - "0x3" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x1" ] }, { @@ -8847,20 +7111,15 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", "0x0", - "0x4", + "0x2", "0x106e" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -8873,19 +7132,14 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", "0x0", - "0x4" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x2" ] }, { @@ -8898,19 +7152,14 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", "0x0", - "0x4" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x2" ] }, { @@ -8923,19 +7172,14 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", - "0x4", + "0x18282cc9317", + "0x2", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", "0x0", "0x1" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -8948,18 +7192,13 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", - "0x4", + "0x18282cc9317", + "0x2", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", "0x0" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -8972,17 +7211,12 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", - "0x4", + "0x18282cc9317", + "0x2", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -8995,18 +7229,13 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", - "0x4", + "0x18282cc9317", + "0x2", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", - "0x4" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x2" ] }, { @@ -9019,33 +7248,28 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", - "0x4", - "0x4", + "0x18282cc9317", + "0x2", + "0x2", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce" ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" - ], "storage": { - "0x94e54a518d3c6f57d74f2c55b0483a8949b24c8947e1167ff82edf88b68212e6": "0x0000000000000000000000000000000000000000000000000000000000000000", - "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce": "0x0000000000000000000000000000000000000000000000000000000000000004" + "0x2b81c5ca775b32a00e4d070917698ec780b1570a5f3e34d5788e2f5b776d4b81": "0x0000000000000000000000000000000000000000000000000000000000000000", + "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce": "0x0000000000000000000000000000000000000000000000000000000000000002" }, "extraData": { "proofList": [ { - "address": "0x5847653f3c2e05aef6838550513fda1a8528dcb3", + "address": "0xd9a6bd6326a696711a4bc9a6500b5df879c4aa24", "nonce": 1, "balance": "0x0", "codeHash": "0x9772386adf211243e408babcc6954a63410e2d2b7eb665442221c5d5fcc7ccf0", "storage": { "key": "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", - "value": "0x0000000000000000000000000000000000000000000000000000000000000003" + "value": "0x0000000000000000000000000000000000000000000000000000000000000001" } } ] @@ -9061,16 +7285,11 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", - "0x4" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317", + "0x2" ] }, { @@ -9083,15 +7302,10 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -9104,16 +7318,11 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -9126,17 +7335,12 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x2" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -9149,18 +7353,13 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x2", "0x0" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -9173,19 +7372,14 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x2", "0x0", - "0x1821e4b97d6" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -9198,20 +7392,15 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x2", "0x0", - "0x1821e4b97d6", + "0x18282cc9317", "0x0" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -9224,18 +7413,13 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x2", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -9248,19 +7432,14 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x2", "0x0", "0x20" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -9273,18 +7452,13 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x2", "0x20" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -9297,18 +7471,13 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x20", "0x2" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -9321,19 +7490,14 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x20", "0x2", "0x20" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -9346,17 +7510,12 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x20" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -9369,18 +7528,13 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x20", "0x20" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -9393,17 +7547,12 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x40" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -9416,18 +7565,13 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x40", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -9440,17 +7584,12 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x94e54a518d3c6f57d74f2c55b0483a8949b24c8947e1167ff82edf88b68212e6" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x2b81c5ca775b32a00e4d070917698ec780b1570a5f3e34d5788e2f5b776d4b81" ] }, { @@ -9463,18 +7602,13 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x94e54a518d3c6f57d74f2c55b0483a8949b24c8947e1167ff82edf88b68212e6", + "0x2b81c5ca775b32a00e4d070917698ec780b1570a5f3e34d5788e2f5b776d4b81", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -9487,19 +7621,14 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x94e54a518d3c6f57d74f2c55b0483a8949b24c8947e1167ff82edf88b68212e6", + "0x2b81c5ca775b32a00e4d070917698ec780b1570a5f3e34d5788e2f5b776d4b81", "0x0", "0x100" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -9512,18 +7641,13 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x94e54a518d3c6f57d74f2c55b0483a8949b24c8947e1167ff82edf88b68212e6", + "0x2b81c5ca775b32a00e4d070917698ec780b1570a5f3e34d5788e2f5b776d4b81", "0x1" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -9536,33 +7660,28 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x94e54a518d3c6f57d74f2c55b0483a8949b24c8947e1167ff82edf88b68212e6", + "0x2b81c5ca775b32a00e4d070917698ec780b1570a5f3e34d5788e2f5b776d4b81", "0x1", - "0x94e54a518d3c6f57d74f2c55b0483a8949b24c8947e1167ff82edf88b68212e6" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x2b81c5ca775b32a00e4d070917698ec780b1570a5f3e34d5788e2f5b776d4b81" ], "storage": { - "0x94e54a518d3c6f57d74f2c55b0483a8949b24c8947e1167ff82edf88b68212e6": "0x0000000000000000000000000000000000000000000000000000000000000000", - "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce": "0x0000000000000000000000000000000000000000000000000000000000000004" + "0x2b81c5ca775b32a00e4d070917698ec780b1570a5f3e34d5788e2f5b776d4b81": "0x0000000000000000000000000000000000000000000000000000000000000000", + "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce": "0x0000000000000000000000000000000000000000000000000000000000000002" }, "extraData": { "proofList": [ { - "address": "0x5847653f3c2e05aef6838550513fda1a8528dcb3", + "address": "0xd9a6bd6326a696711a4bc9a6500b5df879c4aa24", "nonce": 1, "balance": "0x0", "codeHash": "0x9772386adf211243e408babcc6954a63410e2d2b7eb665442221c5d5fcc7ccf0", "storage": { - "key": "0x94e54a518d3c6f57d74f2c55b0483a8949b24c8947e1167ff82edf88b68212e6", + "key": "0x2b81c5ca775b32a00e4d070917698ec780b1570a5f3e34d5788e2f5b776d4b81", "value": "0x0000000000000000000000000000000000000000000000000000000000000000" } } @@ -9579,19 +7698,14 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x94e54a518d3c6f57d74f2c55b0483a8949b24c8947e1167ff82edf88b68212e6", + "0x2b81c5ca775b32a00e4d070917698ec780b1570a5f3e34d5788e2f5b776d4b81", "0x1", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -9604,20 +7718,15 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x94e54a518d3c6f57d74f2c55b0483a8949b24c8947e1167ff82edf88b68212e6", + "0x2b81c5ca775b32a00e4d070917698ec780b1570a5f3e34d5788e2f5b776d4b81", "0x1", "0x0", "0x1" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -9630,21 +7739,16 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x94e54a518d3c6f57d74f2c55b0483a8949b24c8947e1167ff82edf88b68212e6", + "0x2b81c5ca775b32a00e4d070917698ec780b1570a5f3e34d5788e2f5b776d4b81", "0x1", "0x0", "0x1", "0xffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -9657,20 +7761,15 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x94e54a518d3c6f57d74f2c55b0483a8949b24c8947e1167ff82edf88b68212e6", + "0x2b81c5ca775b32a00e4d070917698ec780b1570a5f3e34d5788e2f5b776d4b81", "0x1", "0x0", "0xffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -9683,20 +7782,15 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x94e54a518d3c6f57d74f2c55b0483a8949b24c8947e1167ff82edf88b68212e6", + "0x2b81c5ca775b32a00e4d070917698ec780b1570a5f3e34d5788e2f5b776d4b81", "0x1", "0x0", "0xffffffffffffffffffffffff0000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -9709,19 +7803,14 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x94e54a518d3c6f57d74f2c55b0483a8949b24c8947e1167ff82edf88b68212e6", + "0x2b81c5ca775b32a00e4d070917698ec780b1570a5f3e34d5788e2f5b776d4b81", "0x1", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -9734,19 +7823,14 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x94e54a518d3c6f57d74f2c55b0483a8949b24c8947e1167ff82edf88b68212e6", + "0x2b81c5ca775b32a00e4d070917698ec780b1570a5f3e34d5788e2f5b776d4b81", "0x0", "0x1" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -9759,20 +7843,15 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x94e54a518d3c6f57d74f2c55b0483a8949b24c8947e1167ff82edf88b68212e6", + "0x2b81c5ca775b32a00e4d070917698ec780b1570a5f3e34d5788e2f5b776d4b81", "0x0", "0x1", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -9785,21 +7864,16 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x94e54a518d3c6f57d74f2c55b0483a8949b24c8947e1167ff82edf88b68212e6", + "0x2b81c5ca775b32a00e4d070917698ec780b1570a5f3e34d5788e2f5b776d4b81", "0x0", "0x1", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -9812,20 +7886,15 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x94e54a518d3c6f57d74f2c55b0483a8949b24c8947e1167ff82edf88b68212e6", + "0x2b81c5ca775b32a00e4d070917698ec780b1570a5f3e34d5788e2f5b776d4b81", "0x0", "0x1", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -9838,19 +7907,14 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x94e54a518d3c6f57d74f2c55b0483a8949b24c8947e1167ff82edf88b68212e6", + "0x2b81c5ca775b32a00e4d070917698ec780b1570a5f3e34d5788e2f5b776d4b81", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -9863,18 +7927,13 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x94e54a518d3c6f57d74f2c55b0483a8949b24c8947e1167ff82edf88b68212e6", + "0x2b81c5ca775b32a00e4d070917698ec780b1570a5f3e34d5788e2f5b776d4b81", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -9887,32 +7946,27 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x94e54a518d3c6f57d74f2c55b0483a8949b24c8947e1167ff82edf88b68212e6" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x2b81c5ca775b32a00e4d070917698ec780b1570a5f3e34d5788e2f5b776d4b81" ], "storage": { - "0x94e54a518d3c6f57d74f2c55b0483a8949b24c8947e1167ff82edf88b68212e6": "0x0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce": "0x0000000000000000000000000000000000000000000000000000000000000004" + "0x2b81c5ca775b32a00e4d070917698ec780b1570a5f3e34d5788e2f5b776d4b81": "0x0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce": "0x0000000000000000000000000000000000000000000000000000000000000002" }, "extraData": { "proofList": [ { - "address": "0x5847653f3c2e05aef6838550513fda1a8528dcb3", + "address": "0xd9a6bd6326a696711a4bc9a6500b5df879c4aa24", "nonce": 1, "balance": "0x0", "codeHash": "0x9772386adf211243e408babcc6954a63410e2d2b7eb665442221c5d5fcc7ccf0", "storage": { - "key": "0x94e54a518d3c6f57d74f2c55b0483a8949b24c8947e1167ff82edf88b68212e6", + "key": "0x2b81c5ca775b32a00e4d070917698ec780b1570a5f3e34d5788e2f5b776d4b81", "value": "0x0000000000000000000000000000000000000000000000000000000000000000" } } @@ -9929,16 +7983,11 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -9951,15 +8000,10 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -9972,16 +8016,11 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", - "0x1821e4b97d6" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317", + "0x18282cc9317" ] }, { @@ -9994,17 +8033,12 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -10017,18 +8051,13 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -10041,17 +8070,12 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -10064,18 +8088,13 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -10088,19 +8107,14 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x0", "0xffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -10113,18 +8127,13 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -10137,19 +8146,14 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x0", "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -10162,20 +8166,15 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x0", "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", "0x40" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -10188,20 +8187,15 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x0", "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", "0x80" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -10214,21 +8208,16 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x0", "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", "0x80", "0x40" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -10241,21 +8230,16 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x0", "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", "0x80", "0x80" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -10268,22 +8252,17 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x0", "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", "0x80", "0x80", "0x80" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -10296,22 +8275,17 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x0", "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", "0x80", "0x80", "0x80" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -10324,21 +8298,16 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x0", "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", "0x80", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -10351,21 +8320,16 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x0", "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", "0x0", "0x80" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -10378,15 +8342,10 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -10399,16 +8358,11 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x112f" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -10421,17 +8375,12 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x112f", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -10444,18 +8393,13 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x112f", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -10468,19 +8412,14 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x112f", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -10493,20 +8432,15 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x112f", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x16c7" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -10519,19 +8453,14 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x112f", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -10544,19 +8473,14 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x112f", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -10569,18 +8493,13 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x112f", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -10593,17 +8512,12 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x112f", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -10616,16 +8530,11 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x112f" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -10638,15 +8547,10 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -10659,15 +8563,10 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -10680,14 +8579,9 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -10700,13 +8594,8 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x708" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -10719,12 +8608,7 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -10737,12 +8621,7 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -10755,11 +8634,6 @@ "0x40c10f19", "0x1f6", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -10771,11 +8645,6 @@ "stack": [ "0x40c10f19", "0x1f6" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -10786,11 +8655,6 @@ "depth": 1, "stack": [ "0x40c10f19" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -10801,11 +8665,6 @@ "depth": 1, "stack": [ "0x40c10f19" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] } ] @@ -10815,28 +8674,28 @@ "failed": false, "from": { "address": "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "nonce": 113, - "balance": "0x56bc75e2d630ffffffffffffffffffffffffffffffffffffb14f657cb1f326", + "nonce": 105, + "balance": "0x56bc75e2d630ffffffffffffffffffffffffffffffffffff3317f3ea992242", "codeHash": "0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470" }, "to": { - "address": "0x5847653f3c2e05aef6838550513fda1a8528dcb3", + "address": "0xd9a6bd6326a696711a4bc9a6500b5df879c4aa24", "nonce": 1, "balance": "0x0", "codeHash": "0x9772386adf211243e408babcc6954a63410e2d2b7eb665442221c5d5fcc7ccf0" }, "accountAfter": [ { - "address": "0x5847653f3c2e05aef6838550513fda1a8528dcb3", + "address": "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "nonce": 106, + "balance": "0x56bc75e2d630ffffffffffffffffffffffffffffffffffff3317f2c857ccc0", + "codeHash": "0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470" + }, + { + "address": "0xd9a6bd6326a696711a4bc9a6500b5df879c4aa24", "nonce": 1, "balance": "0x0", "codeHash": "0x9772386adf211243e408babcc6954a63410e2d2b7eb665442221c5d5fcc7ccf0" - }, - { - "address": "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "nonce": 114, - "balance": "0x56bc75e2d630ffffffffffffffffffffffffffffffffffffb14f656f0ad7d8", - "codeHash": "0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470" } ], "codeHash": "0x9772386adf211243e408babcc6954a63410e2d2b7eb665442221c5d5fcc7ccf0", @@ -10868,11 +8727,6 @@ "stack": [ "0x80", "0x40" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" ] }, { @@ -10880,12 +8734,7 @@ "op": "CALLVALUE", "gas": 3002582, "gasCost": 2, - "depth": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] + "depth": 1 }, { "pc": 6, @@ -10895,11 +8744,6 @@ "depth": 1, "stack": [ "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -10911,11 +8755,6 @@ "stack": [ "0x0", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -10927,11 +8766,6 @@ "stack": [ "0x0", "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -10944,11 +8778,6 @@ "0x0", "0x1", "0x10" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -10959,11 +8788,6 @@ "depth": 1, "stack": [ "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -10974,11 +8798,6 @@ "depth": 1, "stack": [ "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -10986,12 +8805,7 @@ "op": "PUSH1", "gas": 3002558, "gasCost": 3, - "depth": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] + "depth": 1 }, { "pc": 20, @@ -11001,11 +8815,6 @@ "depth": 1, "stack": [ "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -11017,11 +8826,6 @@ "stack": [ "0x4", "0x64" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -11032,11 +8836,6 @@ "depth": 1, "stack": [ "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -11048,11 +8847,6 @@ "stack": [ "0x0", "0x121" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -11060,12 +8854,7 @@ "op": "PUSH1", "gas": 3002537, "gasCost": 3, - "depth": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] + "depth": 1 }, { "pc": 28, @@ -11075,11 +8864,6 @@ "depth": 1, "stack": [ "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -11090,11 +8874,6 @@ "depth": 1, "stack": [ "0x23b872dd0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -11106,11 +8885,6 @@ "stack": [ "0x23b872dd0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce", "0xe0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -11121,11 +8895,6 @@ "depth": 1, "stack": [ "0x23b872dd" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -11137,11 +8906,6 @@ "stack": [ "0x23b872dd", "0x23b872dd" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -11154,11 +8918,6 @@ "0x23b872dd", "0x23b872dd", "0x6352211e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -11170,11 +8929,6 @@ "stack": [ "0x23b872dd", "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -11187,11 +8941,6 @@ "0x23b872dd", "0x1", "0xad" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -11202,11 +8951,6 @@ "depth": 1, "stack": [ "0x23b872dd" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -11217,11 +8961,6 @@ "depth": 1, "stack": [ "0x23b872dd" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -11233,11 +8972,6 @@ "stack": [ "0x23b872dd", "0x23b872dd" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -11250,11 +8984,6 @@ "0x23b872dd", "0x23b872dd", "0x23b872dd" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -11266,11 +8995,6 @@ "stack": [ "0x23b872dd", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -11283,11 +9007,6 @@ "0x23b872dd", "0x0", "0xf4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -11298,11 +9017,6 @@ "depth": 1, "stack": [ "0x23b872dd" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -11314,11 +9028,6 @@ "stack": [ "0x23b872dd", "0x23b872dd" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -11331,11 +9040,6 @@ "0x23b872dd", "0x23b872dd", "0x23b872dd" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -11347,11 +9051,6 @@ "stack": [ "0x23b872dd", "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -11364,11 +9063,6 @@ "0x23b872dd", "0x1", "0x1c0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -11379,11 +9073,6 @@ "depth": 1, "stack": [ "0x23b872dd" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -11394,11 +9083,6 @@ "depth": 1, "stack": [ "0x23b872dd" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -11410,11 +9094,6 @@ "stack": [ "0x23b872dd", "0x1da" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -11427,11 +9106,6 @@ "0x23b872dd", "0x1da", "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -11445,11 +9119,6 @@ "0x1da", "0x4", "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -11464,11 +9133,6 @@ "0x4", "0x4", "0x64" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -11482,11 +9146,6 @@ "0x1da", "0x4", "0x60" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -11501,11 +9160,6 @@ "0x4", "0x60", "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -11519,11 +9173,6 @@ "0x1da", "0x4", "0x64" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -11537,11 +9186,6 @@ "0x1da", "0x64", "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -11556,11 +9200,6 @@ "0x64", "0x4", "0x1d5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -11575,11 +9214,6 @@ "0x1d5", "0x4", "0x64" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -11594,11 +9228,6 @@ "0x1d5", "0x64", "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -11614,11 +9243,6 @@ "0x64", "0x4", "0x19bc" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -11633,11 +9257,6 @@ "0x1d5", "0x64", "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -11652,11 +9271,6 @@ "0x1d5", "0x64", "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -11672,11 +9286,6 @@ "0x64", "0x4", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -11693,11 +9302,6 @@ "0x4", "0x0", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -11715,11 +9319,6 @@ "0x0", "0x0", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -11738,11 +9337,6 @@ "0x0", "0x0", "0x60" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -11762,11 +9356,6 @@ "0x0", "0x60", "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -11787,11 +9376,6 @@ "0x60", "0x4", "0x64" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -11811,11 +9395,6 @@ "0x0", "0x60", "0x60" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -11834,11 +9413,6 @@ "0x0", "0x0", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -11857,11 +9431,6 @@ "0x0", "0x0", "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -11881,11 +9450,6 @@ "0x0", "0x1", "0x19d1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -11903,11 +9467,6 @@ "0x0", "0x0", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -11925,11 +9484,6 @@ "0x0", "0x0", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -11948,11 +9502,6 @@ "0x0", "0x0", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -11972,11 +9521,6 @@ "0x0", "0x0", "0x19df" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -11997,11 +9541,6 @@ "0x0", "0x19df", "0x64" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -12023,11 +9562,6 @@ "0x19df", "0x64", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -12050,11 +9584,6 @@ "0x64", "0x0", "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -12076,11 +9605,6 @@ "0x19df", "0x64", "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -12103,11 +9627,6 @@ "0x64", "0x4", "0x18c4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -12129,11 +9648,6 @@ "0x19df", "0x64", "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -12155,11 +9669,6 @@ "0x19df", "0x64", "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -12182,11 +9691,6 @@ "0x64", "0x4", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -12210,11 +9714,6 @@ "0x4", "0x0", "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -12238,11 +9737,6 @@ "0x4", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -12266,11 +9760,6 @@ "0x4", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -12293,11 +9782,6 @@ "0x64", "0x4", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -12321,11 +9805,6 @@ "0x4", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x18d3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -12350,11 +9829,6 @@ "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x18d3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -12380,11 +9854,6 @@ "0x18d3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x26f5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -12409,11 +9878,6 @@ "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x18d3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -12438,11 +9902,6 @@ "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x18d3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -12468,11 +9927,6 @@ "0x18d3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x26fe" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -12499,11 +9953,6 @@ "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x26fe", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -12531,11 +9980,6 @@ "0x26fe", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x21c8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -12562,11 +10006,6 @@ "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x26fe", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -12593,11 +10032,6 @@ "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x26fe", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -12625,11 +10059,6 @@ "0x26fe", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -12658,11 +10087,6 @@ "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x0", "0x21d3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -12692,11 +10116,6 @@ "0x0", "0x21d3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -12727,11 +10146,6 @@ "0x21d3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x2212" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -12761,11 +10175,6 @@ "0x0", "0x21d3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -12795,11 +10204,6 @@ "0x0", "0x21d3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -12830,11 +10234,6 @@ "0x21d3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -12866,11 +10265,6 @@ "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x0", "0xffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -12903,11 +10297,6 @@ "0x0", "0xffffffffffffffffffffffffffffffffffffffff", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -12939,11 +10328,6 @@ "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -12975,11 +10359,6 @@ "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -13010,11 +10389,6 @@ "0x21d3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -13045,11 +10419,6 @@ "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x21d3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -13080,11 +10449,6 @@ "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x21d3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -13114,11 +10478,6 @@ "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x21d3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -13147,11 +10506,6 @@ "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -13180,11 +10534,6 @@ "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -13213,11 +10562,6 @@ "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -13245,11 +10589,6 @@ "0x26fe", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -13277,11 +10616,6 @@ "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x26fe" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -13309,11 +10643,6 @@ "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x26fe", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -13340,11 +10669,6 @@ "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x26fe" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -13370,11 +10694,6 @@ "0x18d3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -13400,11 +10719,6 @@ "0x18d3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -13431,11 +10745,6 @@ "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -13461,11 +10770,6 @@ "0x18d3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -13492,11 +10796,6 @@ "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x1", "0x2709" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -13521,11 +10820,6 @@ "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x18d3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -13550,11 +10844,6 @@ "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x18d3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -13578,11 +10867,6 @@ "0x4", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x18d3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -13605,11 +10889,6 @@ "0x64", "0x4", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -13632,11 +10911,6 @@ "0x64", "0x4", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -13659,11 +10933,6 @@ "0x64", "0x4", "0x19df" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -13686,11 +10955,6 @@ "0x19df", "0x4", "0x64" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -13712,11 +10976,6 @@ "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x19df", "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -13737,11 +10996,6 @@ "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x19df" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -13761,11 +11015,6 @@ "0x0", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -13785,11 +11034,6 @@ "0x0", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -13809,11 +11053,6 @@ "0x0", "0x0", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -13832,11 +11071,6 @@ "0x0", "0x0", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -13854,11 +11088,6 @@ "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x0", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -13877,11 +11106,6 @@ "0x0", "0x0", "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -13901,11 +11125,6 @@ "0x0", "0x20", "0x19f0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -13926,11 +11145,6 @@ "0x20", "0x19f0", "0x64" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -13952,11 +11166,6 @@ "0x19f0", "0x64", "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -13979,11 +11188,6 @@ "0x64", "0x20", "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -14005,11 +11209,6 @@ "0x19f0", "0x64", "0x24" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -14032,11 +11231,6 @@ "0x64", "0x24", "0x18c4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -14058,11 +11252,6 @@ "0x19f0", "0x64", "0x24" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -14084,11 +11273,6 @@ "0x19f0", "0x64", "0x24" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -14111,11 +11295,6 @@ "0x64", "0x24", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -14139,11 +11318,6 @@ "0x24", "0x0", "0x24" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -14167,11 +11341,6 @@ "0x24", "0x0", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -14195,11 +11364,6 @@ "0x24", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -14222,11 +11386,6 @@ "0x64", "0x24", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -14250,11 +11409,6 @@ "0x24", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x18d3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -14279,11 +11433,6 @@ "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x18d3", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -14309,11 +11458,6 @@ "0x18d3", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x26f5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -14338,11 +11482,6 @@ "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x18d3", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -14367,11 +11506,6 @@ "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x18d3", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -14397,11 +11531,6 @@ "0x18d3", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x26fe" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -14428,11 +11557,6 @@ "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x26fe", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -14460,11 +11584,6 @@ "0x26fe", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x21c8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -14491,11 +11610,6 @@ "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x26fe", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -14522,11 +11636,6 @@ "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x26fe", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -14554,11 +11663,6 @@ "0x26fe", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -14587,11 +11691,6 @@ "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x0", "0x21d3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -14621,11 +11720,6 @@ "0x0", "0x21d3", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -14656,11 +11750,6 @@ "0x21d3", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x2212" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -14690,11 +11779,6 @@ "0x0", "0x21d3", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -14724,11 +11808,6 @@ "0x0", "0x21d3", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -14759,11 +11838,6 @@ "0x21d3", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -14795,11 +11869,6 @@ "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x0", "0xffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -14832,11 +11901,6 @@ "0x0", "0xffffffffffffffffffffffffffffffffffffffff", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -14868,11 +11932,6 @@ "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x0", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -14904,11 +11963,6 @@ "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -14939,11 +11993,6 @@ "0x21d3", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -14974,11 +12023,6 @@ "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x21d3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -15009,11 +12053,6 @@ "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x21d3", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -15043,11 +12082,6 @@ "0x0", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x21d3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -15076,11 +12110,6 @@ "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x0", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -15109,11 +12138,6 @@ "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x0", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -15142,11 +12166,6 @@ "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -15174,11 +12193,6 @@ "0x26fe", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -15206,11 +12220,6 @@ "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x26fe" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -15238,11 +12247,6 @@ "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x26fe", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -15269,11 +12273,6 @@ "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x26fe" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -15299,11 +12298,6 @@ "0x18d3", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -15329,11 +12323,6 @@ "0x18d3", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -15360,11 +12349,6 @@ "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -15390,11 +12374,6 @@ "0x18d3", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -15421,11 +12400,6 @@ "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1", "0x2709" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -15450,11 +12424,6 @@ "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x18d3", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -15479,11 +12448,6 @@ "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x18d3", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -15507,11 +12471,6 @@ "0x24", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x18d3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -15534,11 +12493,6 @@ "0x64", "0x24", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -15561,11 +12515,6 @@ "0x64", "0x24", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -15588,11 +12537,6 @@ "0x64", "0x24", "0x19f0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -15615,11 +12559,6 @@ "0x19f0", "0x24", "0x64" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -15641,11 +12580,6 @@ "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x19f0", "0x24" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -15666,11 +12600,6 @@ "0x20", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x19f0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -15690,11 +12619,6 @@ "0x0", "0x20", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -15714,11 +12638,6 @@ "0x0", "0x20", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -15738,11 +12657,6 @@ "0x0", "0x20", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -15761,11 +12675,6 @@ "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x0", "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -15783,11 +12692,6 @@ "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -15806,11 +12710,6 @@ "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x0", "0x40" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -15830,11 +12729,6 @@ "0x0", "0x40", "0x1a01" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -15855,11 +12749,6 @@ "0x40", "0x1a01", "0x64" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -15881,11 +12770,6 @@ "0x1a01", "0x64", "0x40" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -15908,11 +12792,6 @@ "0x64", "0x40", "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -15934,11 +12813,6 @@ "0x1a01", "0x64", "0x44" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -15961,11 +12835,6 @@ "0x64", "0x44", "0x1942" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -15987,11 +12856,6 @@ "0x1a01", "0x64", "0x44" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -16013,11 +12877,6 @@ "0x1a01", "0x64", "0x44" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -16040,11 +12899,6 @@ "0x64", "0x44", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -16068,11 +12922,6 @@ "0x44", "0x0", "0x44" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -16095,12 +12944,7 @@ "0x64", "0x44", "0x0", - "0x1821e4b97d6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -16122,13 +12966,8 @@ "0x1a01", "0x64", "0x44", - "0x1821e4b97d6", + "0x18282cc9317", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -16150,12 +12989,7 @@ "0x1a01", "0x64", "0x44", - "0x1821e4b97d6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -16177,13 +13011,8 @@ "0x1a01", "0x64", "0x44", - "0x1821e4b97d6", + "0x18282cc9317", "0x1951" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -16205,14 +13034,9 @@ "0x1a01", "0x64", "0x44", - "0x1821e4b97d6", + "0x18282cc9317", "0x1951", - "0x1821e4b97d6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -16234,15 +13058,10 @@ "0x1a01", "0x64", "0x44", - "0x1821e4b97d6", + "0x18282cc9317", "0x1951", - "0x1821e4b97d6", + "0x18282cc9317", "0x273a" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -16264,14 +13083,9 @@ "0x1a01", "0x64", "0x44", - "0x1821e4b97d6", + "0x18282cc9317", "0x1951", - "0x1821e4b97d6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -16293,14 +13107,9 @@ "0x1a01", "0x64", "0x44", - "0x1821e4b97d6", + "0x18282cc9317", "0x1951", - "0x1821e4b97d6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -16322,15 +13131,10 @@ "0x1a01", "0x64", "0x44", - "0x1821e4b97d6", + "0x18282cc9317", "0x1951", - "0x1821e4b97d6", + "0x18282cc9317", "0x2743" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -16352,16 +13156,11 @@ "0x1a01", "0x64", "0x44", - "0x1821e4b97d6", + "0x18282cc9317", "0x1951", - "0x1821e4b97d6", + "0x18282cc9317", "0x2743", - "0x1821e4b97d6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -16383,17 +13182,12 @@ "0x1a01", "0x64", "0x44", - "0x1821e4b97d6", + "0x18282cc9317", "0x1951", - "0x1821e4b97d6", + "0x18282cc9317", "0x2743", - "0x1821e4b97d6", + "0x18282cc9317", "0x2232" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -16415,16 +13209,11 @@ "0x1a01", "0x64", "0x44", - "0x1821e4b97d6", + "0x18282cc9317", "0x1951", - "0x1821e4b97d6", + "0x18282cc9317", "0x2743", - "0x1821e4b97d6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -16446,16 +13235,11 @@ "0x1a01", "0x64", "0x44", - "0x1821e4b97d6", + "0x18282cc9317", "0x1951", - "0x1821e4b97d6", + "0x18282cc9317", "0x2743", - "0x1821e4b97d6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -16477,17 +13261,12 @@ "0x1a01", "0x64", "0x44", - "0x1821e4b97d6", + "0x18282cc9317", "0x1951", - "0x1821e4b97d6", + "0x18282cc9317", "0x2743", - "0x1821e4b97d6", + "0x18282cc9317", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -16509,18 +13288,13 @@ "0x1a01", "0x64", "0x44", - "0x1821e4b97d6", + "0x18282cc9317", "0x1951", - "0x1821e4b97d6", + "0x18282cc9317", "0x2743", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", - "0x1821e4b97d6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -16542,18 +13316,13 @@ "0x1a01", "0x64", "0x44", - "0x1821e4b97d6", + "0x18282cc9317", "0x1951", - "0x1821e4b97d6", + "0x18282cc9317", "0x2743", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -16575,17 +13344,12 @@ "0x1a01", "0x64", "0x44", - "0x1821e4b97d6", + "0x18282cc9317", "0x1951", - "0x1821e4b97d6", + "0x18282cc9317", "0x2743", - "0x1821e4b97d6", - "0x1821e4b97d6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317", + "0x18282cc9317" ] }, { @@ -16607,17 +13371,12 @@ "0x1a01", "0x64", "0x44", - "0x1821e4b97d6", + "0x18282cc9317", "0x1951", - "0x1821e4b97d6", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", + "0x18282cc9317", "0x2743" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -16639,17 +13398,12 @@ "0x1a01", "0x64", "0x44", - "0x1821e4b97d6", + "0x18282cc9317", "0x1951", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x2743", - "0x1821e4b97d6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -16671,16 +13425,11 @@ "0x1a01", "0x64", "0x44", - "0x1821e4b97d6", + "0x18282cc9317", "0x1951", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x2743" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -16702,15 +13451,10 @@ "0x1a01", "0x64", "0x44", - "0x1821e4b97d6", + "0x18282cc9317", "0x1951", - "0x1821e4b97d6", - "0x1821e4b97d6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317", + "0x18282cc9317" ] }, { @@ -16732,15 +13476,10 @@ "0x1a01", "0x64", "0x44", - "0x1821e4b97d6", + "0x18282cc9317", "0x1951", - "0x1821e4b97d6", - "0x1821e4b97d6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317", + "0x18282cc9317" ] }, { @@ -16762,16 +13501,11 @@ "0x1a01", "0x64", "0x44", - "0x1821e4b97d6", + "0x18282cc9317", "0x1951", - "0x1821e4b97d6", - "0x1821e4b97d6", - "0x1821e4b97d6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317", + "0x18282cc9317", + "0x18282cc9317" ] }, { @@ -16793,15 +13527,10 @@ "0x1a01", "0x64", "0x44", - "0x1821e4b97d6", + "0x18282cc9317", "0x1951", - "0x1821e4b97d6", + "0x18282cc9317", "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -16823,16 +13552,11 @@ "0x1a01", "0x64", "0x44", - "0x1821e4b97d6", + "0x18282cc9317", "0x1951", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0x274e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -16854,14 +13578,9 @@ "0x1a01", "0x64", "0x44", - "0x1821e4b97d6", + "0x18282cc9317", "0x1951", - "0x1821e4b97d6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -16883,14 +13602,9 @@ "0x1a01", "0x64", "0x44", - "0x1821e4b97d6", + "0x18282cc9317", "0x1951", - "0x1821e4b97d6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -16912,13 +13626,8 @@ "0x1a01", "0x64", "0x44", - "0x1821e4b97d6", + "0x18282cc9317", "0x1951" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -16940,12 +13649,7 @@ "0x1a01", "0x64", "0x44", - "0x1821e4b97d6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -16967,12 +13671,7 @@ "0x1a01", "0x64", "0x44", - "0x1821e4b97d6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -16991,15 +13690,10 @@ "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x0", "0x40", - "0x1821e4b97d6", + "0x18282cc9317", "0x64", "0x44", "0x1a01" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -17018,15 +13712,10 @@ "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x0", "0x40", - "0x1821e4b97d6", + "0x18282cc9317", "0x1a01", "0x44", "0x64" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -17045,14 +13734,9 @@ "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x0", "0x40", - "0x1821e4b97d6", + "0x18282cc9317", "0x1a01", "0x44" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -17071,13 +13755,8 @@ "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x0", "0x40", - "0x1821e4b97d6", + "0x18282cc9317", "0x1a01" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -17096,12 +13775,7 @@ "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x0", "0x40", - "0x1821e4b97d6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -17120,12 +13794,7 @@ "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x0", "0x40", - "0x1821e4b97d6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -17142,14 +13811,9 @@ "0x4", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x40", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -17166,13 +13830,8 @@ "0x4", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x40" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -17189,12 +13848,7 @@ "0x4", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -17208,15 +13862,10 @@ "0x1da", "0x1d5", "0x64", - "0x1821e4b97d6", + "0x18282cc9317", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -17230,14 +13879,9 @@ "0x1da", "0x1d5", "0x64", - "0x1821e4b97d6", + "0x18282cc9317", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -17251,14 +13895,9 @@ "0x1da", "0x1d5", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x64" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -17272,13 +13911,8 @@ "0x1da", "0x1d5", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -17292,13 +13926,8 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1d5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -17312,12 +13941,7 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -17331,12 +13955,7 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -17350,13 +13969,8 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x69e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -17370,12 +13984,7 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -17389,12 +13998,7 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -17408,13 +14012,8 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6af" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -17428,14 +14027,9 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6af", "0x6a9" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -17449,15 +14043,10 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6af", "0x6a9", "0xb9c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -17471,14 +14060,9 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6af", "0x6a9" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -17492,14 +14076,9 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6af", "0x6a9" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -17513,15 +14092,10 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6af", "0x6a9", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -17535,16 +14109,11 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6af", "0x6a9", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -17558,16 +14127,11 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6af", "0x6a9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -17581,15 +14145,10 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6af", "0x6a9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -17603,15 +14162,10 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6af", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x6a9" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -17625,14 +14179,9 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6af", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -17646,14 +14195,9 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6af", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -17667,15 +14211,10 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6af", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -17689,16 +14228,11 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6af", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0xc5d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -17712,15 +14246,10 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6af", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -17734,15 +14263,10 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6af", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -17756,16 +14280,11 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6af", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -17779,17 +14298,12 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6af", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -17803,18 +14317,13 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6af", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0xc69" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -17828,19 +14337,14 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6af", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0xc69", - "0x1821e4b97d6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -17854,20 +14358,15 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6af", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0xc69", - "0x1821e4b97d6", + "0x18282cc9317", "0x74a" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -17881,19 +14380,14 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6af", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0xc69", - "0x1821e4b97d6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -17907,19 +14401,14 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6af", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0xc69", - "0x1821e4b97d6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -17933,20 +14422,15 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6af", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0xc69", - "0x1821e4b97d6", + "0x18282cc9317", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -17960,21 +14444,16 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6af", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0xc69", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -17988,22 +14467,17 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6af", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0xc69", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0x2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -18017,23 +14491,18 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6af", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0xc69", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0x2", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -18047,24 +14516,19 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6af", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0xc69", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0x2", "0x0", - "0x1821e4b97d6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -18078,25 +14542,20 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6af", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0xc69", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0x2", "0x0", - "0x1821e4b97d6", + "0x18282cc9317", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -18110,23 +14569,18 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6af", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0xc69", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0x2", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -18140,24 +14594,19 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6af", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0xc69", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0x2", "0x0", "0x20" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -18171,23 +14620,18 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6af", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0xc69", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0x2", "0x20" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -18201,23 +14645,18 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6af", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0xc69", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0x20", "0x2" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -18231,24 +14670,19 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6af", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0xc69", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0x20", "0x2", "0x20" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -18262,22 +14696,17 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6af", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0xc69", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0x20" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -18291,23 +14720,18 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6af", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0xc69", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0x20", "0x20" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -18321,22 +14745,17 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6af", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0xc69", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0x40" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -18350,23 +14769,18 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6af", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0xc69", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0x40", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -18380,22 +14794,17 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6af", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0xc69", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", - "0x94e54a518d3c6f57d74f2c55b0483a8949b24c8947e1167ff82edf88b68212e6" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x2b81c5ca775b32a00e4d070917698ec780b1570a5f3e34d5788e2f5b776d4b81" ] }, { @@ -18409,23 +14818,18 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6af", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0xc69", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", - "0x94e54a518d3c6f57d74f2c55b0483a8949b24c8947e1167ff82edf88b68212e6", + "0x2b81c5ca775b32a00e4d070917698ec780b1570a5f3e34d5788e2f5b776d4b81", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -18439,36 +14843,31 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6af", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0xc69", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0x0", - "0x94e54a518d3c6f57d74f2c55b0483a8949b24c8947e1167ff82edf88b68212e6" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x2b81c5ca775b32a00e4d070917698ec780b1570a5f3e34d5788e2f5b776d4b81" ], "storage": { - "0x94e54a518d3c6f57d74f2c55b0483a8949b24c8947e1167ff82edf88b68212e6": "0x0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + "0x2b81c5ca775b32a00e4d070917698ec780b1570a5f3e34d5788e2f5b776d4b81": "0x0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" }, "extraData": { "proofList": [ { - "address": "0x5847653f3c2e05aef6838550513fda1a8528dcb3", + "address": "0xd9a6bd6326a696711a4bc9a6500b5df879c4aa24", "nonce": 1, "balance": "0x0", "codeHash": "0x9772386adf211243e408babcc6954a63410e2d2b7eb665442221c5d5fcc7ccf0", "storage": { - "key": "0x94e54a518d3c6f57d74f2c55b0483a8949b24c8947e1167ff82edf88b68212e6", + "key": "0x2b81c5ca775b32a00e4d070917698ec780b1570a5f3e34d5788e2f5b776d4b81", "value": "0x0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" } } @@ -18486,23 +14885,18 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6af", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0xc69", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -18516,23 +14910,18 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6af", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0xc69", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -18546,24 +14935,19 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6af", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0xc69", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x0", "0x100" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -18577,23 +14961,18 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6af", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0xc69", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x1" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -18607,23 +14986,18 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6af", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0xc69", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0x1", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -18637,22 +15011,17 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6af", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0xc69", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -18666,23 +15035,18 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6af", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0xc69", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -18696,22 +15060,17 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6af", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0xc69", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -18725,22 +15084,17 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6af", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0xc69", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -18754,21 +15108,16 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6af", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0xc69", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -18782,22 +15131,17 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6af", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0xc69", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -18811,23 +15155,18 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6af", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0xc69", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x0", "0xffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -18841,22 +15180,17 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6af", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0xc69", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -18870,23 +15204,18 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6af", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0xc69", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -18900,24 +15229,19 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6af", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0xc69", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -18931,23 +15255,18 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6af", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0xc69", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -18961,22 +15280,17 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6af", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0xc69", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -18990,22 +15304,17 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6af", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0xc69", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x1" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -19019,23 +15328,18 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6af", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0xc69", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x1", "0x7f3" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -19049,21 +15353,16 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6af", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0xc69", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -19077,21 +15376,16 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6af", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0xc69", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -19105,22 +15399,17 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6af", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0xc69", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -19134,22 +15423,17 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6af", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0xc69", - "0x1821e4b97d6", + "0x18282cc9317", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -19163,21 +15447,16 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6af", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0xc69", - "0x1821e4b97d6", + "0x18282cc9317", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -19191,20 +15470,15 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6af", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0xc69", - "0x1821e4b97d6", + "0x18282cc9317", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -19218,20 +15492,15 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6af", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0xc69" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -19245,20 +15514,15 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6af", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xc69", - "0x1821e4b97d6" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -19272,19 +15536,14 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6af", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xc69" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -19298,18 +15557,13 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6af", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -19323,18 +15577,13 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6af", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -19348,18 +15597,13 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6af", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -19373,17 +15617,12 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6af", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -19397,18 +15636,13 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6af", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -19422,19 +15656,14 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6af", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -19448,18 +15677,13 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6af", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -19473,19 +15697,14 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6af", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -19499,20 +15718,15 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6af", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -19526,19 +15740,14 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6af", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -19552,18 +15761,13 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6af", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x1" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -19577,19 +15781,14 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6af", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x1", "0x1" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -19603,20 +15802,15 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6af", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x1", "0x1", "0xcab" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -19630,18 +15824,13 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6af", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x1" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -19655,18 +15844,13 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6af", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x1" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -19680,19 +15864,14 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6af", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x1", "0x1" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -19706,20 +15885,15 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6af", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x1", "0x1", "0xce9" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -19733,18 +15907,13 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6af", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x1" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -19758,18 +15927,13 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6af", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x1" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -19783,18 +15947,13 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6af", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -19808,17 +15967,12 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6af", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -19832,16 +15986,11 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6af", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x1" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -19855,16 +16004,11 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0x6af" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -19878,16 +16022,11 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0x6af", - "0x1821e4b97d6", + "0x18282cc9317", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -19901,15 +16040,10 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0x6af", - "0x1821e4b97d6" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -19923,14 +16057,9 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0x6af" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -19944,13 +16073,8 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -19964,13 +16088,8 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -19984,14 +16103,9 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0x6ee" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -20005,12 +16119,7 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -20024,12 +16133,7 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -20043,13 +16147,8 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -20063,14 +16162,9 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -20084,15 +16178,10 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -20106,16 +16195,11 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -20129,17 +16213,12 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xcf2" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -20153,16 +16232,11 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -20176,16 +16250,11 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -20199,17 +16268,12 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -20223,18 +16287,13 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -20248,17 +16307,12 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -20272,18 +16326,13 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xd12" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -20297,19 +16346,14 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xd12", - "0x1821e4b97d6" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -20323,20 +16367,15 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xd12", - "0x1821e4b97d6", + "0x18282cc9317", "0x74a" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -20350,19 +16389,14 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xd12", - "0x1821e4b97d6" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -20376,19 +16410,14 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xd12", - "0x1821e4b97d6" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -20402,20 +16431,15 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xd12", - "0x1821e4b97d6", + "0x18282cc9317", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -20429,21 +16453,16 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xd12", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -20457,22 +16476,17 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xd12", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0x2" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -20486,23 +16500,18 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xd12", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0x2", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -20516,24 +16525,19 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xd12", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0x2", "0x0", - "0x1821e4b97d6" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -20547,25 +16551,20 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xd12", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0x2", "0x0", - "0x1821e4b97d6", + "0x18282cc9317", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -20579,23 +16578,18 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xd12", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0x2", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -20609,24 +16603,19 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xd12", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0x2", "0x0", "0x20" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -20640,23 +16629,18 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xd12", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0x2", "0x20" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -20670,23 +16654,18 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xd12", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0x20", "0x2" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -20700,24 +16679,19 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xd12", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0x20", "0x2", "0x20" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -20731,22 +16705,17 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xd12", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0x20" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -20760,23 +16729,18 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xd12", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0x20", "0x20" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -20790,22 +16754,17 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xd12", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0x40" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -20819,23 +16778,18 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xd12", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0x40", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -20849,22 +16803,17 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xd12", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", - "0x94e54a518d3c6f57d74f2c55b0483a8949b24c8947e1167ff82edf88b68212e6" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x2b81c5ca775b32a00e4d070917698ec780b1570a5f3e34d5788e2f5b776d4b81" ] }, { @@ -20878,23 +16827,18 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xd12", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", - "0x94e54a518d3c6f57d74f2c55b0483a8949b24c8947e1167ff82edf88b68212e6", + "0x2b81c5ca775b32a00e4d070917698ec780b1570a5f3e34d5788e2f5b776d4b81", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -20908,36 +16852,31 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xd12", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0x0", - "0x94e54a518d3c6f57d74f2c55b0483a8949b24c8947e1167ff82edf88b68212e6" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x2b81c5ca775b32a00e4d070917698ec780b1570a5f3e34d5788e2f5b776d4b81" ], "storage": { - "0x94e54a518d3c6f57d74f2c55b0483a8949b24c8947e1167ff82edf88b68212e6": "0x0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + "0x2b81c5ca775b32a00e4d070917698ec780b1570a5f3e34d5788e2f5b776d4b81": "0x0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" }, "extraData": { "proofList": [ { - "address": "0x5847653f3c2e05aef6838550513fda1a8528dcb3", + "address": "0xd9a6bd6326a696711a4bc9a6500b5df879c4aa24", "nonce": 1, "balance": "0x0", "codeHash": "0x9772386adf211243e408babcc6954a63410e2d2b7eb665442221c5d5fcc7ccf0", "storage": { - "key": "0x94e54a518d3c6f57d74f2c55b0483a8949b24c8947e1167ff82edf88b68212e6", + "key": "0x2b81c5ca775b32a00e4d070917698ec780b1570a5f3e34d5788e2f5b776d4b81", "value": "0x0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" } } @@ -20955,23 +16894,18 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xd12", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -20985,23 +16919,18 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xd12", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -21015,24 +16944,19 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xd12", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x0", "0x100" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -21046,23 +16970,18 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xd12", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x1" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -21076,23 +16995,18 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xd12", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0x1", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -21106,22 +17020,17 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xd12", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -21135,23 +17044,18 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xd12", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -21165,22 +17069,17 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xd12", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -21194,22 +17093,17 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xd12", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -21223,21 +17117,16 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xd12", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -21251,22 +17140,17 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xd12", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -21280,23 +17164,18 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xd12", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x0", "0xffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -21310,22 +17189,17 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xd12", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -21339,23 +17213,18 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xd12", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -21369,24 +17238,19 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xd12", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -21400,23 +17264,18 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xd12", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -21430,22 +17289,17 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xd12", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -21459,22 +17313,17 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xd12", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x1" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -21488,23 +17337,18 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xd12", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x1", "0x7f3" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -21518,21 +17362,16 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xd12", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -21546,21 +17385,16 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xd12", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -21574,22 +17408,17 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xd12", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -21603,22 +17432,17 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xd12", - "0x1821e4b97d6", + "0x18282cc9317", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -21632,21 +17456,16 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xd12", - "0x1821e4b97d6", + "0x18282cc9317", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -21660,20 +17479,15 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xd12", - "0x1821e4b97d6", + "0x18282cc9317", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -21687,20 +17501,15 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0xd12" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -21714,20 +17523,15 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xd12", - "0x1821e4b97d6" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -21741,19 +17545,14 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xd12" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -21767,18 +17566,13 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -21792,18 +17586,13 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -21817,19 +17606,14 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -21843,18 +17627,13 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -21868,17 +17647,12 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -21892,18 +17666,13 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xd68" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -21917,16 +17686,11 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -21940,16 +17704,11 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -21963,17 +17722,12 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -21987,18 +17741,13 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0xffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -22012,17 +17761,12 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -22036,18 +17780,13 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -22061,19 +17800,14 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0xffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -22087,18 +17821,13 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -22112,17 +17841,12 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -22136,17 +17860,12 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -22160,18 +17879,13 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xdd8" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -22185,16 +17899,11 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -22208,16 +17917,11 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -22231,17 +17935,12 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xde3" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -22255,18 +17954,13 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xde3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -22280,19 +17974,14 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xde3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -22306,20 +17995,15 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xde3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -22333,21 +18017,16 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xde3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x16c2" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -22361,20 +18040,15 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xde3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -22388,20 +18062,15 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xde3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -22415,19 +18084,14 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xde3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -22441,18 +18105,13 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xde3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -22466,17 +18125,12 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xde3" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -22490,16 +18144,11 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -22513,16 +18162,11 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -22536,17 +18180,12 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xdee" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -22560,18 +18199,13 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xdee", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -22585,19 +18219,14 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xdee", "0x0", - "0x1821e4b97d6" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -22611,20 +18240,15 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xdee", "0x0", - "0x1821e4b97d6", + "0x18282cc9317", "0xba4" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -22638,19 +18262,14 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xdee", "0x0", - "0x1821e4b97d6" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -22664,19 +18283,14 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xdee", "0x0", - "0x1821e4b97d6" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -22690,20 +18304,15 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xdee", "0x0", - "0x1821e4b97d6", + "0x18282cc9317", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -22717,21 +18326,16 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xdee", "0x0", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x4" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -22745,22 +18349,17 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xdee", "0x0", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x4", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -22774,23 +18373,18 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xdee", "0x0", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x4", "0x0", - "0x1821e4b97d6" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -22804,24 +18398,19 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xdee", "0x0", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x4", "0x0", - "0x1821e4b97d6", + "0x18282cc9317", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -22835,22 +18424,17 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xdee", "0x0", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x4", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -22864,23 +18448,18 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xdee", "0x0", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x4", "0x0", "0x20" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -22894,22 +18473,17 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xdee", "0x0", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x4", "0x20" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -22923,22 +18497,17 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xdee", "0x0", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x20", "0x4" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -22952,23 +18521,18 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xdee", "0x0", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x20", "0x4", "0x20" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -22982,21 +18546,16 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xdee", "0x0", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x20" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -23010,22 +18569,17 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xdee", "0x0", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x20", "0x20" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -23039,21 +18593,16 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xdee", "0x0", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x40" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -23067,22 +18616,17 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xdee", "0x0", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x40", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -23096,21 +18640,16 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xdee", "0x0", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", - "0xa5fe1795ba21fb40f3bbfeafa51fa5cdc4a157f3ff388bbab3251269b2084c6d" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000080" + "0xba42f16ce9ab53f08b2613fa17b1a7bf7ae8df7c12ce4c0a71e9af736ce25154" ] }, { @@ -23124,22 +18663,17 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xdee", "0x0", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", - "0xa5fe1795ba21fb40f3bbfeafa51fa5cdc4a157f3ff388bbab3251269b2084c6d", + "0xba42f16ce9ab53f08b2613fa17b1a7bf7ae8df7c12ce4c0a71e9af736ce25154", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -23153,23 +18687,18 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xdee", "0x0", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", - "0xa5fe1795ba21fb40f3bbfeafa51fa5cdc4a157f3ff388bbab3251269b2084c6d", + "0xba42f16ce9ab53f08b2613fa17b1a7bf7ae8df7c12ce4c0a71e9af736ce25154", "0x0", "0x100" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -23183,22 +18712,17 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xdee", "0x0", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", - "0xa5fe1795ba21fb40f3bbfeafa51fa5cdc4a157f3ff388bbab3251269b2084c6d", + "0xba42f16ce9ab53f08b2613fa17b1a7bf7ae8df7c12ce4c0a71e9af736ce25154", "0x1" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -23212,37 +18736,32 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xdee", "0x0", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", - "0xa5fe1795ba21fb40f3bbfeafa51fa5cdc4a157f3ff388bbab3251269b2084c6d", + "0xba42f16ce9ab53f08b2613fa17b1a7bf7ae8df7c12ce4c0a71e9af736ce25154", "0x1", - "0xa5fe1795ba21fb40f3bbfeafa51fa5cdc4a157f3ff388bbab3251269b2084c6d" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000080" + "0xba42f16ce9ab53f08b2613fa17b1a7bf7ae8df7c12ce4c0a71e9af736ce25154" ], "storage": { - "0x94e54a518d3c6f57d74f2c55b0483a8949b24c8947e1167ff82edf88b68212e6": "0x0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0xa5fe1795ba21fb40f3bbfeafa51fa5cdc4a157f3ff388bbab3251269b2084c6d": "0x0000000000000000000000000000000000000000000000000000000000000000" + "0x2b81c5ca775b32a00e4d070917698ec780b1570a5f3e34d5788e2f5b776d4b81": "0x0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xba42f16ce9ab53f08b2613fa17b1a7bf7ae8df7c12ce4c0a71e9af736ce25154": "0x0000000000000000000000000000000000000000000000000000000000000000" }, "extraData": { "proofList": [ { - "address": "0x5847653f3c2e05aef6838550513fda1a8528dcb3", + "address": "0xd9a6bd6326a696711a4bc9a6500b5df879c4aa24", "nonce": 1, "balance": "0x0", "codeHash": "0x9772386adf211243e408babcc6954a63410e2d2b7eb665442221c5d5fcc7ccf0", "storage": { - "key": "0xa5fe1795ba21fb40f3bbfeafa51fa5cdc4a157f3ff388bbab3251269b2084c6d", + "key": "0xba42f16ce9ab53f08b2613fa17b1a7bf7ae8df7c12ce4c0a71e9af736ce25154", "value": "0x0000000000000000000000000000000000000000000000000000000000000000" } } @@ -23260,23 +18779,18 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xdee", "0x0", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", - "0xa5fe1795ba21fb40f3bbfeafa51fa5cdc4a157f3ff388bbab3251269b2084c6d", + "0xba42f16ce9ab53f08b2613fa17b1a7bf7ae8df7c12ce4c0a71e9af736ce25154", "0x1", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -23290,24 +18804,19 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xdee", "0x0", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", - "0xa5fe1795ba21fb40f3bbfeafa51fa5cdc4a157f3ff388bbab3251269b2084c6d", + "0xba42f16ce9ab53f08b2613fa17b1a7bf7ae8df7c12ce4c0a71e9af736ce25154", "0x1", "0x0", "0x1" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -23321,25 +18830,20 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xdee", "0x0", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", - "0xa5fe1795ba21fb40f3bbfeafa51fa5cdc4a157f3ff388bbab3251269b2084c6d", + "0xba42f16ce9ab53f08b2613fa17b1a7bf7ae8df7c12ce4c0a71e9af736ce25154", "0x1", "0x0", "0x1", "0xffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -23353,24 +18857,19 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xdee", "0x0", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", - "0xa5fe1795ba21fb40f3bbfeafa51fa5cdc4a157f3ff388bbab3251269b2084c6d", + "0xba42f16ce9ab53f08b2613fa17b1a7bf7ae8df7c12ce4c0a71e9af736ce25154", "0x1", "0x0", "0xffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -23384,24 +18883,19 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xdee", "0x0", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", - "0xa5fe1795ba21fb40f3bbfeafa51fa5cdc4a157f3ff388bbab3251269b2084c6d", + "0xba42f16ce9ab53f08b2613fa17b1a7bf7ae8df7c12ce4c0a71e9af736ce25154", "0x1", "0x0", "0xffffffffffffffffffffffff0000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -23415,23 +18909,18 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xdee", "0x0", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", - "0xa5fe1795ba21fb40f3bbfeafa51fa5cdc4a157f3ff388bbab3251269b2084c6d", + "0xba42f16ce9ab53f08b2613fa17b1a7bf7ae8df7c12ce4c0a71e9af736ce25154", "0x1", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -23445,23 +18934,18 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xdee", "0x0", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", - "0xa5fe1795ba21fb40f3bbfeafa51fa5cdc4a157f3ff388bbab3251269b2084c6d", + "0xba42f16ce9ab53f08b2613fa17b1a7bf7ae8df7c12ce4c0a71e9af736ce25154", "0x0", "0x1" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -23475,24 +18959,19 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xdee", "0x0", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", - "0xa5fe1795ba21fb40f3bbfeafa51fa5cdc4a157f3ff388bbab3251269b2084c6d", + "0xba42f16ce9ab53f08b2613fa17b1a7bf7ae8df7c12ce4c0a71e9af736ce25154", "0x0", "0x1", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -23506,25 +18985,20 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xdee", "0x0", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", - "0xa5fe1795ba21fb40f3bbfeafa51fa5cdc4a157f3ff388bbab3251269b2084c6d", + "0xba42f16ce9ab53f08b2613fa17b1a7bf7ae8df7c12ce4c0a71e9af736ce25154", "0x0", "0x1", "0x0", "0xffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -23538,24 +19012,19 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xdee", "0x0", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", - "0xa5fe1795ba21fb40f3bbfeafa51fa5cdc4a157f3ff388bbab3251269b2084c6d", + "0xba42f16ce9ab53f08b2613fa17b1a7bf7ae8df7c12ce4c0a71e9af736ce25154", "0x0", "0x1", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -23569,23 +19038,18 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xdee", "0x0", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", - "0xa5fe1795ba21fb40f3bbfeafa51fa5cdc4a157f3ff388bbab3251269b2084c6d", + "0xba42f16ce9ab53f08b2613fa17b1a7bf7ae8df7c12ce4c0a71e9af736ce25154", "0x0", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -23599,22 +19063,17 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xdee", "0x0", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", - "0xa5fe1795ba21fb40f3bbfeafa51fa5cdc4a157f3ff388bbab3251269b2084c6d", + "0xba42f16ce9ab53f08b2613fa17b1a7bf7ae8df7c12ce4c0a71e9af736ce25154", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -23628,36 +19087,31 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xdee", "0x0", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", - "0xa5fe1795ba21fb40f3bbfeafa51fa5cdc4a157f3ff388bbab3251269b2084c6d" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000080" + "0xba42f16ce9ab53f08b2613fa17b1a7bf7ae8df7c12ce4c0a71e9af736ce25154" ], "storage": { - "0x94e54a518d3c6f57d74f2c55b0483a8949b24c8947e1167ff82edf88b68212e6": "0x0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0xa5fe1795ba21fb40f3bbfeafa51fa5cdc4a157f3ff388bbab3251269b2084c6d": "0x0000000000000000000000000000000000000000000000000000000000000000" + "0x2b81c5ca775b32a00e4d070917698ec780b1570a5f3e34d5788e2f5b776d4b81": "0x0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xba42f16ce9ab53f08b2613fa17b1a7bf7ae8df7c12ce4c0a71e9af736ce25154": "0x0000000000000000000000000000000000000000000000000000000000000000" }, "extraData": { "proofList": [ { - "address": "0x5847653f3c2e05aef6838550513fda1a8528dcb3", + "address": "0xd9a6bd6326a696711a4bc9a6500b5df879c4aa24", "nonce": 1, "balance": "0x0", "codeHash": "0x9772386adf211243e408babcc6954a63410e2d2b7eb665442221c5d5fcc7ccf0", "storage": { - "key": "0xa5fe1795ba21fb40f3bbfeafa51fa5cdc4a157f3ff388bbab3251269b2084c6d", + "key": "0xba42f16ce9ab53f08b2613fa17b1a7bf7ae8df7c12ce4c0a71e9af736ce25154", "value": "0x0000000000000000000000000000000000000000000000000000000000000000" } } @@ -23675,20 +19129,15 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xdee", "0x0", - "0x1821e4b97d6", + "0x18282cc9317", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -23702,19 +19151,14 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xdee", "0x0", - "0x1821e4b97d6" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -23728,20 +19172,15 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xdee", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317", + "0x18282cc9317" ] }, { @@ -23755,21 +19194,16 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xdee", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -23783,22 +19217,17 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xdee", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0", "0xffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -23812,21 +19241,16 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xdee", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -23840,22 +19264,17 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xdee", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0", "0xc17" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -23869,23 +19288,18 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xdee", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0", "0xc17", - "0x1821e4b97d6" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -23899,24 +19313,19 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xdee", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0", "0xc17", - "0x1821e4b97d6", + "0x18282cc9317", "0x74a" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -23930,23 +19339,18 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xdee", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0", "0xc17", - "0x1821e4b97d6" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -23960,23 +19364,18 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xdee", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0", "0xc17", - "0x1821e4b97d6" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -23990,24 +19389,19 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xdee", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0", "0xc17", - "0x1821e4b97d6", + "0x18282cc9317", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -24021,25 +19415,20 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xdee", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0", "0xc17", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -24053,26 +19442,21 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xdee", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0", "0xc17", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0x2" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -24086,27 +19470,22 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xdee", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0", "0xc17", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0x2", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -24120,28 +19499,23 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xdee", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0", "0xc17", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0x2", "0x0", - "0x1821e4b97d6" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -24155,29 +19529,24 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xdee", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0", "0xc17", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0x2", "0x0", - "0x1821e4b97d6", + "0x18282cc9317", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -24191,27 +19560,22 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xdee", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0", "0xc17", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0x2", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -24225,28 +19589,23 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xdee", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0", "0xc17", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0x2", "0x0", "0x20" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -24260,27 +19619,22 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xdee", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0", "0xc17", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0x2", "0x20" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -24294,27 +19648,22 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xdee", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0", "0xc17", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0x20", "0x2" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -24328,28 +19677,23 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xdee", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0", "0xc17", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0x20", "0x2", "0x20" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -24363,26 +19707,21 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xdee", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0", "0xc17", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0x20" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -24396,27 +19735,22 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xdee", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0", "0xc17", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0x20", "0x20" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -24430,26 +19764,21 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xdee", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0", "0xc17", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0x40" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -24463,27 +19792,22 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xdee", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0", "0xc17", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0x40", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -24497,26 +19821,21 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xdee", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0", "0xc17", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", - "0x94e54a518d3c6f57d74f2c55b0483a8949b24c8947e1167ff82edf88b68212e6" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x2b81c5ca775b32a00e4d070917698ec780b1570a5f3e34d5788e2f5b776d4b81" ] }, { @@ -24530,27 +19849,22 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xdee", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0", "0xc17", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", - "0x94e54a518d3c6f57d74f2c55b0483a8949b24c8947e1167ff82edf88b68212e6", + "0x2b81c5ca775b32a00e4d070917698ec780b1570a5f3e34d5788e2f5b776d4b81", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -24564,41 +19878,36 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xdee", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0", "0xc17", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0x0", - "0x94e54a518d3c6f57d74f2c55b0483a8949b24c8947e1167ff82edf88b68212e6" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x2b81c5ca775b32a00e4d070917698ec780b1570a5f3e34d5788e2f5b776d4b81" ], "storage": { - "0x94e54a518d3c6f57d74f2c55b0483a8949b24c8947e1167ff82edf88b68212e6": "0x0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0xa5fe1795ba21fb40f3bbfeafa51fa5cdc4a157f3ff388bbab3251269b2084c6d": "0x0000000000000000000000000000000000000000000000000000000000000000" + "0x2b81c5ca775b32a00e4d070917698ec780b1570a5f3e34d5788e2f5b776d4b81": "0x0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xba42f16ce9ab53f08b2613fa17b1a7bf7ae8df7c12ce4c0a71e9af736ce25154": "0x0000000000000000000000000000000000000000000000000000000000000000" }, "extraData": { "proofList": [ { - "address": "0x5847653f3c2e05aef6838550513fda1a8528dcb3", + "address": "0xd9a6bd6326a696711a4bc9a6500b5df879c4aa24", "nonce": 1, "balance": "0x0", "codeHash": "0x9772386adf211243e408babcc6954a63410e2d2b7eb665442221c5d5fcc7ccf0", "storage": { - "key": "0x94e54a518d3c6f57d74f2c55b0483a8949b24c8947e1167ff82edf88b68212e6", + "key": "0x2b81c5ca775b32a00e4d070917698ec780b1570a5f3e34d5788e2f5b776d4b81", "value": "0x0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" } } @@ -24616,27 +19925,22 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xdee", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0", "0xc17", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -24650,27 +19954,22 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xdee", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0", "0xc17", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -24684,28 +19983,23 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xdee", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0", "0xc17", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x0", "0x100" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -24719,27 +20013,22 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xdee", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0", "0xc17", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x1" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -24753,27 +20042,22 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xdee", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0", "0xc17", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0x1", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -24787,26 +20071,21 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xdee", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0", "0xc17", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -24820,27 +20099,22 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xdee", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0", "0xc17", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -24854,26 +20128,21 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xdee", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0", "0xc17", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -24887,26 +20156,21 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xdee", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0", "0xc17", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -24920,25 +20184,20 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xdee", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0", "0xc17", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -24952,26 +20211,21 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xdee", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0", "0xc17", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -24985,27 +20239,22 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xdee", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0", "0xc17", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x0", "0xffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -25019,26 +20268,21 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xdee", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0", "0xc17", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -25052,27 +20296,22 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xdee", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0", "0xc17", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -25086,28 +20325,23 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xdee", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0", "0xc17", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -25121,27 +20355,22 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xdee", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0", "0xc17", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -25155,26 +20384,21 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xdee", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0", "0xc17", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -25188,26 +20412,21 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xdee", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0", "0xc17", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x1" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -25221,27 +20440,22 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xdee", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0", "0xc17", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x1", "0x7f3" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -25255,25 +20469,20 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xdee", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0", "0xc17", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -25287,25 +20496,20 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xdee", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0", "0xc17", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -25319,26 +20523,21 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xdee", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0", "0xc17", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -25352,26 +20551,21 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xdee", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0", "0xc17", - "0x1821e4b97d6", + "0x18282cc9317", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -25385,25 +20579,20 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xdee", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0", "0xc17", - "0x1821e4b97d6", + "0x18282cc9317", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -25417,24 +20606,19 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xdee", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0", "0xc17", - "0x1821e4b97d6", + "0x18282cc9317", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -25448,24 +20632,19 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xdee", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1821e4b97d6", + "0x18282cc9317", "0xc17" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -25479,24 +20658,19 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xdee", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xc17", - "0x1821e4b97d6" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -25510,23 +20684,18 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xdee", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xc17" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -25540,22 +20709,17 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xdee", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -25569,22 +20733,17 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xdee", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -25598,23 +20757,18 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xdee", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -25628,22 +20782,17 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xdee", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -25657,23 +20806,18 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xdee", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -25687,24 +20831,19 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xdee", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", "0x40" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -25718,24 +20857,19 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xdee", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", "0x80" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -25749,25 +20883,20 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xdee", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", "0x80", "0x40" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -25781,25 +20910,20 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xdee", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", "0x80", "0x80" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -25813,26 +20937,21 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xdee", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", "0x80", "0x80", "0x80" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -25846,26 +20965,21 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xdee", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", "0x80", "0x80", "0x80" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -25879,25 +20993,20 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xdee", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", "0x80", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -25911,25 +21020,20 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xdee", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", "0x0", "0x80" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -25943,19 +21047,14 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xdee", "0x0", - "0x1821e4b97d6" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -25969,18 +21068,13 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xdee", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -25994,17 +21088,12 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xdee" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -26018,16 +21107,11 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -26041,16 +21125,11 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -26064,17 +21143,12 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -26088,18 +21162,13 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0x3" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -26113,19 +21182,14 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0x3", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -26139,20 +21203,15 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0x3", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -26166,21 +21225,16 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0x3", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -26194,20 +21248,15 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0x3", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -26221,21 +21270,16 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0x3", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -26249,20 +21293,15 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0x3", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -26276,21 +21315,16 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0x3", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -26304,19 +21338,14 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0x3", "0x0" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -26330,20 +21359,15 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0x3", "0x0", "0x20" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -26357,19 +21381,14 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0x3", "0x20" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -26383,19 +21402,14 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0x20", "0x3" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -26409,20 +21423,15 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0x20", "0x3", "0x20" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -26436,18 +21445,13 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0x20" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -26461,19 +21465,14 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0x20", "0x20" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -26487,18 +21486,13 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0x40" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -26512,19 +21506,14 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0x40", "0x0" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -26538,18 +21527,13 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -26563,19 +21547,14 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", "0x0" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -26589,20 +21568,15 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", "0x0", "0x1" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -26616,37 +21590,32 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", "0x0", "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce" ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" - ], "storage": { - "0x94e54a518d3c6f57d74f2c55b0483a8949b24c8947e1167ff82edf88b68212e6": "0x0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0xa5fe1795ba21fb40f3bbfeafa51fa5cdc4a157f3ff388bbab3251269b2084c6d": "0x0000000000000000000000000000000000000000000000000000000000000000", - "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce": "0x0000000000000000000000000000000000000000000000000000000000000004" + "0x2b81c5ca775b32a00e4d070917698ec780b1570a5f3e34d5788e2f5b776d4b81": "0x0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xba42f16ce9ab53f08b2613fa17b1a7bf7ae8df7c12ce4c0a71e9af736ce25154": "0x0000000000000000000000000000000000000000000000000000000000000000", + "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce": "0x0000000000000000000000000000000000000000000000000000000000000002" }, "extraData": { "proofList": [ { - "address": "0x5847653f3c2e05aef6838550513fda1a8528dcb3", + "address": "0xd9a6bd6326a696711a4bc9a6500b5df879c4aa24", "nonce": 1, "balance": "0x0", "codeHash": "0x9772386adf211243e408babcc6954a63410e2d2b7eb665442221c5d5fcc7ccf0", "storage": { "key": "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", - "value": "0x0000000000000000000000000000000000000000000000000000000000000004" + "value": "0x0000000000000000000000000000000000000000000000000000000000000002" } } ] @@ -26663,21 +21632,16 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", "0x0", "0x1", - "0x4" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x2" ] }, { @@ -26691,22 +21655,17 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", "0x0", "0x1", - "0x4", + "0x2", "0xe3e" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -26720,22 +21679,17 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", "0x0", "0xe3e", - "0x4", + "0x2", "0x1" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -26749,22 +21703,17 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", "0x0", "0xe3e", "0x1", - "0x4" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x2" ] }, { @@ -26778,23 +21727,18 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", "0x0", "0xe3e", "0x1", - "0x4", + "0x2", "0x2194" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -26808,22 +21752,17 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", "0x0", "0xe3e", "0x1", - "0x4" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x2" ] }, { @@ -26837,22 +21776,17 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", "0x0", "0xe3e", "0x1", - "0x4" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x2" ] }, { @@ -26866,23 +21800,18 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", "0x0", "0xe3e", "0x1", - "0x4", + "0x2", "0x0" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -26896,24 +21825,19 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", "0x0", "0xe3e", "0x1", - "0x4", + "0x2", "0x0", "0x219f" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -26927,25 +21851,20 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", "0x0", "0xe3e", "0x1", - "0x4", + "0x2", "0x0", "0x219f", - "0x4" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x2" ] }, { @@ -26959,26 +21878,21 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", "0x0", "0xe3e", "0x1", - "0x4", + "0x2", "0x0", "0x219f", - "0x4", + "0x2", "0x2232" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -26992,25 +21906,20 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", "0x0", "0xe3e", "0x1", - "0x4", + "0x2", "0x0", "0x219f", - "0x4" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x2" ] }, { @@ -27024,25 +21933,20 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", "0x0", "0xe3e", "0x1", - "0x4", + "0x2", "0x0", "0x219f", - "0x4" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x2" ] }, { @@ -27056,26 +21960,21 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", "0x0", "0xe3e", "0x1", - "0x4", + "0x2", "0x0", "0x219f", - "0x4", + "0x2", "0x0" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -27089,27 +21988,22 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", "0x0", "0xe3e", "0x1", - "0x4", + "0x2", "0x0", "0x219f", - "0x4", + "0x2", "0x0", - "0x4" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x2" ] }, { @@ -27123,27 +22017,22 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", "0x0", "0xe3e", "0x1", - "0x4", + "0x2", "0x0", "0x219f", - "0x4", - "0x4", + "0x2", + "0x2", "0x0" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -27157,26 +22046,21 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", "0x0", "0xe3e", "0x1", - "0x4", + "0x2", "0x0", "0x219f", - "0x4", - "0x4" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x2", + "0x2" ] }, { @@ -27190,26 +22074,21 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", "0x0", "0xe3e", "0x1", - "0x4", + "0x2", "0x0", - "0x4", - "0x4", + "0x2", + "0x2", "0x219f" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -27223,26 +22102,21 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", "0x0", "0xe3e", "0x1", - "0x4", + "0x2", "0x0", - "0x4", + "0x2", "0x219f", - "0x4" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x2" ] }, { @@ -27256,25 +22130,20 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", "0x0", "0xe3e", "0x1", - "0x4", + "0x2", "0x0", - "0x4", + "0x2", "0x219f" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -27288,24 +22157,19 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", "0x0", "0xe3e", "0x1", - "0x4", + "0x2", "0x0", - "0x4" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x2" ] }, { @@ -27319,24 +22183,19 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", "0x0", "0xe3e", "0x1", - "0x4", + "0x2", "0x0", - "0x4" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x2" ] }, { @@ -27350,24 +22209,19 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", "0x0", "0xe3e", "0x1", - "0x4", + "0x2", "0x0", - "0x4" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x2" ] }, { @@ -27381,23 +22235,18 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", "0x0", "0xe3e", "0x1", - "0x4", + "0x2", "0x0" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -27411,24 +22260,19 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", "0x0", "0xe3e", "0x1", - "0x4", + "0x2", "0x0", "0x21aa" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -27442,25 +22286,20 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", "0x0", "0xe3e", "0x1", - "0x4", + "0x2", "0x0", "0x21aa", "0x1" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -27474,26 +22313,21 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", "0x0", "0xe3e", "0x1", - "0x4", + "0x2", "0x0", "0x21aa", "0x1", "0x2232" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -27507,25 +22341,20 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", "0x0", "0xe3e", "0x1", - "0x4", + "0x2", "0x0", "0x21aa", "0x1" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -27539,25 +22368,20 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", "0x0", "0xe3e", "0x1", - "0x4", + "0x2", "0x0", "0x21aa", "0x1" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -27571,26 +22395,21 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", "0x0", "0xe3e", "0x1", - "0x4", + "0x2", "0x0", "0x21aa", "0x1", "0x0" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -27604,27 +22423,22 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", "0x0", "0xe3e", "0x1", - "0x4", + "0x2", "0x0", "0x21aa", "0x1", "0x0", "0x1" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -27638,27 +22452,22 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", "0x0", "0xe3e", "0x1", - "0x4", + "0x2", "0x0", "0x21aa", "0x1", "0x1", "0x0" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -27672,26 +22481,21 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", "0x0", "0xe3e", "0x1", - "0x4", + "0x2", "0x0", "0x21aa", "0x1", "0x1" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -27705,26 +22509,21 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", "0x0", "0xe3e", "0x1", - "0x4", + "0x2", "0x0", "0x1", "0x1", "0x21aa" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -27738,26 +22537,21 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", "0x0", "0xe3e", "0x1", - "0x4", + "0x2", "0x0", "0x1", "0x21aa", "0x1" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -27771,25 +22565,20 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", "0x0", "0xe3e", "0x1", - "0x4", + "0x2", "0x0", "0x1", "0x21aa" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -27803,24 +22592,19 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", "0x0", "0xe3e", "0x1", - "0x4", + "0x2", "0x0", "0x1" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -27834,24 +22618,19 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", "0x0", "0xe3e", "0x1", - "0x4", + "0x2", "0x0", "0x1" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -27865,24 +22644,19 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", "0x0", "0xe3e", "0x1", - "0x4", + "0x2", "0x0", "0x1" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -27896,23 +22670,18 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", "0x0", "0xe3e", "0x1", - "0x4", + "0x2", "0x0" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -27926,24 +22695,19 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", "0x0", "0xe3e", "0x1", - "0x4", + "0x2", "0x0", "0x1" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -27957,25 +22721,20 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", "0x0", "0xe3e", "0x1", - "0x4", + "0x2", "0x0", "0x1", - "0x4" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x2" ] }, { @@ -27989,24 +22748,19 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", "0x0", "0xe3e", "0x1", - "0x4", + "0x2", "0x0", "0x0" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -28020,24 +22774,19 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", "0x0", "0xe3e", "0x1", - "0x4", + "0x2", "0x0", "0x1" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -28051,25 +22800,20 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", "0x0", "0xe3e", "0x1", - "0x4", + "0x2", "0x0", "0x1", "0x21bd" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -28083,23 +22827,18 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", "0x0", "0xe3e", "0x1", - "0x4", + "0x2", "0x0" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -28113,23 +22852,18 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", "0x0", "0xe3e", "0x1", - "0x4", + "0x2", "0x0" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -28143,24 +22877,19 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", "0x0", "0xe3e", "0x1", - "0x4", + "0x2", "0x0", "0x1" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -28174,25 +22903,20 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", "0x0", "0xe3e", "0x1", - "0x4", + "0x2", "0x0", "0x1", - "0x4" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x2" ] }, { @@ -28206,24 +22930,19 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", "0x0", "0xe3e", "0x1", - "0x4", + "0x2", "0x0", - "0x3" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x1" ] }, { @@ -28237,24 +22956,19 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", "0x0", "0xe3e", "0x1", - "0x4", - "0x3", + "0x2", + "0x1", "0x0" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -28268,23 +22982,18 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", "0x0", "0xe3e", "0x1", - "0x4", - "0x3" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x2", + "0x1" ] }, { @@ -28298,23 +23007,18 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", "0x0", - "0x3", "0x1", - "0x4", + "0x1", + "0x2", "0xe3e" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -28328,23 +23032,18 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", "0x0", - "0x3", + "0x1", "0xe3e", - "0x4", + "0x2", "0x1" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -28358,22 +23057,17 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", "0x0", - "0x3", + "0x1", "0xe3e", - "0x4" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x2" ] }, { @@ -28387,21 +23081,16 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", "0x0", - "0x3", + "0x1", "0xe3e" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -28415,20 +23104,15 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", "0x0", - "0x3" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x1" ] }, { @@ -28442,20 +23126,15 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", "0x0", - "0x3" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x1" ] }, { @@ -28469,20 +23148,15 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", - "0x3", + "0x18282cc9317", + "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", "0x0", "0x1" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -28496,19 +23170,14 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", - "0x3", + "0x18282cc9317", + "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", "0x0" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -28522,18 +23191,13 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", - "0x3", + "0x18282cc9317", + "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -28547,19 +23211,14 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", - "0x3", + "0x18282cc9317", + "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", - "0x3" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x1" ] }, { @@ -28573,35 +23232,30 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", - "0x3", - "0x3", + "0x18282cc9317", + "0x1", + "0x1", "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce" ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" - ], "storage": { - "0x94e54a518d3c6f57d74f2c55b0483a8949b24c8947e1167ff82edf88b68212e6": "0x0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0xa5fe1795ba21fb40f3bbfeafa51fa5cdc4a157f3ff388bbab3251269b2084c6d": "0x0000000000000000000000000000000000000000000000000000000000000000", - "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce": "0x0000000000000000000000000000000000000000000000000000000000000003" + "0x2b81c5ca775b32a00e4d070917698ec780b1570a5f3e34d5788e2f5b776d4b81": "0x0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xba42f16ce9ab53f08b2613fa17b1a7bf7ae8df7c12ce4c0a71e9af736ce25154": "0x0000000000000000000000000000000000000000000000000000000000000000", + "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce": "0x0000000000000000000000000000000000000000000000000000000000000001" }, "extraData": { "proofList": [ { - "address": "0x5847653f3c2e05aef6838550513fda1a8528dcb3", + "address": "0xd9a6bd6326a696711a4bc9a6500b5df879c4aa24", "nonce": 1, "balance": "0x0", "codeHash": "0x9772386adf211243e408babcc6954a63410e2d2b7eb665442221c5d5fcc7ccf0", "storage": { "key": "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce", - "value": "0x0000000000000000000000000000000000000000000000000000000000000004" + "value": "0x0000000000000000000000000000000000000000000000000000000000000002" } } ] @@ -28618,17 +23272,12 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", - "0x3" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317", + "0x1" ] }, { @@ -28642,16 +23291,11 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -28665,17 +23309,12 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -28689,18 +23328,13 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0x3" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -28714,19 +23348,14 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0x3", "0x0" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -28740,20 +23369,15 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0x3", "0x0", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -28767,21 +23391,16 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0x3", "0x0", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0xffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -28795,20 +23414,15 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0x3", "0x0", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -28822,21 +23436,16 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0x3", "0x0", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0xffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -28850,20 +23459,15 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0x3", "0x0", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -28877,21 +23481,16 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0x3", "0x0", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x0" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -28905,19 +23504,14 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0x3", "0x0" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -28931,20 +23525,15 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0x3", "0x0", "0x20" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -28958,19 +23547,14 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0x3", "0x20" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -28984,19 +23568,14 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0x20", "0x3" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -29010,20 +23589,15 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0x20", "0x3", "0x20" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -29037,18 +23611,13 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0x20" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -29062,19 +23631,14 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0x20", "0x20" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -29088,18 +23652,13 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0x40" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -29113,19 +23672,14 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0x40", "0x0" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -29139,18 +23693,13 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -29164,19 +23713,14 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df", "0x0" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -29190,20 +23734,15 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df", "0x0", "0x1" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -29217,32 +23756,27 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df", "0x0", "0x1", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df" ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" - ], "storage": { - "0x94e54a518d3c6f57d74f2c55b0483a8949b24c8947e1167ff82edf88b68212e6": "0x0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0xa5fe1795ba21fb40f3bbfeafa51fa5cdc4a157f3ff388bbab3251269b2084c6d": "0x0000000000000000000000000000000000000000000000000000000000000000", - "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce": "0x0000000000000000000000000000000000000000000000000000000000000003", + "0x2b81c5ca775b32a00e4d070917698ec780b1570a5f3e34d5788e2f5b776d4b81": "0x0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xba42f16ce9ab53f08b2613fa17b1a7bf7ae8df7c12ce4c0a71e9af736ce25154": "0x0000000000000000000000000000000000000000000000000000000000000000", + "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce": "0x0000000000000000000000000000000000000000000000000000000000000001", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df": "0x0000000000000000000000000000000000000000000000000000000000000006" }, "extraData": { "proofList": [ { - "address": "0x5847653f3c2e05aef6838550513fda1a8528dcb3", + "address": "0xd9a6bd6326a696711a4bc9a6500b5df879c4aa24", "nonce": 1, "balance": "0x0", "codeHash": "0x9772386adf211243e408babcc6954a63410e2d2b7eb665442221c5d5fcc7ccf0", @@ -29265,21 +23799,16 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df", "0x0", "0x1", "0x6" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -29293,22 +23822,17 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df", "0x0", "0x1", "0x6", "0xe95" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -29322,22 +23846,17 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df", "0x0", "0xe95", "0x6", "0x1" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -29351,22 +23870,17 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df", "0x0", "0xe95", "0x1", "0x6" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -29380,11 +23894,11 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df", "0x0", @@ -29392,11 +23906,6 @@ "0x1", "0x6", "0x210d" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -29410,22 +23919,17 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df", "0x0", "0xe95", "0x1", "0x6" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -29439,22 +23943,17 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df", "0x0", "0xe95", "0x1", "0x6" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -29468,11 +23967,11 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df", "0x0", @@ -29480,11 +23979,6 @@ "0x1", "0x6", "0x0" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -29498,11 +23992,11 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df", "0x0", @@ -29511,11 +24005,6 @@ "0x6", "0x0", "0x2118" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -29529,11 +24018,11 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df", "0x0", @@ -29543,11 +24032,6 @@ "0x0", "0x2118", "0x6" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -29561,11 +24045,11 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df", "0x0", @@ -29576,11 +24060,6 @@ "0x2118", "0x6", "0x2232" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -29594,11 +24073,11 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df", "0x0", @@ -29608,11 +24087,6 @@ "0x0", "0x2118", "0x6" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -29626,11 +24100,11 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df", "0x0", @@ -29640,11 +24114,6 @@ "0x0", "0x2118", "0x6" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -29658,11 +24127,11 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df", "0x0", @@ -29673,11 +24142,6 @@ "0x2118", "0x6", "0x0" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -29691,11 +24155,11 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df", "0x0", @@ -29707,11 +24171,6 @@ "0x6", "0x0", "0x6" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -29725,11 +24184,11 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df", "0x0", @@ -29741,11 +24200,6 @@ "0x6", "0x6", "0x0" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -29759,11 +24213,11 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df", "0x0", @@ -29774,11 +24228,6 @@ "0x2118", "0x6", "0x6" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -29792,11 +24241,11 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df", "0x0", @@ -29807,11 +24256,6 @@ "0x6", "0x6", "0x2118" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -29825,11 +24269,11 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df", "0x0", @@ -29840,11 +24284,6 @@ "0x6", "0x2118", "0x6" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -29858,11 +24297,11 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df", "0x0", @@ -29872,11 +24311,6 @@ "0x0", "0x6", "0x2118" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -29890,11 +24324,11 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df", "0x0", @@ -29903,11 +24337,6 @@ "0x6", "0x0", "0x6" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -29921,11 +24350,11 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df", "0x0", @@ -29934,11 +24363,6 @@ "0x6", "0x0", "0x6" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -29952,11 +24376,11 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df", "0x0", @@ -29965,11 +24389,6 @@ "0x6", "0x0", "0x6" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -29983,11 +24402,11 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df", "0x0", @@ -29995,11 +24414,6 @@ "0x1", "0x6", "0x0" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -30013,11 +24427,11 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df", "0x0", @@ -30026,11 +24440,6 @@ "0x6", "0x0", "0x2123" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -30044,11 +24453,11 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df", "0x0", @@ -30058,11 +24467,6 @@ "0x0", "0x2123", "0x1" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -30076,11 +24480,11 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df", "0x0", @@ -30091,11 +24495,6 @@ "0x2123", "0x1", "0x2232" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -30109,11 +24508,11 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df", "0x0", @@ -30123,11 +24522,6 @@ "0x0", "0x2123", "0x1" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -30141,11 +24535,11 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df", "0x0", @@ -30155,11 +24549,6 @@ "0x0", "0x2123", "0x1" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -30173,11 +24562,11 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df", "0x0", @@ -30188,11 +24577,6 @@ "0x2123", "0x1", "0x0" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -30206,11 +24590,11 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df", "0x0", @@ -30222,11 +24606,6 @@ "0x1", "0x0", "0x1" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -30240,11 +24619,11 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df", "0x0", @@ -30256,11 +24635,6 @@ "0x1", "0x1", "0x0" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -30274,11 +24648,11 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df", "0x0", @@ -30289,11 +24663,6 @@ "0x2123", "0x1", "0x1" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -30307,11 +24676,11 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df", "0x0", @@ -30322,11 +24691,6 @@ "0x1", "0x1", "0x2123" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -30340,11 +24704,11 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df", "0x0", @@ -30355,11 +24719,6 @@ "0x1", "0x2123", "0x1" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -30373,11 +24732,11 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df", "0x0", @@ -30387,11 +24746,6 @@ "0x0", "0x1", "0x2123" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -30405,11 +24759,11 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df", "0x0", @@ -30418,11 +24772,6 @@ "0x6", "0x0", "0x1" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -30436,11 +24785,11 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df", "0x0", @@ -30449,11 +24798,6 @@ "0x6", "0x0", "0x1" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -30467,11 +24811,11 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df", "0x0", @@ -30480,11 +24824,6 @@ "0x6", "0x0", "0x1" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -30498,11 +24837,11 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df", "0x0", @@ -30510,11 +24849,6 @@ "0x1", "0x6", "0x0" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -30528,11 +24862,11 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df", "0x0", @@ -30541,11 +24875,6 @@ "0x6", "0x0", "0x1" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -30559,11 +24888,11 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df", "0x0", @@ -30573,11 +24902,6 @@ "0x0", "0x1", "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -30591,11 +24915,11 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df", "0x0", @@ -30604,11 +24928,6 @@ "0x6", "0x0", "0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -30622,11 +24941,11 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df", "0x0", @@ -30636,11 +24955,6 @@ "0x0", "0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe", "0x6" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -30654,11 +24968,11 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df", "0x0", @@ -30667,11 +24981,6 @@ "0x6", "0x0", "0x0" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -30685,11 +24994,11 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df", "0x0", @@ -30698,11 +25007,6 @@ "0x6", "0x0", "0x1" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -30716,11 +25020,11 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df", "0x0", @@ -30730,11 +25034,6 @@ "0x0", "0x1", "0x2158" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -30748,11 +25047,11 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df", "0x0", @@ -30760,11 +25059,6 @@ "0x1", "0x6", "0x0" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -30778,11 +25072,11 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df", "0x0", @@ -30790,11 +25084,6 @@ "0x1", "0x6", "0x0" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -30808,11 +25097,11 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df", "0x0", @@ -30821,11 +25110,6 @@ "0x6", "0x0", "0x1" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -30839,11 +25123,11 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df", "0x0", @@ -30853,11 +25137,6 @@ "0x0", "0x1", "0x6" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -30871,11 +25150,11 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df", "0x0", @@ -30884,11 +25163,6 @@ "0x6", "0x0", "0x7" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -30902,11 +25176,11 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df", "0x0", @@ -30915,11 +25189,6 @@ "0x6", "0x7", "0x0" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -30933,11 +25202,11 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df", "0x0", @@ -30945,11 +25214,6 @@ "0x1", "0x6", "0x7" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -30963,11 +25227,11 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df", "0x0", @@ -30975,11 +25239,6 @@ "0x1", "0x6", "0xe95" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -30993,11 +25252,11 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df", "0x0", @@ -31005,11 +25264,6 @@ "0xe95", "0x6", "0x1" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -31023,22 +25277,17 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df", "0x0", "0x7", "0xe95", "0x6" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -31052,21 +25301,16 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df", "0x0", "0x7", "0xe95" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -31080,20 +25324,15 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df", "0x0", "0x7" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -31107,20 +25346,15 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df", "0x0", "0x7" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -31134,20 +25368,15 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x7", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df", "0x0", "0x1" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -31161,19 +25390,14 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x7", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df", "0x0" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -31187,18 +25411,13 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x7", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -31212,19 +25431,14 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x7", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df", "0x7" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -31238,30 +25452,25 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x7", "0x7", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df" ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" - ], "storage": { - "0x94e54a518d3c6f57d74f2c55b0483a8949b24c8947e1167ff82edf88b68212e6": "0x0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0xa5fe1795ba21fb40f3bbfeafa51fa5cdc4a157f3ff388bbab3251269b2084c6d": "0x0000000000000000000000000000000000000000000000000000000000000000", - "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce": "0x0000000000000000000000000000000000000000000000000000000000000003", + "0x2b81c5ca775b32a00e4d070917698ec780b1570a5f3e34d5788e2f5b776d4b81": "0x0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xba42f16ce9ab53f08b2613fa17b1a7bf7ae8df7c12ce4c0a71e9af736ce25154": "0x0000000000000000000000000000000000000000000000000000000000000000", + "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce": "0x0000000000000000000000000000000000000000000000000000000000000001", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df": "0x0000000000000000000000000000000000000000000000000000000000000007" }, "extraData": { "proofList": [ { - "address": "0x5847653f3c2e05aef6838550513fda1a8528dcb3", + "address": "0xd9a6bd6326a696711a4bc9a6500b5df879c4aa24", "nonce": 1, "balance": "0x0", "codeHash": "0x9772386adf211243e408babcc6954a63410e2d2b7eb665442221c5d5fcc7ccf0", @@ -31284,17 +25493,12 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x7" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -31308,16 +25512,11 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -31331,17 +25530,12 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -31355,18 +25549,13 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x2" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -31380,19 +25569,14 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x2", "0x0" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -31406,20 +25590,15 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x2", "0x0", - "0x1821e4b97d6" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -31433,21 +25612,16 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x2", "0x0", - "0x1821e4b97d6", + "0x18282cc9317", "0x0" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -31461,19 +25635,14 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x2", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -31487,20 +25656,15 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x2", "0x0", "0x20" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -31514,19 +25678,14 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x2", "0x20" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -31540,19 +25699,14 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x20", "0x2" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -31566,20 +25720,15 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x20", "0x2", "0x20" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -31593,18 +25742,13 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x20" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -31618,19 +25762,14 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x20", "0x20" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -31644,18 +25783,13 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x40" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -31669,19 +25803,14 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x40", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -31695,18 +25824,13 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x94e54a518d3c6f57d74f2c55b0483a8949b24c8947e1167ff82edf88b68212e6" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x2b81c5ca775b32a00e4d070917698ec780b1570a5f3e34d5788e2f5b776d4b81" ] }, { @@ -31720,19 +25844,14 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x94e54a518d3c6f57d74f2c55b0483a8949b24c8947e1167ff82edf88b68212e6", + "0x2b81c5ca775b32a00e4d070917698ec780b1570a5f3e34d5788e2f5b776d4b81", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -31746,20 +25865,15 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x94e54a518d3c6f57d74f2c55b0483a8949b24c8947e1167ff82edf88b68212e6", + "0x2b81c5ca775b32a00e4d070917698ec780b1570a5f3e34d5788e2f5b776d4b81", "0x0", "0x100" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -31773,19 +25887,14 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x94e54a518d3c6f57d74f2c55b0483a8949b24c8947e1167ff82edf88b68212e6", + "0x2b81c5ca775b32a00e4d070917698ec780b1570a5f3e34d5788e2f5b776d4b81", "0x1" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -31799,36 +25908,31 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x94e54a518d3c6f57d74f2c55b0483a8949b24c8947e1167ff82edf88b68212e6", + "0x2b81c5ca775b32a00e4d070917698ec780b1570a5f3e34d5788e2f5b776d4b81", "0x1", - "0x94e54a518d3c6f57d74f2c55b0483a8949b24c8947e1167ff82edf88b68212e6" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x2b81c5ca775b32a00e4d070917698ec780b1570a5f3e34d5788e2f5b776d4b81" ], "storage": { - "0x94e54a518d3c6f57d74f2c55b0483a8949b24c8947e1167ff82edf88b68212e6": "0x0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0xa5fe1795ba21fb40f3bbfeafa51fa5cdc4a157f3ff388bbab3251269b2084c6d": "0x0000000000000000000000000000000000000000000000000000000000000000", - "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce": "0x0000000000000000000000000000000000000000000000000000000000000003", + "0x2b81c5ca775b32a00e4d070917698ec780b1570a5f3e34d5788e2f5b776d4b81": "0x0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xba42f16ce9ab53f08b2613fa17b1a7bf7ae8df7c12ce4c0a71e9af736ce25154": "0x0000000000000000000000000000000000000000000000000000000000000000", + "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce": "0x0000000000000000000000000000000000000000000000000000000000000001", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df": "0x0000000000000000000000000000000000000000000000000000000000000007" }, "extraData": { "proofList": [ { - "address": "0x5847653f3c2e05aef6838550513fda1a8528dcb3", + "address": "0xd9a6bd6326a696711a4bc9a6500b5df879c4aa24", "nonce": 1, "balance": "0x0", "codeHash": "0x9772386adf211243e408babcc6954a63410e2d2b7eb665442221c5d5fcc7ccf0", "storage": { - "key": "0x94e54a518d3c6f57d74f2c55b0483a8949b24c8947e1167ff82edf88b68212e6", + "key": "0x2b81c5ca775b32a00e4d070917698ec780b1570a5f3e34d5788e2f5b776d4b81", "value": "0x0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" } } @@ -31846,20 +25950,15 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x94e54a518d3c6f57d74f2c55b0483a8949b24c8947e1167ff82edf88b68212e6", + "0x2b81c5ca775b32a00e4d070917698ec780b1570a5f3e34d5788e2f5b776d4b81", "0x1", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -31873,21 +25972,16 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x94e54a518d3c6f57d74f2c55b0483a8949b24c8947e1167ff82edf88b68212e6", + "0x2b81c5ca775b32a00e4d070917698ec780b1570a5f3e34d5788e2f5b776d4b81", "0x1", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x1" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -31901,22 +25995,17 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x94e54a518d3c6f57d74f2c55b0483a8949b24c8947e1167ff82edf88b68212e6", + "0x2b81c5ca775b32a00e4d070917698ec780b1570a5f3e34d5788e2f5b776d4b81", "0x1", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x1", "0xffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -31930,21 +26019,16 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x94e54a518d3c6f57d74f2c55b0483a8949b24c8947e1167ff82edf88b68212e6", + "0x2b81c5ca775b32a00e4d070917698ec780b1570a5f3e34d5788e2f5b776d4b81", "0x1", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -31958,21 +26042,16 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x94e54a518d3c6f57d74f2c55b0483a8949b24c8947e1167ff82edf88b68212e6", + "0x2b81c5ca775b32a00e4d070917698ec780b1570a5f3e34d5788e2f5b776d4b81", "0x1", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xffffffffffffffffffffffff0000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -31986,20 +26065,15 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x94e54a518d3c6f57d74f2c55b0483a8949b24c8947e1167ff82edf88b68212e6", + "0x2b81c5ca775b32a00e4d070917698ec780b1570a5f3e34d5788e2f5b776d4b81", "0x1", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -32013,20 +26087,15 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x94e54a518d3c6f57d74f2c55b0483a8949b24c8947e1167ff82edf88b68212e6", + "0x2b81c5ca775b32a00e4d070917698ec780b1570a5f3e34d5788e2f5b776d4b81", "0x0", "0x1" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -32040,21 +26109,16 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x94e54a518d3c6f57d74f2c55b0483a8949b24c8947e1167ff82edf88b68212e6", + "0x2b81c5ca775b32a00e4d070917698ec780b1570a5f3e34d5788e2f5b776d4b81", "0x0", "0x1", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -32068,22 +26132,17 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x94e54a518d3c6f57d74f2c55b0483a8949b24c8947e1167ff82edf88b68212e6", + "0x2b81c5ca775b32a00e4d070917698ec780b1570a5f3e34d5788e2f5b776d4b81", "0x0", "0x1", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0xffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -32097,21 +26156,16 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x94e54a518d3c6f57d74f2c55b0483a8949b24c8947e1167ff82edf88b68212e6", + "0x2b81c5ca775b32a00e4d070917698ec780b1570a5f3e34d5788e2f5b776d4b81", "0x0", "0x1", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -32125,20 +26179,15 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x94e54a518d3c6f57d74f2c55b0483a8949b24c8947e1167ff82edf88b68212e6", + "0x2b81c5ca775b32a00e4d070917698ec780b1570a5f3e34d5788e2f5b776d4b81", "0x0", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -32152,19 +26201,14 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x94e54a518d3c6f57d74f2c55b0483a8949b24c8947e1167ff82edf88b68212e6", + "0x2b81c5ca775b32a00e4d070917698ec780b1570a5f3e34d5788e2f5b776d4b81", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -32178,35 +26222,30 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x94e54a518d3c6f57d74f2c55b0483a8949b24c8947e1167ff82edf88b68212e6" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x2b81c5ca775b32a00e4d070917698ec780b1570a5f3e34d5788e2f5b776d4b81" ], "storage": { - "0x94e54a518d3c6f57d74f2c55b0483a8949b24c8947e1167ff82edf88b68212e6": "0x000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0xa5fe1795ba21fb40f3bbfeafa51fa5cdc4a157f3ff388bbab3251269b2084c6d": "0x0000000000000000000000000000000000000000000000000000000000000000", - "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce": "0x0000000000000000000000000000000000000000000000000000000000000003", + "0x2b81c5ca775b32a00e4d070917698ec780b1570a5f3e34d5788e2f5b776d4b81": "0x000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", + "0xba42f16ce9ab53f08b2613fa17b1a7bf7ae8df7c12ce4c0a71e9af736ce25154": "0x0000000000000000000000000000000000000000000000000000000000000000", + "0xc453201c12de7137fd0d343953c15b71777bdb6a1bb6bc7f9bf917e7c9150cce": "0x0000000000000000000000000000000000000000000000000000000000000001", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df": "0x0000000000000000000000000000000000000000000000000000000000000007" }, "extraData": { "proofList": [ { - "address": "0x5847653f3c2e05aef6838550513fda1a8528dcb3", + "address": "0xd9a6bd6326a696711a4bc9a6500b5df879c4aa24", "nonce": 1, "balance": "0x0", "codeHash": "0x9772386adf211243e408babcc6954a63410e2d2b7eb665442221c5d5fcc7ccf0", "storage": { - "key": "0x94e54a518d3c6f57d74f2c55b0483a8949b24c8947e1167ff82edf88b68212e6", + "key": "0x2b81c5ca775b32a00e4d070917698ec780b1570a5f3e34d5788e2f5b776d4b81", "value": "0x0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" } } @@ -32224,17 +26263,12 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -32248,16 +26282,11 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -32271,17 +26300,12 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", - "0x1821e4b97d6" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317", + "0x18282cc9317" ] }, { @@ -32295,18 +26319,13 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -32320,19 +26339,14 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0xffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -32346,18 +26360,13 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -32371,19 +26380,14 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -32397,20 +26401,15 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -32424,19 +26423,14 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -32450,20 +26444,15 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -32477,21 +26466,16 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", "0x40" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -32505,21 +26489,16 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", "0x80" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -32533,22 +26512,17 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", "0x80", "0x40" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -32562,22 +26536,17 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", "0x80", "0x80" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -32591,23 +26560,18 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", "0x80", "0x80", "0x80" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -32621,23 +26585,18 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", "0x80", "0x80", "0x80" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -32651,22 +26610,17 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", "0x80", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -32680,22 +26634,17 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", "0x0", "0x80" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -32709,16 +26658,11 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -32732,17 +26676,12 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xf54" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -32756,18 +26695,13 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xf54", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -32781,19 +26715,14 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xf54", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -32807,20 +26736,15 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xf54", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -32834,21 +26758,16 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xf54", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x16c7" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -32862,20 +26781,15 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xf54", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -32889,20 +26803,15 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xf54", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -32916,19 +26825,14 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xf54", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -32942,18 +26846,13 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xf54", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -32967,17 +26866,12 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xf54" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -32991,16 +26885,11 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -33014,16 +26903,11 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -33037,15 +26921,10 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -33059,14 +26938,9 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -33080,13 +26954,8 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x6f9" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -33100,12 +26969,7 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -33119,12 +26983,7 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -33138,11 +26997,6 @@ "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -33155,11 +27009,6 @@ "0x23b872dd", "0x1da", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -33171,11 +27020,6 @@ "stack": [ "0x23b872dd", "0x1da" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -33186,11 +27030,6 @@ "depth": 1, "stack": [ "0x23b872dd" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -33201,11 +27040,6 @@ "depth": 1, "stack": [ "0x23b872dd" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] } ] @@ -33215,34 +27049,34 @@ "failed": false, "from": { "address": "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "nonce": 14, - "balance": "0x3d590f7cba0f3d", + "nonce": 10, + "balance": "0x93a6e0d71dc0f7", "codeHash": "0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470" }, "to": { - "address": "0x5847653f3c2e05aef6838550513fda1a8528dcb3", + "address": "0xd9a6bd6326a696711a4bc9a6500b5df879c4aa24", "nonce": 1, "balance": "0x0", "codeHash": "0x9772386adf211243e408babcc6954a63410e2d2b7eb665442221c5d5fcc7ccf0" }, "accountAfter": [ - { - "address": "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "nonce": 114, - "balance": "0x56bc75e2d630ffffffffffffffffffffffffffffffffffffb17e4049545ed8", - "codeHash": "0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470" - }, { "address": "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "nonce": 15, - "balance": "0x3d2a3498468f10", + "nonce": 11, + "balance": "0x93780524bebeac", "codeHash": "0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470" }, { - "address": "0x5847653f3c2e05aef6838550513fda1a8528dcb3", + "address": "0xd9a6bd6326a696711a4bc9a6500b5df879c4aa24", "nonce": 1, "balance": "0x0", "codeHash": "0x9772386adf211243e408babcc6954a63410e2d2b7eb665442221c5d5fcc7ccf0" + }, + { + "address": "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "nonce": 106, + "balance": "0x56bc75e2d630ffffffffffffffffffffffffffffffffffff3346cda2a153c0", + "codeHash": "0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470" } ], "codeHash": "0x9772386adf211243e408babcc6954a63410e2d2b7eb665442221c5d5fcc7ccf0", @@ -33274,11 +27108,6 @@ "stack": [ "0x80", "0x40" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" ] }, { @@ -33286,12 +27115,7 @@ "op": "CALLVALUE", "gas": 3000502, "gasCost": 2, - "depth": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] + "depth": 1 }, { "pc": 6, @@ -33301,11 +27125,6 @@ "depth": 1, "stack": [ "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -33317,11 +27136,6 @@ "stack": [ "0x0", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -33333,11 +27147,6 @@ "stack": [ "0x0", "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -33350,11 +27159,6 @@ "0x0", "0x1", "0x10" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -33365,11 +27169,6 @@ "depth": 1, "stack": [ "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -33380,11 +27179,6 @@ "depth": 1, "stack": [ "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -33392,12 +27186,7 @@ "op": "PUSH1", "gas": 3000478, "gasCost": 3, - "depth": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] + "depth": 1 }, { "pc": 20, @@ -33407,11 +27196,6 @@ "depth": 1, "stack": [ "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -33423,11 +27207,6 @@ "stack": [ "0x4", "0x24" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -33438,11 +27217,6 @@ "depth": 1, "stack": [ "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -33454,11 +27228,6 @@ "stack": [ "0x0", "0x121" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -33466,12 +27235,7 @@ "op": "PUSH1", "gas": 3000457, "gasCost": 3, - "depth": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] + "depth": 1 }, { "pc": 28, @@ -33481,11 +27245,6 @@ "depth": 1, "stack": [ "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -33496,11 +27255,6 @@ "depth": 1, "stack": [ "0x42966c6800000000000000000000000000000000000000000000000000000182" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -33512,11 +27266,6 @@ "stack": [ "0x42966c6800000000000000000000000000000000000000000000000000000182", "0xe0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -33527,11 +27276,6 @@ "depth": 1, "stack": [ "0x42966c68" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -33543,11 +27287,6 @@ "stack": [ "0x42966c68", "0x42966c68" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -33560,11 +27299,6 @@ "0x42966c68", "0x42966c68", "0x6352211e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -33576,11 +27310,6 @@ "stack": [ "0x42966c68", "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -33593,11 +27322,6 @@ "0x42966c68", "0x1", "0xad" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -33608,11 +27332,6 @@ "depth": 1, "stack": [ "0x42966c68" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -33623,11 +27342,6 @@ "depth": 1, "stack": [ "0x42966c68" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -33639,11 +27353,6 @@ "stack": [ "0x42966c68", "0x42966c68" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -33656,11 +27365,6 @@ "0x42966c68", "0x42966c68", "0x23b872dd" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -33672,11 +27376,6 @@ "stack": [ "0x42966c68", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -33689,11 +27388,6 @@ "0x42966c68", "0x0", "0xf4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -33704,11 +27398,6 @@ "depth": 1, "stack": [ "0x42966c68" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -33720,11 +27409,6 @@ "stack": [ "0x42966c68", "0x42966c68" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -33737,11 +27421,6 @@ "0x42966c68", "0x42966c68", "0x23b872dd" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -33753,11 +27432,6 @@ "stack": [ "0x42966c68", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -33770,11 +27444,6 @@ "0x42966c68", "0x0", "0x1c0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -33785,11 +27454,6 @@ "depth": 1, "stack": [ "0x42966c68" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -33801,11 +27465,6 @@ "stack": [ "0x42966c68", "0x42966c68" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -33818,11 +27477,6 @@ "0x42966c68", "0x42966c68", "0x40c10f19" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -33834,11 +27488,6 @@ "stack": [ "0x42966c68", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -33851,11 +27500,6 @@ "0x42966c68", "0x0", "0x1dc" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -33866,11 +27510,6 @@ "depth": 1, "stack": [ "0x42966c68" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -33882,11 +27521,6 @@ "stack": [ "0x42966c68", "0x42966c68" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -33899,11 +27533,6 @@ "0x42966c68", "0x42966c68", "0x42842e0e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -33915,11 +27544,6 @@ "stack": [ "0x42966c68", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -33932,11 +27556,6 @@ "0x42966c68", "0x0", "0x1f8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -33947,11 +27566,6 @@ "depth": 1, "stack": [ "0x42966c68" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -33963,11 +27577,6 @@ "stack": [ "0x42966c68", "0x42966c68" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -33980,11 +27589,6 @@ "0x42966c68", "0x42966c68", "0x42966c68" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -33996,11 +27600,6 @@ "stack": [ "0x42966c68", "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -34013,11 +27612,6 @@ "0x42966c68", "0x1", "0x214" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -34028,11 +27622,6 @@ "depth": 1, "stack": [ "0x42966c68" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -34043,11 +27632,6 @@ "depth": 1, "stack": [ "0x42966c68" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -34059,11 +27643,6 @@ "stack": [ "0x42966c68", "0x22e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -34076,11 +27655,6 @@ "0x42966c68", "0x22e", "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -34094,11 +27668,6 @@ "0x22e", "0x4", "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -34113,11 +27682,6 @@ "0x4", "0x4", "0x24" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -34131,11 +27695,6 @@ "0x22e", "0x4", "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -34150,11 +27709,6 @@ "0x4", "0x20", "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -34168,11 +27722,6 @@ "0x22e", "0x4", "0x24" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -34186,11 +27735,6 @@ "0x22e", "0x24", "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -34205,11 +27749,6 @@ "0x24", "0x4", "0x229" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -34224,11 +27763,6 @@ "0x229", "0x4", "0x24" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -34243,11 +27777,6 @@ "0x229", "0x24", "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -34263,11 +27792,6 @@ "0x24", "0x4", "0x1bb7" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -34282,11 +27806,6 @@ "0x229", "0x24", "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -34301,11 +27820,6 @@ "0x229", "0x24", "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -34321,11 +27835,6 @@ "0x24", "0x4", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -34342,11 +27851,6 @@ "0x4", "0x0", "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -34364,11 +27868,6 @@ "0x0", "0x20", "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -34387,11 +27886,6 @@ "0x20", "0x4", "0x24" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -34409,11 +27903,6 @@ "0x0", "0x20", "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -34430,11 +27919,6 @@ "0x4", "0x0", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -34451,11 +27935,6 @@ "0x4", "0x0", "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -34473,11 +27952,6 @@ "0x0", "0x1", "0x1bc9" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -34493,11 +27967,6 @@ "0x24", "0x4", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -34513,11 +27982,6 @@ "0x24", "0x4", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -34534,11 +27998,6 @@ "0x4", "0x0", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -34556,11 +28015,6 @@ "0x0", "0x0", "0x1bd7" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -34579,11 +28033,6 @@ "0x0", "0x1bd7", "0x24" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -34603,11 +28052,6 @@ "0x1bd7", "0x24", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -34628,11 +28072,6 @@ "0x24", "0x0", "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -34652,11 +28091,6 @@ "0x1bd7", "0x24", "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -34677,11 +28111,6 @@ "0x24", "0x4", "0x1942" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -34701,11 +28130,6 @@ "0x1bd7", "0x24", "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -34725,11 +28149,6 @@ "0x1bd7", "0x24", "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -34750,11 +28169,6 @@ "0x24", "0x4", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -34776,11 +28190,6 @@ "0x4", "0x0", "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -34801,12 +28210,7 @@ "0x24", "0x4", "0x0", - "0x1821e4b97d6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -34826,13 +28230,8 @@ "0x1bd7", "0x24", "0x4", - "0x1821e4b97d6", + "0x18282cc9317", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -34852,12 +28251,7 @@ "0x1bd7", "0x24", "0x4", - "0x1821e4b97d6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -34877,13 +28271,8 @@ "0x1bd7", "0x24", "0x4", - "0x1821e4b97d6", + "0x18282cc9317", "0x1951" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -34903,14 +28292,9 @@ "0x1bd7", "0x24", "0x4", - "0x1821e4b97d6", + "0x18282cc9317", "0x1951", - "0x1821e4b97d6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -34930,15 +28314,10 @@ "0x1bd7", "0x24", "0x4", - "0x1821e4b97d6", + "0x18282cc9317", "0x1951", - "0x1821e4b97d6", + "0x18282cc9317", "0x273a" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -34958,14 +28337,9 @@ "0x1bd7", "0x24", "0x4", - "0x1821e4b97d6", + "0x18282cc9317", "0x1951", - "0x1821e4b97d6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -34985,14 +28359,9 @@ "0x1bd7", "0x24", "0x4", - "0x1821e4b97d6", + "0x18282cc9317", "0x1951", - "0x1821e4b97d6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -35012,15 +28381,10 @@ "0x1bd7", "0x24", "0x4", - "0x1821e4b97d6", + "0x18282cc9317", "0x1951", - "0x1821e4b97d6", + "0x18282cc9317", "0x2743" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -35040,16 +28404,11 @@ "0x1bd7", "0x24", "0x4", - "0x1821e4b97d6", + "0x18282cc9317", "0x1951", - "0x1821e4b97d6", + "0x18282cc9317", "0x2743", - "0x1821e4b97d6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -35069,17 +28428,12 @@ "0x1bd7", "0x24", "0x4", - "0x1821e4b97d6", + "0x18282cc9317", "0x1951", - "0x1821e4b97d6", + "0x18282cc9317", "0x2743", - "0x1821e4b97d6", + "0x18282cc9317", "0x2232" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -35099,16 +28453,11 @@ "0x1bd7", "0x24", "0x4", - "0x1821e4b97d6", + "0x18282cc9317", "0x1951", - "0x1821e4b97d6", + "0x18282cc9317", "0x2743", - "0x1821e4b97d6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -35128,16 +28477,11 @@ "0x1bd7", "0x24", "0x4", - "0x1821e4b97d6", + "0x18282cc9317", "0x1951", - "0x1821e4b97d6", + "0x18282cc9317", "0x2743", - "0x1821e4b97d6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -35157,17 +28501,12 @@ "0x1bd7", "0x24", "0x4", - "0x1821e4b97d6", + "0x18282cc9317", "0x1951", - "0x1821e4b97d6", + "0x18282cc9317", "0x2743", - "0x1821e4b97d6", + "0x18282cc9317", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -35187,18 +28526,13 @@ "0x1bd7", "0x24", "0x4", - "0x1821e4b97d6", + "0x18282cc9317", "0x1951", - "0x1821e4b97d6", + "0x18282cc9317", "0x2743", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", - "0x1821e4b97d6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -35218,18 +28552,13 @@ "0x1bd7", "0x24", "0x4", - "0x1821e4b97d6", + "0x18282cc9317", "0x1951", - "0x1821e4b97d6", + "0x18282cc9317", "0x2743", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -35249,17 +28578,12 @@ "0x1bd7", "0x24", "0x4", - "0x1821e4b97d6", + "0x18282cc9317", "0x1951", - "0x1821e4b97d6", + "0x18282cc9317", "0x2743", - "0x1821e4b97d6", - "0x1821e4b97d6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317", + "0x18282cc9317" ] }, { @@ -35279,17 +28603,12 @@ "0x1bd7", "0x24", "0x4", - "0x1821e4b97d6", + "0x18282cc9317", "0x1951", - "0x1821e4b97d6", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", + "0x18282cc9317", "0x2743" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -35309,17 +28628,12 @@ "0x1bd7", "0x24", "0x4", - "0x1821e4b97d6", + "0x18282cc9317", "0x1951", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x2743", - "0x1821e4b97d6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -35339,16 +28653,11 @@ "0x1bd7", "0x24", "0x4", - "0x1821e4b97d6", + "0x18282cc9317", "0x1951", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x2743" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -35368,15 +28677,10 @@ "0x1bd7", "0x24", "0x4", - "0x1821e4b97d6", + "0x18282cc9317", "0x1951", - "0x1821e4b97d6", - "0x1821e4b97d6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317", + "0x18282cc9317" ] }, { @@ -35396,15 +28700,10 @@ "0x1bd7", "0x24", "0x4", - "0x1821e4b97d6", + "0x18282cc9317", "0x1951", - "0x1821e4b97d6", - "0x1821e4b97d6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317", + "0x18282cc9317" ] }, { @@ -35424,16 +28723,11 @@ "0x1bd7", "0x24", "0x4", - "0x1821e4b97d6", + "0x18282cc9317", "0x1951", - "0x1821e4b97d6", - "0x1821e4b97d6", - "0x1821e4b97d6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317", + "0x18282cc9317", + "0x18282cc9317" ] }, { @@ -35453,15 +28747,10 @@ "0x1bd7", "0x24", "0x4", - "0x1821e4b97d6", + "0x18282cc9317", "0x1951", - "0x1821e4b97d6", + "0x18282cc9317", "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -35481,16 +28770,11 @@ "0x1bd7", "0x24", "0x4", - "0x1821e4b97d6", + "0x18282cc9317", "0x1951", - "0x1821e4b97d6", + "0x18282cc9317", "0x1", "0x274e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -35510,14 +28794,9 @@ "0x1bd7", "0x24", "0x4", - "0x1821e4b97d6", + "0x18282cc9317", "0x1951", - "0x1821e4b97d6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -35537,14 +28816,9 @@ "0x1bd7", "0x24", "0x4", - "0x1821e4b97d6", + "0x18282cc9317", "0x1951", - "0x1821e4b97d6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -35564,13 +28838,8 @@ "0x1bd7", "0x24", "0x4", - "0x1821e4b97d6", + "0x18282cc9317", "0x1951" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -35590,12 +28859,7 @@ "0x1bd7", "0x24", "0x4", - "0x1821e4b97d6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -35615,12 +28879,7 @@ "0x1bd7", "0x24", "0x4", - "0x1821e4b97d6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -35637,15 +28896,10 @@ "0x4", "0x0", "0x0", - "0x1821e4b97d6", + "0x18282cc9317", "0x24", "0x4", "0x1bd7" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -35662,15 +28916,10 @@ "0x4", "0x0", "0x0", - "0x1821e4b97d6", + "0x18282cc9317", "0x1bd7", "0x4", "0x24" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -35687,14 +28936,9 @@ "0x4", "0x0", "0x0", - "0x1821e4b97d6", + "0x18282cc9317", "0x1bd7", "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -35711,13 +28955,8 @@ "0x4", "0x0", "0x0", - "0x1821e4b97d6", + "0x18282cc9317", "0x1bd7" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -35734,12 +28973,7 @@ "0x4", "0x0", "0x0", - "0x1821e4b97d6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -35756,12 +28990,7 @@ "0x4", "0x0", "0x0", - "0x1821e4b97d6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -35776,14 +29005,9 @@ "0x229", "0x24", "0x4", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -35798,13 +29022,8 @@ "0x229", "0x24", "0x4", - "0x1821e4b97d6", + "0x18282cc9317", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -35819,12 +29038,7 @@ "0x229", "0x24", "0x4", - "0x1821e4b97d6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -35836,15 +29050,10 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x24", "0x4", "0x229" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -35856,15 +29065,10 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x229", "0x4", "0x24" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -35876,14 +29080,9 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x229", "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -35895,13 +29094,8 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x229" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -35913,12 +29107,7 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -35930,12 +29119,7 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -35947,13 +29131,8 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x72c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -35965,12 +29144,7 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -35982,12 +29156,7 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -35999,13 +29168,8 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -36017,14 +29181,9 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -36036,15 +29195,10 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0x1133" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -36056,14 +29210,9 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -36075,14 +29224,9 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -36094,15 +29238,10 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -36114,16 +29253,11 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x113e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -36135,17 +29269,12 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x113e", - "0x1821e4b97d6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -36157,18 +29286,13 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x113e", - "0x1821e4b97d6", + "0x18282cc9317", "0x74a" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -36180,17 +29304,12 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x113e", - "0x1821e4b97d6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -36202,17 +29321,12 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x113e", - "0x1821e4b97d6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -36224,18 +29338,13 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x113e", - "0x1821e4b97d6", + "0x18282cc9317", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -36247,19 +29356,14 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x113e", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -36271,20 +29375,15 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x113e", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0x2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -36296,21 +29395,16 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x113e", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0x2", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -36322,22 +29416,17 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x113e", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0x2", "0x0", - "0x1821e4b97d6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -36349,23 +29438,18 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x113e", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0x2", "0x0", - "0x1821e4b97d6", + "0x18282cc9317", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -36377,21 +29461,16 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x113e", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0x2", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -36403,22 +29482,17 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x113e", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0x2", "0x0", "0x20" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -36430,21 +29504,16 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x113e", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0x2", "0x20" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -36456,21 +29525,16 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x113e", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0x20", "0x2" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -36482,22 +29546,17 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x113e", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0x20", "0x2", "0x20" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -36509,20 +29568,15 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x113e", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0x20" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -36534,21 +29588,16 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x113e", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0x20", "0x20" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -36560,20 +29609,15 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x113e", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0x40" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -36585,21 +29629,16 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x113e", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0x40", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -36611,20 +29650,15 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x113e", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", - "0x94e54a518d3c6f57d74f2c55b0483a8949b24c8947e1167ff82edf88b68212e6" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x2b81c5ca775b32a00e4d070917698ec780b1570a5f3e34d5788e2f5b776d4b81" ] }, { @@ -36636,21 +29670,16 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x113e", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", - "0x94e54a518d3c6f57d74f2c55b0483a8949b24c8947e1167ff82edf88b68212e6", + "0x2b81c5ca775b32a00e4d070917698ec780b1570a5f3e34d5788e2f5b776d4b81", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -36662,34 +29691,29 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x113e", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0x0", - "0x94e54a518d3c6f57d74f2c55b0483a8949b24c8947e1167ff82edf88b68212e6" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x2b81c5ca775b32a00e4d070917698ec780b1570a5f3e34d5788e2f5b776d4b81" ], "storage": { - "0x94e54a518d3c6f57d74f2c55b0483a8949b24c8947e1167ff82edf88b68212e6": "0x000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5" + "0x2b81c5ca775b32a00e4d070917698ec780b1570a5f3e34d5788e2f5b776d4b81": "0x000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5" }, "extraData": { "proofList": [ { - "address": "0x5847653f3c2e05aef6838550513fda1a8528dcb3", + "address": "0xd9a6bd6326a696711a4bc9a6500b5df879c4aa24", "nonce": 1, "balance": "0x0", "codeHash": "0x9772386adf211243e408babcc6954a63410e2d2b7eb665442221c5d5fcc7ccf0", "storage": { - "key": "0x94e54a518d3c6f57d74f2c55b0483a8949b24c8947e1167ff82edf88b68212e6", + "key": "0x2b81c5ca775b32a00e4d070917698ec780b1570a5f3e34d5788e2f5b776d4b81", "value": "0x000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5" } } @@ -36705,21 +29729,16 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x113e", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0x0", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -36731,21 +29750,16 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x113e", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -36757,22 +29771,17 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x113e", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x0", "0x100" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -36784,21 +29793,16 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x113e", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -36810,21 +29814,16 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x113e", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0x1", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -36836,20 +29835,15 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x113e", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -36861,21 +29855,16 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x113e", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0xffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -36887,20 +29876,15 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x113e", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -36912,20 +29896,15 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x113e", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -36937,19 +29916,14 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x113e", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -36961,20 +29935,15 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x113e", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -36986,21 +29955,16 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x113e", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x0", "0xffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -37012,20 +29976,15 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x113e", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -37037,21 +29996,16 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x113e", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x0", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -37063,22 +30017,17 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x113e", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x0", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0xffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -37090,21 +30039,16 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x113e", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x0", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -37116,20 +30060,15 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x113e", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -37141,20 +30080,15 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x113e", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -37166,21 +30100,16 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x113e", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1", "0x7f3" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -37192,19 +30121,14 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x113e", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -37216,19 +30140,14 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x113e", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -37240,20 +30159,15 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x113e", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -37265,20 +30179,15 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x113e", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -37290,19 +30199,14 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x113e", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -37314,18 +30218,13 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x113e", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -37337,18 +30236,13 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x113e" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -37360,18 +30254,13 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x113e", - "0x1821e4b97d6" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -37383,17 +30272,12 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x113e" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -37405,16 +30289,11 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -37426,16 +30305,11 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -37447,16 +30321,11 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -37468,15 +30337,10 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -37488,16 +30352,11 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x114c" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -37509,17 +30368,12 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x114c", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -37531,18 +30385,13 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x114c", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -37554,19 +30403,14 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x114c", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x0", - "0x1821e4b97d6" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -37578,20 +30422,15 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x114c", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x0", - "0x1821e4b97d6", + "0x18282cc9317", "0x16c2" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -37603,19 +30442,14 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x114c", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x0", - "0x1821e4b97d6" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -37627,19 +30461,14 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x114c", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x0", - "0x1821e4b97d6" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -37651,18 +30480,13 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x114c", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -37674,17 +30498,12 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x114c", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -37696,16 +30515,11 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x114c" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -37717,15 +30531,10 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -37737,15 +30546,10 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -37757,16 +30561,11 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1157" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -37778,17 +30577,12 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1157", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -37800,18 +30594,13 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1157", "0x0", - "0x1821e4b97d6" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -37823,19 +30612,14 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1157", "0x0", - "0x1821e4b97d6", + "0x18282cc9317", "0xba4" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -37847,18 +30631,13 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1157", "0x0", - "0x1821e4b97d6" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -37870,18 +30649,13 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1157", "0x0", - "0x1821e4b97d6" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -37893,19 +30667,14 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1157", "0x0", - "0x1821e4b97d6", + "0x18282cc9317", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -37917,20 +30686,15 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1157", "0x0", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x4" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -37942,21 +30706,16 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1157", "0x0", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x4", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -37968,22 +30727,17 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1157", "0x0", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x4", "0x0", - "0x1821e4b97d6" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -37995,23 +30749,18 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1157", "0x0", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x4", "0x0", - "0x1821e4b97d6", + "0x18282cc9317", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -38023,21 +30772,16 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1157", "0x0", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x4", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -38049,22 +30793,17 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1157", "0x0", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x4", "0x0", "0x20" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -38076,21 +30815,16 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1157", "0x0", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x4", "0x20" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -38102,21 +30836,16 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1157", "0x0", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x20", "0x4" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -38128,22 +30857,17 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1157", "0x0", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x20", "0x4", "0x20" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -38155,20 +30879,15 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1157", "0x0", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x20" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -38180,21 +30899,16 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1157", "0x0", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x20", "0x20" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -38206,20 +30920,15 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1157", "0x0", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x40" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -38231,21 +30940,16 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1157", "0x0", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x40", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -38257,20 +30961,15 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1157", "0x0", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", - "0xa5fe1795ba21fb40f3bbfeafa51fa5cdc4a157f3ff388bbab3251269b2084c6d" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000080" + "0xba42f16ce9ab53f08b2613fa17b1a7bf7ae8df7c12ce4c0a71e9af736ce25154" ] }, { @@ -38282,21 +30981,16 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1157", "0x0", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", - "0xa5fe1795ba21fb40f3bbfeafa51fa5cdc4a157f3ff388bbab3251269b2084c6d", + "0xba42f16ce9ab53f08b2613fa17b1a7bf7ae8df7c12ce4c0a71e9af736ce25154", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -38308,22 +31002,17 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1157", "0x0", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", - "0xa5fe1795ba21fb40f3bbfeafa51fa5cdc4a157f3ff388bbab3251269b2084c6d", + "0xba42f16ce9ab53f08b2613fa17b1a7bf7ae8df7c12ce4c0a71e9af736ce25154", "0x0", "0x100" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -38335,21 +31024,16 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1157", "0x0", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", - "0xa5fe1795ba21fb40f3bbfeafa51fa5cdc4a157f3ff388bbab3251269b2084c6d", + "0xba42f16ce9ab53f08b2613fa17b1a7bf7ae8df7c12ce4c0a71e9af736ce25154", "0x1" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -38361,36 +31045,31 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1157", "0x0", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", - "0xa5fe1795ba21fb40f3bbfeafa51fa5cdc4a157f3ff388bbab3251269b2084c6d", + "0xba42f16ce9ab53f08b2613fa17b1a7bf7ae8df7c12ce4c0a71e9af736ce25154", "0x1", - "0xa5fe1795ba21fb40f3bbfeafa51fa5cdc4a157f3ff388bbab3251269b2084c6d" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000080" + "0xba42f16ce9ab53f08b2613fa17b1a7bf7ae8df7c12ce4c0a71e9af736ce25154" ], "storage": { - "0x94e54a518d3c6f57d74f2c55b0483a8949b24c8947e1167ff82edf88b68212e6": "0x000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0xa5fe1795ba21fb40f3bbfeafa51fa5cdc4a157f3ff388bbab3251269b2084c6d": "0x0000000000000000000000000000000000000000000000000000000000000000" + "0x2b81c5ca775b32a00e4d070917698ec780b1570a5f3e34d5788e2f5b776d4b81": "0x000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", + "0xba42f16ce9ab53f08b2613fa17b1a7bf7ae8df7c12ce4c0a71e9af736ce25154": "0x0000000000000000000000000000000000000000000000000000000000000000" }, "extraData": { "proofList": [ { - "address": "0x5847653f3c2e05aef6838550513fda1a8528dcb3", + "address": "0xd9a6bd6326a696711a4bc9a6500b5df879c4aa24", "nonce": 1, "balance": "0x0", "codeHash": "0x9772386adf211243e408babcc6954a63410e2d2b7eb665442221c5d5fcc7ccf0", "storage": { - "key": "0xa5fe1795ba21fb40f3bbfeafa51fa5cdc4a157f3ff388bbab3251269b2084c6d", + "key": "0xba42f16ce9ab53f08b2613fa17b1a7bf7ae8df7c12ce4c0a71e9af736ce25154", "value": "0x0000000000000000000000000000000000000000000000000000000000000000" } } @@ -38406,22 +31085,17 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1157", "0x0", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", - "0xa5fe1795ba21fb40f3bbfeafa51fa5cdc4a157f3ff388bbab3251269b2084c6d", + "0xba42f16ce9ab53f08b2613fa17b1a7bf7ae8df7c12ce4c0a71e9af736ce25154", "0x1", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -38433,23 +31107,18 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1157", "0x0", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", - "0xa5fe1795ba21fb40f3bbfeafa51fa5cdc4a157f3ff388bbab3251269b2084c6d", + "0xba42f16ce9ab53f08b2613fa17b1a7bf7ae8df7c12ce4c0a71e9af736ce25154", "0x1", "0x0", "0x1" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -38461,24 +31130,19 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1157", "0x0", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", - "0xa5fe1795ba21fb40f3bbfeafa51fa5cdc4a157f3ff388bbab3251269b2084c6d", + "0xba42f16ce9ab53f08b2613fa17b1a7bf7ae8df7c12ce4c0a71e9af736ce25154", "0x1", "0x0", "0x1", "0xffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -38490,23 +31154,18 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1157", "0x0", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", - "0xa5fe1795ba21fb40f3bbfeafa51fa5cdc4a157f3ff388bbab3251269b2084c6d", + "0xba42f16ce9ab53f08b2613fa17b1a7bf7ae8df7c12ce4c0a71e9af736ce25154", "0x1", "0x0", "0xffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -38518,23 +31177,18 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1157", "0x0", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", - "0xa5fe1795ba21fb40f3bbfeafa51fa5cdc4a157f3ff388bbab3251269b2084c6d", + "0xba42f16ce9ab53f08b2613fa17b1a7bf7ae8df7c12ce4c0a71e9af736ce25154", "0x1", "0x0", "0xffffffffffffffffffffffff0000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -38546,22 +31200,17 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1157", "0x0", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", - "0xa5fe1795ba21fb40f3bbfeafa51fa5cdc4a157f3ff388bbab3251269b2084c6d", + "0xba42f16ce9ab53f08b2613fa17b1a7bf7ae8df7c12ce4c0a71e9af736ce25154", "0x1", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -38573,22 +31222,17 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1157", "0x0", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", - "0xa5fe1795ba21fb40f3bbfeafa51fa5cdc4a157f3ff388bbab3251269b2084c6d", + "0xba42f16ce9ab53f08b2613fa17b1a7bf7ae8df7c12ce4c0a71e9af736ce25154", "0x0", "0x1" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -38600,23 +31244,18 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1157", "0x0", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", - "0xa5fe1795ba21fb40f3bbfeafa51fa5cdc4a157f3ff388bbab3251269b2084c6d", + "0xba42f16ce9ab53f08b2613fa17b1a7bf7ae8df7c12ce4c0a71e9af736ce25154", "0x0", "0x1", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -38628,24 +31267,19 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1157", "0x0", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", - "0xa5fe1795ba21fb40f3bbfeafa51fa5cdc4a157f3ff388bbab3251269b2084c6d", + "0xba42f16ce9ab53f08b2613fa17b1a7bf7ae8df7c12ce4c0a71e9af736ce25154", "0x0", "0x1", "0x0", "0xffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -38657,23 +31291,18 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1157", "0x0", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", - "0xa5fe1795ba21fb40f3bbfeafa51fa5cdc4a157f3ff388bbab3251269b2084c6d", + "0xba42f16ce9ab53f08b2613fa17b1a7bf7ae8df7c12ce4c0a71e9af736ce25154", "0x0", "0x1", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -38685,22 +31314,17 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1157", "0x0", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", - "0xa5fe1795ba21fb40f3bbfeafa51fa5cdc4a157f3ff388bbab3251269b2084c6d", + "0xba42f16ce9ab53f08b2613fa17b1a7bf7ae8df7c12ce4c0a71e9af736ce25154", "0x0", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -38712,21 +31336,16 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1157", "0x0", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", - "0xa5fe1795ba21fb40f3bbfeafa51fa5cdc4a157f3ff388bbab3251269b2084c6d", + "0xba42f16ce9ab53f08b2613fa17b1a7bf7ae8df7c12ce4c0a71e9af736ce25154", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -38738,35 +31357,30 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1157", "0x0", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", - "0xa5fe1795ba21fb40f3bbfeafa51fa5cdc4a157f3ff388bbab3251269b2084c6d" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000080" + "0xba42f16ce9ab53f08b2613fa17b1a7bf7ae8df7c12ce4c0a71e9af736ce25154" ], "storage": { - "0x94e54a518d3c6f57d74f2c55b0483a8949b24c8947e1167ff82edf88b68212e6": "0x000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0xa5fe1795ba21fb40f3bbfeafa51fa5cdc4a157f3ff388bbab3251269b2084c6d": "0x0000000000000000000000000000000000000000000000000000000000000000" + "0x2b81c5ca775b32a00e4d070917698ec780b1570a5f3e34d5788e2f5b776d4b81": "0x000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", + "0xba42f16ce9ab53f08b2613fa17b1a7bf7ae8df7c12ce4c0a71e9af736ce25154": "0x0000000000000000000000000000000000000000000000000000000000000000" }, "extraData": { "proofList": [ { - "address": "0x5847653f3c2e05aef6838550513fda1a8528dcb3", + "address": "0xd9a6bd6326a696711a4bc9a6500b5df879c4aa24", "nonce": 1, "balance": "0x0", "codeHash": "0x9772386adf211243e408babcc6954a63410e2d2b7eb665442221c5d5fcc7ccf0", "storage": { - "key": "0xa5fe1795ba21fb40f3bbfeafa51fa5cdc4a157f3ff388bbab3251269b2084c6d", + "key": "0xba42f16ce9ab53f08b2613fa17b1a7bf7ae8df7c12ce4c0a71e9af736ce25154", "value": "0x0000000000000000000000000000000000000000000000000000000000000000" } } @@ -38782,19 +31396,14 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1157", "0x0", - "0x1821e4b97d6", + "0x18282cc9317", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -38806,18 +31415,13 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1157", "0x0", - "0x1821e4b97d6" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -38829,19 +31433,14 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1157", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317", + "0x18282cc9317" ] }, { @@ -38853,20 +31452,15 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1157", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -38878,21 +31472,16 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1157", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0", "0xffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -38904,20 +31493,15 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1157", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -38929,21 +31513,16 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1157", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0", "0xc17" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -38955,22 +31534,17 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1157", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0", "0xc17", - "0x1821e4b97d6" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -38982,23 +31556,18 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1157", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0", "0xc17", - "0x1821e4b97d6", + "0x18282cc9317", "0x74a" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -39010,22 +31579,17 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1157", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0", "0xc17", - "0x1821e4b97d6" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -39037,22 +31601,17 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1157", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0", "0xc17", - "0x1821e4b97d6" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -39064,23 +31623,18 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1157", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0", "0xc17", - "0x1821e4b97d6", + "0x18282cc9317", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -39092,24 +31646,19 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1157", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0", "0xc17", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -39121,25 +31670,20 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1157", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0", "0xc17", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0x2" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -39151,26 +31695,21 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1157", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0", "0xc17", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0x2", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -39182,27 +31721,22 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1157", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0", "0xc17", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0x2", "0x0", - "0x1821e4b97d6" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -39214,28 +31748,23 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1157", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0", "0xc17", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0x2", "0x0", - "0x1821e4b97d6", + "0x18282cc9317", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -39247,26 +31776,21 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1157", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0", "0xc17", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0x2", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -39278,27 +31802,22 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1157", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0", "0xc17", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0x2", "0x0", "0x20" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -39310,26 +31829,21 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1157", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0", "0xc17", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0x2", "0x20" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -39341,26 +31855,21 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1157", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0", "0xc17", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0x20", "0x2" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -39372,27 +31881,22 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1157", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0", "0xc17", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0x20", "0x2", "0x20" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -39404,25 +31908,20 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1157", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0", "0xc17", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0x20" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -39434,26 +31933,21 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1157", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0", "0xc17", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0x20", "0x20" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -39465,25 +31959,20 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1157", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0", "0xc17", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0x40" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -39495,26 +31984,21 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1157", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0", "0xc17", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0x40", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -39526,25 +32010,20 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1157", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0", "0xc17", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", - "0x94e54a518d3c6f57d74f2c55b0483a8949b24c8947e1167ff82edf88b68212e6" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x2b81c5ca775b32a00e4d070917698ec780b1570a5f3e34d5788e2f5b776d4b81" ] }, { @@ -39556,26 +32035,21 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1157", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0", "0xc17", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", - "0x94e54a518d3c6f57d74f2c55b0483a8949b24c8947e1167ff82edf88b68212e6", + "0x2b81c5ca775b32a00e4d070917698ec780b1570a5f3e34d5788e2f5b776d4b81", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -39587,40 +32061,35 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1157", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0", "0xc17", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0x0", - "0x94e54a518d3c6f57d74f2c55b0483a8949b24c8947e1167ff82edf88b68212e6" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x2b81c5ca775b32a00e4d070917698ec780b1570a5f3e34d5788e2f5b776d4b81" ], "storage": { - "0x94e54a518d3c6f57d74f2c55b0483a8949b24c8947e1167ff82edf88b68212e6": "0x000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0xa5fe1795ba21fb40f3bbfeafa51fa5cdc4a157f3ff388bbab3251269b2084c6d": "0x0000000000000000000000000000000000000000000000000000000000000000" + "0x2b81c5ca775b32a00e4d070917698ec780b1570a5f3e34d5788e2f5b776d4b81": "0x000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", + "0xba42f16ce9ab53f08b2613fa17b1a7bf7ae8df7c12ce4c0a71e9af736ce25154": "0x0000000000000000000000000000000000000000000000000000000000000000" }, "extraData": { "proofList": [ { - "address": "0x5847653f3c2e05aef6838550513fda1a8528dcb3", + "address": "0xd9a6bd6326a696711a4bc9a6500b5df879c4aa24", "nonce": 1, "balance": "0x0", "codeHash": "0x9772386adf211243e408babcc6954a63410e2d2b7eb665442221c5d5fcc7ccf0", "storage": { - "key": "0x94e54a518d3c6f57d74f2c55b0483a8949b24c8947e1167ff82edf88b68212e6", + "key": "0x2b81c5ca775b32a00e4d070917698ec780b1570a5f3e34d5788e2f5b776d4b81", "value": "0x000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5" } } @@ -39636,26 +32105,21 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1157", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0", "0xc17", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0x0", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -39667,26 +32131,21 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1157", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0", "0xc17", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -39698,27 +32157,22 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1157", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0", "0xc17", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x0", "0x100" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -39730,26 +32184,21 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1157", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0", "0xc17", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -39761,26 +32210,21 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1157", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0", "0xc17", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0x1", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -39792,25 +32236,20 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1157", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0", "0xc17", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -39822,26 +32261,21 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1157", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0", "0xc17", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0xffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -39853,25 +32287,20 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1157", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0", "0xc17", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0x0", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -39883,25 +32312,20 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1157", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0", "0xc17", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -39913,24 +32337,19 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1157", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0", "0xc17", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -39942,25 +32361,20 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1157", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0", "0xc17", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -39972,26 +32386,21 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1157", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0", "0xc17", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x0", "0xffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -40003,25 +32412,20 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1157", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0", "0xc17", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -40033,26 +32437,21 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1157", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0", "0xc17", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x0", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -40064,27 +32463,22 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1157", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0", "0xc17", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x0", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0xffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -40096,26 +32490,21 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1157", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0", "0xc17", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x0", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -40127,25 +32516,20 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1157", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0", "0xc17", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -40157,25 +32541,20 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1157", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0", "0xc17", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -40187,26 +32566,21 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1157", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0", "0xc17", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1", "0x7f3" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -40218,24 +32592,19 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1157", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0", "0xc17", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -40247,24 +32616,19 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1157", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0", "0xc17", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -40276,25 +32640,20 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1157", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0", "0xc17", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -40306,25 +32665,20 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1157", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0", "0xc17", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -40336,24 +32690,19 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1157", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0", "0xc17", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -40365,23 +32714,18 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1157", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0", "0xc17", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -40393,23 +32737,18 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1157", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0xc17" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -40421,23 +32760,18 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1157", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0xc17", - "0x1821e4b97d6" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -40449,22 +32783,17 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1157", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0xc17" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -40476,21 +32805,16 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1157", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -40502,21 +32826,16 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1157", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -40528,22 +32847,17 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1157", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0xffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -40555,21 +32869,16 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1157", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -40581,22 +32890,17 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1157", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -40608,23 +32912,18 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1157", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", "0x40" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -40636,23 +32935,18 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1157", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", "0x80" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -40664,24 +32958,19 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1157", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", "0x80", "0x40" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -40693,24 +32982,19 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1157", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", "0x80", "0x80" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -40722,25 +33006,20 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1157", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", "0x80", "0x80", "0x80" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -40752,25 +33031,20 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1157", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", "0x80", "0x80", "0x80" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -40782,24 +33056,19 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1157", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", "0x80", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -40811,24 +33080,19 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1157", "0x0", - "0x1821e4b97d6", - "0x1821e4b97d6", + "0x18282cc9317", + "0x18282cc9317", "0x0", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", "0x0", "0x80" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -40840,18 +33104,13 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1157", "0x0", - "0x1821e4b97d6" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -40863,17 +33122,12 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1157", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -40885,16 +33139,11 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1157" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -40906,15 +33155,10 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -40926,15 +33170,10 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -40946,16 +33185,11 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -40967,17 +33201,12 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1", "0x3" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -40989,18 +33218,13 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1", "0x3", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -41012,19 +33236,14 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1", "0x3", "0x0", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -41036,20 +33255,15 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1", "0x3", "0x0", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0xffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -41061,19 +33275,14 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1", "0x3", "0x0", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -41085,20 +33294,15 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1", "0x3", "0x0", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0xffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -41110,19 +33314,14 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1", "0x3", "0x0", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -41134,20 +33333,15 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1", "0x3", "0x0", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -41159,18 +33353,13 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1", "0x3", "0x0" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -41182,19 +33371,14 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1", "0x3", "0x0", "0x20" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -41206,18 +33390,13 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1", "0x3", "0x20" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -41229,18 +33408,13 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1", "0x20", "0x3" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -41252,19 +33426,14 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1", "0x20", "0x3", "0x20" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -41276,17 +33445,12 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1", "0x20" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -41298,18 +33462,13 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1", "0x20", "0x20" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -41321,17 +33480,12 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1", "0x40" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -41343,18 +33497,13 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1", "0x40", "0x0" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -41366,17 +33515,12 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -41388,18 +33532,13 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df", "0x0" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -41411,19 +33550,14 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df", "0x0", "0x1" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -41435,9 +33569,9 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df", @@ -41445,20 +33579,15 @@ "0x1", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df" ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" - ], "storage": { - "0x94e54a518d3c6f57d74f2c55b0483a8949b24c8947e1167ff82edf88b68212e6": "0x000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0xa5fe1795ba21fb40f3bbfeafa51fa5cdc4a157f3ff388bbab3251269b2084c6d": "0x0000000000000000000000000000000000000000000000000000000000000000", + "0x2b81c5ca775b32a00e4d070917698ec780b1570a5f3e34d5788e2f5b776d4b81": "0x000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", + "0xba42f16ce9ab53f08b2613fa17b1a7bf7ae8df7c12ce4c0a71e9af736ce25154": "0x0000000000000000000000000000000000000000000000000000000000000000", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df": "0x0000000000000000000000000000000000000000000000000000000000000007" }, "extraData": { "proofList": [ { - "address": "0x5847653f3c2e05aef6838550513fda1a8528dcb3", + "address": "0xd9a6bd6326a696711a4bc9a6500b5df879c4aa24", "nonce": 1, "balance": "0x0", "codeHash": "0x9772386adf211243e408babcc6954a63410e2d2b7eb665442221c5d5fcc7ccf0", @@ -41479,20 +33608,15 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df", "0x0", "0x1", "0x7" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -41504,9 +33628,9 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df", @@ -41514,11 +33638,6 @@ "0x1", "0x7", "0x11a7" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -41530,9 +33649,9 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df", @@ -41540,11 +33659,6 @@ "0x11a7", "0x7", "0x1" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -41556,9 +33670,9 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df", @@ -41566,11 +33680,6 @@ "0x11a7", "0x1", "0x7" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -41582,9 +33691,9 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df", @@ -41593,11 +33702,6 @@ "0x1", "0x7", "0x2194" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -41609,9 +33713,9 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df", @@ -41619,11 +33723,6 @@ "0x11a7", "0x1", "0x7" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -41635,9 +33734,9 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df", @@ -41645,11 +33744,6 @@ "0x11a7", "0x1", "0x7" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -41661,9 +33755,9 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df", @@ -41672,11 +33766,6 @@ "0x1", "0x7", "0x0" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -41688,9 +33777,9 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df", @@ -41700,11 +33789,6 @@ "0x7", "0x0", "0x219f" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -41716,9 +33800,9 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df", @@ -41729,11 +33813,6 @@ "0x0", "0x219f", "0x7" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -41745,9 +33824,9 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df", @@ -41759,11 +33838,6 @@ "0x219f", "0x7", "0x2232" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -41775,9 +33849,9 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df", @@ -41788,11 +33862,6 @@ "0x0", "0x219f", "0x7" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -41804,9 +33873,9 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df", @@ -41817,11 +33886,6 @@ "0x0", "0x219f", "0x7" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -41833,9 +33897,9 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df", @@ -41847,11 +33911,6 @@ "0x219f", "0x7", "0x0" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -41863,9 +33922,9 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df", @@ -41878,11 +33937,6 @@ "0x7", "0x0", "0x7" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -41894,9 +33948,9 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df", @@ -41909,11 +33963,6 @@ "0x7", "0x7", "0x0" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -41925,9 +33974,9 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df", @@ -41939,11 +33988,6 @@ "0x219f", "0x7", "0x7" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -41955,9 +33999,9 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df", @@ -41969,11 +34013,6 @@ "0x7", "0x7", "0x219f" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -41985,9 +34024,9 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df", @@ -41999,11 +34038,6 @@ "0x7", "0x219f", "0x7" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -42015,9 +34049,9 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df", @@ -42028,11 +34062,6 @@ "0x0", "0x7", "0x219f" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -42044,9 +34073,9 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df", @@ -42056,11 +34085,6 @@ "0x7", "0x0", "0x7" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -42072,9 +34096,9 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df", @@ -42084,11 +34108,6 @@ "0x7", "0x0", "0x7" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -42100,9 +34119,9 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df", @@ -42112,11 +34131,6 @@ "0x7", "0x0", "0x7" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -42128,9 +34142,9 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df", @@ -42139,11 +34153,6 @@ "0x1", "0x7", "0x0" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -42155,9 +34164,9 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df", @@ -42167,11 +34176,6 @@ "0x7", "0x0", "0x21aa" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -42183,9 +34187,9 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df", @@ -42196,11 +34200,6 @@ "0x0", "0x21aa", "0x1" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -42212,9 +34211,9 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df", @@ -42226,11 +34225,6 @@ "0x21aa", "0x1", "0x2232" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -42242,9 +34236,9 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df", @@ -42255,11 +34249,6 @@ "0x0", "0x21aa", "0x1" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -42271,9 +34260,9 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df", @@ -42284,11 +34273,6 @@ "0x0", "0x21aa", "0x1" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -42300,9 +34284,9 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df", @@ -42314,11 +34298,6 @@ "0x21aa", "0x1", "0x0" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -42330,9 +34309,9 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df", @@ -42345,11 +34324,6 @@ "0x1", "0x0", "0x1" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -42361,9 +34335,9 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df", @@ -42376,11 +34350,6 @@ "0x1", "0x1", "0x0" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -42392,9 +34361,9 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df", @@ -42406,11 +34375,6 @@ "0x21aa", "0x1", "0x1" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -42422,9 +34386,9 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df", @@ -42436,11 +34400,6 @@ "0x1", "0x1", "0x21aa" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -42452,9 +34411,9 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df", @@ -42466,11 +34425,6 @@ "0x1", "0x21aa", "0x1" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -42482,9 +34436,9 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df", @@ -42495,11 +34449,6 @@ "0x0", "0x1", "0x21aa" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -42511,9 +34460,9 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df", @@ -42523,11 +34472,6 @@ "0x7", "0x0", "0x1" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -42539,9 +34483,9 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df", @@ -42551,11 +34495,6 @@ "0x7", "0x0", "0x1" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -42567,9 +34506,9 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df", @@ -42579,11 +34518,6 @@ "0x7", "0x0", "0x1" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -42595,9 +34529,9 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df", @@ -42606,11 +34540,6 @@ "0x1", "0x7", "0x0" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -42622,9 +34551,9 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df", @@ -42634,11 +34563,6 @@ "0x7", "0x0", "0x1" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -42650,9 +34574,9 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df", @@ -42663,11 +34587,6 @@ "0x0", "0x1", "0x7" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -42679,9 +34598,9 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df", @@ -42691,11 +34610,6 @@ "0x7", "0x0", "0x0" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -42707,9 +34621,9 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df", @@ -42719,11 +34633,6 @@ "0x7", "0x0", "0x1" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -42735,9 +34644,9 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df", @@ -42748,11 +34657,6 @@ "0x0", "0x1", "0x21bd" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -42764,9 +34668,9 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df", @@ -42775,11 +34679,6 @@ "0x1", "0x7", "0x0" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -42791,9 +34690,9 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df", @@ -42802,11 +34701,6 @@ "0x1", "0x7", "0x0" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -42818,9 +34712,9 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df", @@ -42830,11 +34724,6 @@ "0x7", "0x0", "0x1" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -42846,9 +34735,9 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df", @@ -42859,11 +34748,6 @@ "0x0", "0x1", "0x7" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -42875,9 +34759,9 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df", @@ -42887,11 +34771,6 @@ "0x7", "0x0", "0x6" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -42903,9 +34782,9 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df", @@ -42915,11 +34794,6 @@ "0x7", "0x6", "0x0" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -42931,9 +34805,9 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df", @@ -42942,11 +34816,6 @@ "0x1", "0x7", "0x6" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -42958,9 +34827,9 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df", @@ -42969,11 +34838,6 @@ "0x1", "0x7", "0x11a7" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -42985,9 +34849,9 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df", @@ -42996,11 +34860,6 @@ "0x11a7", "0x7", "0x1" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -43012,9 +34871,9 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df", @@ -43022,11 +34881,6 @@ "0x6", "0x11a7", "0x7" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -43038,20 +34892,15 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df", "0x0", "0x6", "0x11a7" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -43063,19 +34912,14 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df", "0x0", "0x6" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -43087,19 +34931,14 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df", "0x0", "0x6" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -43111,19 +34950,14 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x6", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df", "0x0", "0x1" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -43135,18 +34969,13 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x6", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df", "0x0" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -43158,17 +34987,12 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x6", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -43180,18 +35004,13 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x6", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df", "0x6" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -43203,28 +35022,23 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x6", "0x6", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df" ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" - ], "storage": { - "0x94e54a518d3c6f57d74f2c55b0483a8949b24c8947e1167ff82edf88b68212e6": "0x000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0xa5fe1795ba21fb40f3bbfeafa51fa5cdc4a157f3ff388bbab3251269b2084c6d": "0x0000000000000000000000000000000000000000000000000000000000000000", + "0x2b81c5ca775b32a00e4d070917698ec780b1570a5f3e34d5788e2f5b776d4b81": "0x000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", + "0xba42f16ce9ab53f08b2613fa17b1a7bf7ae8df7c12ce4c0a71e9af736ce25154": "0x0000000000000000000000000000000000000000000000000000000000000000", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df": "0x0000000000000000000000000000000000000000000000000000000000000006" }, "extraData": { "proofList": [ { - "address": "0x5847653f3c2e05aef6838550513fda1a8528dcb3", + "address": "0xd9a6bd6326a696711a4bc9a6500b5df879c4aa24", "nonce": 1, "balance": "0x0", "codeHash": "0x9772386adf211243e408babcc6954a63410e2d2b7eb665442221c5d5fcc7ccf0", @@ -43245,16 +35059,11 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x6" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -43266,15 +35075,10 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -43286,16 +35090,11 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x2" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -43307,17 +35106,12 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x2", "0x0" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -43329,18 +35123,13 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x2", "0x0", - "0x1821e4b97d6" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ] }, { @@ -43352,19 +35141,14 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x2", "0x0", - "0x1821e4b97d6", + "0x18282cc9317", "0x0" - ], - "memory": [ - "000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -43376,17 +35160,12 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x2", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -43398,18 +35177,13 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x2", "0x0", "0x20" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -43421,17 +35195,12 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x2", "0x20" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -43443,17 +35212,12 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x20", "0x2" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -43465,18 +35229,13 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x20", "0x2", "0x20" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -43488,16 +35247,11 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x20" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -43509,17 +35263,12 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x20", "0x20" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -43531,16 +35280,11 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x40" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -43552,17 +35296,12 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x40", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -43574,16 +35313,11 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x94e54a518d3c6f57d74f2c55b0483a8949b24c8947e1167ff82edf88b68212e6" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x2b81c5ca775b32a00e4d070917698ec780b1570a5f3e34d5788e2f5b776d4b81" ] }, { @@ -43595,17 +35329,12 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x94e54a518d3c6f57d74f2c55b0483a8949b24c8947e1167ff82edf88b68212e6", + "0x2b81c5ca775b32a00e4d070917698ec780b1570a5f3e34d5788e2f5b776d4b81", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -43617,18 +35346,13 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x94e54a518d3c6f57d74f2c55b0483a8949b24c8947e1167ff82edf88b68212e6", + "0x2b81c5ca775b32a00e4d070917698ec780b1570a5f3e34d5788e2f5b776d4b81", "0x0", "0x100" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -43640,17 +35364,12 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x94e54a518d3c6f57d74f2c55b0483a8949b24c8947e1167ff82edf88b68212e6", + "0x2b81c5ca775b32a00e4d070917698ec780b1570a5f3e34d5788e2f5b776d4b81", "0x1" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -43662,33 +35381,28 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x94e54a518d3c6f57d74f2c55b0483a8949b24c8947e1167ff82edf88b68212e6", + "0x2b81c5ca775b32a00e4d070917698ec780b1570a5f3e34d5788e2f5b776d4b81", "0x1", - "0x94e54a518d3c6f57d74f2c55b0483a8949b24c8947e1167ff82edf88b68212e6" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x2b81c5ca775b32a00e4d070917698ec780b1570a5f3e34d5788e2f5b776d4b81" ], "storage": { - "0x94e54a518d3c6f57d74f2c55b0483a8949b24c8947e1167ff82edf88b68212e6": "0x000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0xa5fe1795ba21fb40f3bbfeafa51fa5cdc4a157f3ff388bbab3251269b2084c6d": "0x0000000000000000000000000000000000000000000000000000000000000000", + "0x2b81c5ca775b32a00e4d070917698ec780b1570a5f3e34d5788e2f5b776d4b81": "0x000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", + "0xba42f16ce9ab53f08b2613fa17b1a7bf7ae8df7c12ce4c0a71e9af736ce25154": "0x0000000000000000000000000000000000000000000000000000000000000000", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df": "0x0000000000000000000000000000000000000000000000000000000000000006" }, "extraData": { "proofList": [ { - "address": "0x5847653f3c2e05aef6838550513fda1a8528dcb3", + "address": "0xd9a6bd6326a696711a4bc9a6500b5df879c4aa24", "nonce": 1, "balance": "0x0", "codeHash": "0x9772386adf211243e408babcc6954a63410e2d2b7eb665442221c5d5fcc7ccf0", "storage": { - "key": "0x94e54a518d3c6f57d74f2c55b0483a8949b24c8947e1167ff82edf88b68212e6", + "key": "0x2b81c5ca775b32a00e4d070917698ec780b1570a5f3e34d5788e2f5b776d4b81", "value": "0x000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5" } } @@ -43704,18 +35418,13 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x94e54a518d3c6f57d74f2c55b0483a8949b24c8947e1167ff82edf88b68212e6", + "0x2b81c5ca775b32a00e4d070917698ec780b1570a5f3e34d5788e2f5b776d4b81", "0x1", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -43727,18 +35436,13 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x94e54a518d3c6f57d74f2c55b0483a8949b24c8947e1167ff82edf88b68212e6", + "0x2b81c5ca775b32a00e4d070917698ec780b1570a5f3e34d5788e2f5b776d4b81", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -43750,19 +35454,14 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x94e54a518d3c6f57d74f2c55b0483a8949b24c8947e1167ff82edf88b68212e6", + "0x2b81c5ca775b32a00e4d070917698ec780b1570a5f3e34d5788e2f5b776d4b81", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x1", "0xffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -43774,18 +35473,13 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x94e54a518d3c6f57d74f2c55b0483a8949b24c8947e1167ff82edf88b68212e6", + "0x2b81c5ca775b32a00e4d070917698ec780b1570a5f3e34d5788e2f5b776d4b81", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0xffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -43797,18 +35491,13 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x94e54a518d3c6f57d74f2c55b0483a8949b24c8947e1167ff82edf88b68212e6", + "0x2b81c5ca775b32a00e4d070917698ec780b1570a5f3e34d5788e2f5b776d4b81", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0xffffffffffffffffffffffff0000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -43820,17 +35509,12 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x94e54a518d3c6f57d74f2c55b0483a8949b24c8947e1167ff82edf88b68212e6", + "0x2b81c5ca775b32a00e4d070917698ec780b1570a5f3e34d5788e2f5b776d4b81", "0x0" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -43842,33 +35526,28 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x0", - "0x94e54a518d3c6f57d74f2c55b0483a8949b24c8947e1167ff82edf88b68212e6" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x2b81c5ca775b32a00e4d070917698ec780b1570a5f3e34d5788e2f5b776d4b81" ], "storage": { - "0x94e54a518d3c6f57d74f2c55b0483a8949b24c8947e1167ff82edf88b68212e6": "0x0000000000000000000000000000000000000000000000000000000000000000", - "0xa5fe1795ba21fb40f3bbfeafa51fa5cdc4a157f3ff388bbab3251269b2084c6d": "0x0000000000000000000000000000000000000000000000000000000000000000", + "0x2b81c5ca775b32a00e4d070917698ec780b1570a5f3e34d5788e2f5b776d4b81": "0x0000000000000000000000000000000000000000000000000000000000000000", + "0xba42f16ce9ab53f08b2613fa17b1a7bf7ae8df7c12ce4c0a71e9af736ce25154": "0x0000000000000000000000000000000000000000000000000000000000000000", "0xf51e4fa789f4e467dec421881a0c622e942721801dfa8b90a2dbf830a67f48df": "0x0000000000000000000000000000000000000000000000000000000000000006" }, "refund": 4800, "extraData": { "proofList": [ { - "address": "0x5847653f3c2e05aef6838550513fda1a8528dcb3", + "address": "0xd9a6bd6326a696711a4bc9a6500b5df879c4aa24", "nonce": 1, "balance": "0x0", "codeHash": "0x9772386adf211243e408babcc6954a63410e2d2b7eb665442221c5d5fcc7ccf0", "storage": { - "key": "0x94e54a518d3c6f57d74f2c55b0483a8949b24c8947e1167ff82edf88b68212e6", + "key": "0x2b81c5ca775b32a00e4d070917698ec780b1570a5f3e34d5788e2f5b776d4b81", "value": "0x000000000000000000000000ec9c8b21a9f8e5eb22373edf7d0860df0b98eba5" } } @@ -43884,16 +35563,11 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5" ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" - ], "refund": 4800 }, { @@ -43905,16 +35579,11 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ], "refund": 4800 }, @@ -43927,18 +35596,13 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x0" ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" - ], "refund": 4800 }, { @@ -43950,19 +35614,14 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0xffffffffffffffffffffffffffffffffffffffff" ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" - ], "refund": 4800 }, { @@ -43974,18 +35633,13 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x0" ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" - ], "refund": 4800 }, { @@ -43997,19 +35651,14 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5" ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" - ], "refund": 4800 }, { @@ -44021,20 +35670,15 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0xffffffffffffffffffffffffffffffffffffffff" ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" - ], "refund": 4800 }, { @@ -44046,19 +35690,14 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5" ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" - ], "refund": 4800 }, { @@ -44070,20 +35709,15 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef" ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" - ], "refund": 4800 }, { @@ -44095,21 +35729,16 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", "0x40" ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" - ], "refund": 4800 }, { @@ -44121,21 +35750,16 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", "0x80" ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" - ], "refund": 4800 }, { @@ -44147,22 +35771,17 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", "0x80", "0x40" ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" - ], "refund": 4800 }, { @@ -44174,22 +35793,17 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", "0x80", "0x80" ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" - ], "refund": 4800 }, { @@ -44201,11 +35815,11 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", @@ -44213,11 +35827,6 @@ "0x80", "0x80" ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" - ], "refund": 4800 }, { @@ -44229,11 +35838,11 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", @@ -44241,11 +35850,6 @@ "0x80", "0x80" ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" - ], "refund": 4800 }, { @@ -44257,22 +35861,17 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", "0x80", "0x0" ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" - ], "refund": 4800 }, { @@ -44284,22 +35883,17 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", - "0x1821e4b97d6", + "0x18282cc9317", "0x0", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", "0x0", "0x80" ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" - ], "refund": 4800 }, { @@ -44311,16 +35905,11 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5" ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" - ], "refund": 4800 }, { @@ -44332,17 +35921,12 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x124c" ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" - ], "refund": 4800 }, { @@ -44354,18 +35938,13 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x124c", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5" ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" - ], "refund": 4800 }, { @@ -44377,19 +35956,14 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x124c", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x0" ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" - ], "refund": 4800 }, { @@ -44401,19 +35975,14 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x124c", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x0", - "0x1821e4b97d6" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ], "refund": 4800 }, @@ -44426,21 +35995,16 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x124c", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x0", - "0x1821e4b97d6", + "0x18282cc9317", "0x16c7" ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" - ], "refund": 4800 }, { @@ -44452,19 +36016,14 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x124c", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x0", - "0x1821e4b97d6" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ], "refund": 4800 }, @@ -44477,19 +36036,14 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x124c", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x0", - "0x1821e4b97d6" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ], "refund": 4800 }, @@ -44502,19 +36056,14 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x124c", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x0" ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" - ], "refund": 4800 }, { @@ -44526,18 +36075,13 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x124c", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5" ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" - ], "refund": 4800 }, { @@ -44549,17 +36093,12 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5", "0x124c" ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" - ], "refund": 4800 }, { @@ -44571,16 +36110,11 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5" ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" - ], "refund": 4800 }, { @@ -44592,16 +36126,11 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6", + "0x18282cc9317", "0xec9c8b21a9f8e5eb22373edf7d0860df0b98eba5" ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" - ], "refund": 4800 }, { @@ -44613,14 +36142,9 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735", - "0x1821e4b97d6" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ], "refund": 4800 }, @@ -44633,14 +36157,9 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6", + "0x18282cc9317", "0x735" ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" - ], "refund": 4800 }, { @@ -44652,12 +36171,7 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ], "refund": 4800 }, @@ -44670,12 +36184,7 @@ "stack": [ "0x42966c68", "0x22e", - "0x1821e4b97d6" - ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x18282cc9317" ], "refund": 4800 }, @@ -44689,11 +36198,6 @@ "0x42966c68", "0x22e" ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" - ], "refund": 4800 }, { @@ -44705,11 +36209,6 @@ "stack": [ "0x42966c68" ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" - ], "refund": 4800 }, { @@ -44721,11 +36220,6 @@ "stack": [ "0x42966c68" ], - "memory": [ - "000000000000000000000000000000000000000000000000000001821e4b97d6", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000080" - ], "refund": 4800 } ] diff --git a/internal/utesting/blocktraces/deploy.json b/internal/utesting/blocktraces/deploy.json new file mode 100644 index 0000000000..b72e30f7c0 --- /dev/null +++ b/internal/utesting/blocktraces/deploy.json @@ -0,0 +1,30792 @@ +{ + "blockTrace": { + "number": "0x9d", + "hash": "0x93ab43cbc03cf5bdd108bbb79fa1e7ce36af99a61411e5d99ffcf1b3901c6203", + "gasLimit": 7834960, + "difficulty": "0x2", + "baseFee": "0xe7", + "coinbase": { + "address": "0x0000000000000000000000000000000000000000", + "nonce": 0, + "balance": "0x0", + "codeHash": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "time": 1661265374, + "transactions": [ + { + "type": 2, + "nonce": 238, + "txHash": "0xe1078fbec5b13a16e398adf5ff3a31c13d518ac89d9a585c6f2211ac363518d3", + "gas": 2045306, + "gasPrice": "0x124", + "from": "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "to": null, + "chainId": "0xcf55", + "value": "0x0", + "data": "0x60806040523480156200001157600080fd5b5060405162002755380380620027558339818101604052810190620000379190620002f1565b8282816003908051906020019062000051929190620001a1565b5080600490805190602001906200006a929190620001a1565b506012600560006101000a81548160ff021916908360ff16021790555050506000600560016101000a81548160ff02191690831515021790555084600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555083600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000137816200018360201b60201c565b33600560026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050505050506200058a565b80600560006101000a81548160ff021916908360ff16021790555050565b828054620001af906200047b565b90600052602060002090601f016020900481019282620001d357600085556200021f565b82601f10620001ee57805160ff19168380011785556200021f565b828001600101855582156200021f579182015b828111156200021e57825182559160200191906001019062000201565b5b5090506200022e919062000232565b5090565b5b808211156200024d57600081600090555060010162000233565b5090565b6000620002686200026284620003ce565b620003a5565b9050828152602081018484840111156200028157600080fd5b6200028e84828562000445565b509392505050565b600081519050620002a78162000556565b92915050565b600082601f830112620002bf57600080fd5b8151620002d184826020860162000251565b91505092915050565b600081519050620002eb8162000570565b92915050565b600080600080600060a086880312156200030a57600080fd5b60006200031a8882890162000296565b95505060206200032d8882890162000296565b945050604086015167ffffffffffffffff8111156200034b57600080fd5b6200035988828901620002ad565b935050606086015167ffffffffffffffff8111156200037757600080fd5b6200038588828901620002ad565b92505060806200039888828901620002da565b9150509295509295909350565b6000620003b1620003c4565b9050620003bf8282620004b1565b919050565b6000604051905090565b600067ffffffffffffffff821115620003ec57620003eb62000516565b5b620003f78262000545565b9050602081019050919050565b6000620004118262000418565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600060ff82169050919050565b60005b838110156200046557808201518184015260208101905062000448565b8381111562000475576000848401525b50505050565b600060028204905060018216806200049457607f821691505b60208210811415620004ab57620004aa620004e7565b5b50919050565b620004bc8262000545565b810181811067ffffffffffffffff82111715620004de57620004dd62000516565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b620005618162000404565b81146200056d57600080fd5b50565b6200057b8162000438565b81146200058757600080fd5b50565b6121bb806200059a6000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c80635c975abb116100a257806395d89b411161007157806395d89b41146102945780639dc29fac146102b2578063a457c2d7146102ce578063a9059cbb146102fe578063dd62ed3e1461032e5761010b565b80635c975abb1461022057806370a082311461023e5780638456cb591461026e5780638e50817a146102785761010b565b8063313ce567116100de578063313ce567146101ac57806339509351146101ca5780633f4ba83a146101fa57806340c10f19146102045761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015e57806323b872dd1461017c575b600080fd5b61011861035e565b6040516101259190611a15565b60405180910390f35b6101486004803603810190610143919061178a565b6103f0565b60405161015591906119fa565b60405180910390f35b61016661040e565b6040516101739190611bb7565b60405180910390f35b6101966004803603810190610191919061173b565b610418565b6040516101a391906119fa565b60405180910390f35b6101b46104f1565b6040516101c19190611bd2565b60405180910390f35b6101e460048036038101906101df919061178a565b610508565b6040516101f191906119fa565b60405180910390f35b6102026105bb565b005b61021e6004803603810190610219919061178a565b610655565b005b610228610743565b60405161023591906119fa565b60405180910390f35b610258600480360381019061025391906116d6565b61075a565b6040516102659190611bb7565b60405180910390f35b6102766107a2565b005b610292600480360381019061028d91906116ff565b61083c565b005b61029c610952565b6040516102a99190611a15565b60405180910390f35b6102cc60048036038101906102c7919061178a565b6109e4565b005b6102e860048036038101906102e3919061178a565b610ad2565b6040516102f591906119fa565b60405180910390f35b6103186004803603810190610313919061178a565b610b9f565b60405161032591906119fa565b60405180910390f35b610348600480360381019061034391906116ff565b610bbd565b6040516103559190611bb7565b60405180910390f35b60606003805461036d90611d51565b80601f016020809104026020016040519081016040528092919081815260200182805461039990611d51565b80156103e65780601f106103bb576101008083540402835291602001916103e6565b820191906000526020600020905b8154815290600101906020018083116103c957829003601f168201915b5050505050905090565b60006104046103fd610c44565b8484610c4c565b6001905092915050565b6000600254905090565b6000610425848484610e17565b6104e684610431610c44565b6104e18560405180606001604052806028815260200161213960289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610497610c44565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110ac9092919063ffffffff16565b610c4c565b600190509392505050565b6000600560009054906101000a900460ff16905090565b60006105b1610515610c44565b846105ac8560016000610526610c44565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461111090919063ffffffff16565b610c4c565b6001905092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461064b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161064290611ab7565b60405180910390fd5b61065361116e565b565b600560019054906101000a900460ff16156106a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161069c90611ad7565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610735576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161072c90611ab7565b60405180910390fd5b61073f8282611218565b5050565b6000600560019054906101000a900460ff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610832576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082990611ab7565b60405180910390fd5b61083a6113ac565b565b600560029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146108cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c390611b37565b60405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b60606004805461096190611d51565b80601f016020809104026020016040519081016040528092919081815260200182805461098d90611d51565b80156109da5780601f106109af576101008083540402835291602001916109da565b820191906000526020600020905b8154815290600101906020018083116109bd57829003601f168201915b5050505050905090565b600560019054906101000a900460ff1615610a34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2b90611ad7565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610ac4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abb90611ab7565b60405180910390fd5b610ace8282611457565b5050565b6000610b95610adf610c44565b84610b90856040518060600160405280602581526020016121616025913960016000610b09610c44565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110ac9092919063ffffffff16565b610c4c565b6001905092915050565b6000610bb3610bac610c44565b8484610e17565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb390611b57565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2390611a77565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e0a9190611bb7565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7e90611b17565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ef7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eee90611a37565b60405180910390fd5b610f02838383611605565b610f6d81604051806060016040528060268152602001612113602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110ac9092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611000816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461111090919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161109f9190611bb7565b60405180910390a3505050565b60008383111582906110f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110eb9190611a15565b60405180910390fd5b50600083856111039190611c5f565b9050809150509392505050565b600080828461111f9190611c09565b905083811015611164576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115b90611a97565b60405180910390fd5b8091505092915050565b600560019054906101000a900460ff166111bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b490611a57565b60405180910390fd5b6000600560016101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611201610c44565b60405161120e91906119df565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611288576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127f90611b77565b60405180910390fd5b61129460008383611605565b6112a98160025461111090919063ffffffff16565b600281905550611300816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461111090919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516113a09190611bb7565b60405180910390a35050565b600560019054906101000a900460ff16156113fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f390611ad7565b60405180910390fd5b6001600560016101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611440610c44565b60405161144d91906119df565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114be90611af7565b60405180910390fd5b6114d382600083611605565b61153e816040518060600160405280602281526020016120f1602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110ac9092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506115958160025461165d90919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516115f99190611bb7565b60405180910390a35050565b6116108383836116a7565b611618610743565b15611658576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164f90611b97565b60405180910390fd5b505050565b600061169f83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506110ac565b905092915050565b505050565b6000813590506116bb816120c2565b92915050565b6000813590506116d0816120d9565b92915050565b6000602082840312156116e857600080fd5b60006116f6848285016116ac565b91505092915050565b6000806040838503121561171257600080fd5b6000611720858286016116ac565b9250506020611731858286016116ac565b9150509250929050565b60008060006060848603121561175057600080fd5b600061175e868287016116ac565b935050602061176f868287016116ac565b9250506040611780868287016116c1565b9150509250925092565b6000806040838503121561179d57600080fd5b60006117ab858286016116ac565b92505060206117bc858286016116c1565b9150509250929050565b6117cf81611ce8565b82525050565b6117de81611ca5565b82525050565b60006117ef82611bed565b6117f98185611bf8565b9350611809818560208601611d1e565b61181281611de1565b840191505092915050565b600061182a602383611bf8565b915061183582611df2565b604082019050919050565b600061184d601483611bf8565b915061185882611e41565b602082019050919050565b6000611870602283611bf8565b915061187b82611e6a565b604082019050919050565b6000611893601b83611bf8565b915061189e82611eb9565b602082019050919050565b60006118b6600b83611bf8565b91506118c182611ee2565b602082019050919050565b60006118d9601083611bf8565b91506118e482611f0b565b602082019050919050565b60006118fc602183611bf8565b915061190782611f34565b604082019050919050565b600061191f602583611bf8565b915061192a82611f83565b604082019050919050565b6000611942600c83611bf8565b915061194d82611fd2565b602082019050919050565b6000611965602483611bf8565b915061197082611ffb565b604082019050919050565b6000611988601f83611bf8565b91506119938261204a565b602082019050919050565b60006119ab602a83611bf8565b91506119b682612073565b604082019050919050565b6119ca81611cd1565b82525050565b6119d981611cdb565b82525050565b60006020820190506119f460008301846117c6565b92915050565b6000602082019050611a0f60008301846117d5565b92915050565b60006020820190508181036000830152611a2f81846117e4565b905092915050565b60006020820190508181036000830152611a508161181d565b9050919050565b60006020820190508181036000830152611a7081611840565b9050919050565b60006020820190508181036000830152611a9081611863565b9050919050565b60006020820190508181036000830152611ab081611886565b9050919050565b60006020820190508181036000830152611ad0816118a9565b9050919050565b60006020820190508181036000830152611af0816118cc565b9050919050565b60006020820190508181036000830152611b10816118ef565b9050919050565b60006020820190508181036000830152611b3081611912565b9050919050565b60006020820190508181036000830152611b5081611935565b9050919050565b60006020820190508181036000830152611b7081611958565b9050919050565b60006020820190508181036000830152611b908161197b565b9050919050565b60006020820190508181036000830152611bb08161199e565b9050919050565b6000602082019050611bcc60008301846119c1565b92915050565b6000602082019050611be760008301846119d0565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611c1482611cd1565b9150611c1f83611cd1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611c5457611c53611d83565b5b828201905092915050565b6000611c6a82611cd1565b9150611c7583611cd1565b925082821015611c8857611c87611d83565b5b828203905092915050565b6000611c9e82611cb1565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b6000611cf382611cfa565b9050919050565b6000611d0582611d0c565b9050919050565b6000611d1782611cb1565b9050919050565b60005b83811015611d3c578082015181840152602081019050611d21565b83811115611d4b576000848401525b50505050565b60006002820490506001821680611d6957607f821691505b60208210811415611d7d57611d7c611db2565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b7f6e6f7420616c6c6f776564000000000000000000000000000000000000000000600082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f6f6e6c7920466163746f72790000000000000000000000000000000000000000600082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b7f45524332305061757361626c653a20746f6b656e207472616e7366657220776860008201527f696c652070617573656400000000000000000000000000000000000000000000602082015250565b6120cb81611c93565b81146120d657600080fd5b50565b6120e281611cd1565b81146120ed57600080fd5b5056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122050720249c11bf2bf6da8b1770af05168068be0eee81154cac03b74b0ab3b6a3f64736f6c634300080400330000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd65710000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd657100000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000095553445420636f696e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000045553445400000000000000000000000000000000000000000000000000000000", + "isCreate": true, + "v": "0x1", + "r": "0xcfd8bedfc221b4a018a9b0c0ee99b1064dbb78b285a8a4bff07cc13d3d3e18bd", + "s": "0x74006f3b0f03d9cd1f663bd6e3fbbc808dcfea86694b80f714143b72c11d258" + }, + { + "type": 2, + "nonce": 239, + "txHash": "0xd5e24c3dab0327df6a01078b400abd4a1e70f985ad2bce035e06a13f76f4f4bb", + "gas": 1000000, + "gasPrice": "0x124", + "from": "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "to": null, + "chainId": "0xcf55", + "value": "0x0", + "data": "0x6080604052348015600f57600080fd5b5060405160e238038060e28339818101604052810190602d91906052565b6000811415603a57600080fd5b506096565b600081519050604c816082565b92915050565b600060208284031215606357600080fd5b6000606f84828501603f565b91505092915050565b6000819050919050565b6089816078565b8114609357600080fd5b50565b603f8060a36000396000f3fe6080604052600080fdfea2646970667358221220d980928765b61eb01523442146dc4518e079360da1cc4a7f1ab97c88f137c27e64736f6c634300080400330000000000000000000000000000000000000000000000000000000000000000", + "isCreate": true, + "v": "0x0", + "r": "0x744124dc20b5902f1b958b9f054122ede688c3a8df89230fba7a907c13184e38", + "s": "0x5ba48aaaf89edccedcd87b47400c4a2900256f0caa93670d92deb371288ad816" + } + ] + }, + "storageTrace": { + "rootBefore": "0x03a24f103aac70686dfac9098f656af7b66bba590b6149ccaaf3951802fba2c4", + "rootAfter": "0x0eca32cb58c13a8ff4f327cfa1d55cb726c9e1b993ea80dc973d0f8e75b178ba", + "proofs": { + "0x08C683B684d1E24CAb8ce6De5C8c628D993ac140": [ + "0x001f8d5d42a0d7c6e62fc4d0fc963bb94e650ea838cf949bd8b0fc041ef4a58cf8019752961f96bc6930ed219037853e2dbeb17770d08a6df1b21d00be081973e6", + "0x001ad0ad6b336ce7ef23854e15e1e112a384d0026f9eee3597e7aa2caaa387f1521fb2f78dc4edceeae0424b59310236ab12781d2c54169acd4c6da921be5d1107", + "0x001d3dcc7cb85d1cd5b47ab7adc81ac8604d93c0025d363bb5f924640d9727d5ec215729a87812368a7ea750b9e024aa326c0b1b0a32f358a77e479cb2fe439fa4", + "0x00243b2221f148f9f95cfb8c2245583884f8595cec225a1ccae35606e0e19d737422de217a821ca10394e3c0f7a99762e37d87f50e2a61f48a154a26a4c4c7c5e7", + "0x000ef81a6c68d20d9d29dd6322d851e57c54c031ac00ee05e60c2f21424d4924f62839799370d6f505b848c28f5772f310f477503bd8017e5963ffb36289c056a7", + "0x0025aab923d9a5a2d93978c98a1f5bb1a2ed1a57702b3e81e9da4e97a44c390bc7228652db5e0261a52ac64ea0c79235bf59876ae691be01660304f34e840bc421", + "0x0006dadfe17affe00f79daf2d1fea69cf96e2732e6c520ef8af07a339f820cd0f817dcd7b34adf1df7175fb9a97bb3d5d2f14a2a3628d1c3c5a88b77407f4630c6", + "0x0020196df68bb71cb9ec63c75ec7f5f0cce376c77692766bd40bbe3dd4faf683372839e18011054db5716a3615e2baf882a938270f2e99e9228b86ddf18c6f80b3", + "0x0109fa6cfa43005422ede7eb7902144687d7ee31bd81e223cab528b8f34686fdd504040000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000008adfb3226f276980f772e5376b614720d04ef907db2ef9c76b4fa5d2a73556f12d496e21c596142e870e77af83d326d50f61582cdda0f8aa8400f10f0cfb875400", + "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" + ], + "0x3BF378F9Fb04803155FbBCe77c0A210640B6F54e": [ + "0x001f8d5d42a0d7c6e62fc4d0fc963bb94e650ea838cf949bd8b0fc041ef4a58cf8019752961f96bc6930ed219037853e2dbeb17770d08a6df1b21d00be081973e6", + "0x001c83a698cad42234e960b79a43d66583319a7f8cf6a892cbb3b1af315d5cf1402b42961b4531b48a39e50771bff69e37850a57fb7d62604208a6a17f5c045069", + "0x002f240ffd8c29fabbde0617c18971d4e304269c804eb41aa5daf0a13409971dc30b3a7916c7d0d5ae5c206f612a9fb49cee928bd1013640b439e7e6f9d85f0055", + "0x00252ec0956ad8f735727e52875937451b4b345e18b9e9d8c315d4a763b0ea6b3d2b3a067dd468121593eb6dcd0098076da685deb841400f5b8c71d48b63bb5aac", + "0x002b364d0452716332b446df38decfad9df58fc0d1d1937094e3ec5e748d768a832786835ff23081e2e78a695671bcc0a32ae2ba80bc76de101d8563797b786091", + "0x00278f4180ea9fbf3419434157bf94e7ead785a64e8bc407bba90d176332495cee02550538a466b52a5107628b8dadc9252e082ec4f120094c6160fd1b99625ae9", + "0x001ff704b67df82932bc125abd24e3f19c42e86b008a73572a11d35cec7f074e3206fe7d471958425fd8ca0fbe8cc2c78c171f8fc4d50d36ff9b3ed3ef4b1acd3d", + "0x012a44ab5b1862c932ec247c1f8cfb92ac5becfa96911e3351f314f6b2e76040c204040000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000009b5ea0519f6e20c36338989b6accc7cf3384eac2f0a083e82730bca17754440926384a5384a63d58182f1652dd3e1df953cf8853a7c4054a014430b609be246700", + "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" + ], + "0x4cb1aB63aF5D8931Ce09673EbD8ae2ce16fD6571": [ + "0x001f8d5d42a0d7c6e62fc4d0fc963bb94e650ea838cf949bd8b0fc041ef4a58cf8019752961f96bc6930ed219037853e2dbeb17770d08a6df1b21d00be081973e6", + "0x001ad0ad6b336ce7ef23854e15e1e112a384d0026f9eee3597e7aa2caaa387f1521fb2f78dc4edceeae0424b59310236ab12781d2c54169acd4c6da921be5d1107", + "0x001d3dcc7cb85d1cd5b47ab7adc81ac8604d93c0025d363bb5f924640d9727d5ec215729a87812368a7ea750b9e024aa326c0b1b0a32f358a77e479cb2fe439fa4", + "0x00243b2221f148f9f95cfb8c2245583884f8595cec225a1ccae35606e0e19d737422de217a821ca10394e3c0f7a99762e37d87f50e2a61f48a154a26a4c4c7c5e7", + "0x000ef81a6c68d20d9d29dd6322d851e57c54c031ac00ee05e60c2f21424d4924f62839799370d6f505b848c28f5772f310f477503bd8017e5963ffb36289c056a7", + "0x0025aab923d9a5a2d93978c98a1f5bb1a2ed1a57702b3e81e9da4e97a44c390bc7228652db5e0261a52ac64ea0c79235bf59876ae691be01660304f34e840bc421", + "0x00240595687c8fa1172547dcc9450ef9f30519743088365ea537ff0a5a0263eef8260a3538070a1d97209ae51eef235ff8d53e1be3b9fb676747dfd3aa37fc3c4e", + "0x0008486015e27ba13d3ff21c2b1cf9dd71a6058fad18bc635f9921d861271069112fe8b70043185278f8f6c75d7057d75ebc62e82052f480dfc207de3b0e89700e", + "0x0129bdbea092f4f7e6de593fd1a16ddb50b1c2a6297d4ae141a60f8da631e481750404000000000000000000000000000000000000000000000000000000000000000000ee0056bc75e2d630ffffffffffffffffffffffffffffffffffff3346739cd1fe06c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470000000000000000000000000000000000000000000000000000000000000000000", + "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" + ] + }, + "storageProofs": { + "0x08C683B684d1E24CAb8ce6De5C8c628D993ac140": { + "0x0000000000000000000000000000000000000000000000000000000000000003": [ + "0x02", + "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" + ], + "0x0000000000000000000000000000000000000000000000000000000000000004": [ + "0x02", + "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" + ], + "0x0000000000000000000000000000000000000000000000000000000000000005": [ + "0x02", + "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" + ], + "0x0000000000000000000000000000000000000000000000000000000000000006": [ + "0x02", + "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" + ], + "0x0000000000000000000000000000000000000000000000000000000000000007": [ + "0x02", + "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" + ] + } + } + }, + "executionResults": [ + { + "gas": 2045306, + "failed": false, + "returnValue": "608060405234801561001057600080fd5b506004361061010b5760003560e01c80635c975abb116100a257806395d89b411161007157806395d89b41146102945780639dc29fac146102b2578063a457c2d7146102ce578063a9059cbb146102fe578063dd62ed3e1461032e5761010b565b80635c975abb1461022057806370a082311461023e5780638456cb591461026e5780638e50817a146102785761010b565b8063313ce567116100de578063313ce567146101ac57806339509351146101ca5780633f4ba83a146101fa57806340c10f19146102045761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015e57806323b872dd1461017c575b600080fd5b61011861035e565b6040516101259190611a15565b60405180910390f35b6101486004803603810190610143919061178a565b6103f0565b60405161015591906119fa565b60405180910390f35b61016661040e565b6040516101739190611bb7565b60405180910390f35b6101966004803603810190610191919061173b565b610418565b6040516101a391906119fa565b60405180910390f35b6101b46104f1565b6040516101c19190611bd2565b60405180910390f35b6101e460048036038101906101df919061178a565b610508565b6040516101f191906119fa565b60405180910390f35b6102026105bb565b005b61021e6004803603810190610219919061178a565b610655565b005b610228610743565b60405161023591906119fa565b60405180910390f35b610258600480360381019061025391906116d6565b61075a565b6040516102659190611bb7565b60405180910390f35b6102766107a2565b005b610292600480360381019061028d91906116ff565b61083c565b005b61029c610952565b6040516102a99190611a15565b60405180910390f35b6102cc60048036038101906102c7919061178a565b6109e4565b005b6102e860048036038101906102e3919061178a565b610ad2565b6040516102f591906119fa565b60405180910390f35b6103186004803603810190610313919061178a565b610b9f565b60405161032591906119fa565b60405180910390f35b610348600480360381019061034391906116ff565b610bbd565b6040516103559190611bb7565b60405180910390f35b60606003805461036d90611d51565b80601f016020809104026020016040519081016040528092919081815260200182805461039990611d51565b80156103e65780601f106103bb576101008083540402835291602001916103e6565b820191906000526020600020905b8154815290600101906020018083116103c957829003601f168201915b5050505050905090565b60006104046103fd610c44565b8484610c4c565b6001905092915050565b6000600254905090565b6000610425848484610e17565b6104e684610431610c44565b6104e18560405180606001604052806028815260200161213960289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610497610c44565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110ac9092919063ffffffff16565b610c4c565b600190509392505050565b6000600560009054906101000a900460ff16905090565b60006105b1610515610c44565b846105ac8560016000610526610c44565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461111090919063ffffffff16565b610c4c565b6001905092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461064b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161064290611ab7565b60405180910390fd5b61065361116e565b565b600560019054906101000a900460ff16156106a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161069c90611ad7565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610735576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161072c90611ab7565b60405180910390fd5b61073f8282611218565b5050565b6000600560019054906101000a900460ff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610832576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082990611ab7565b60405180910390fd5b61083a6113ac565b565b600560029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146108cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c390611b37565b60405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b60606004805461096190611d51565b80601f016020809104026020016040519081016040528092919081815260200182805461098d90611d51565b80156109da5780601f106109af576101008083540402835291602001916109da565b820191906000526020600020905b8154815290600101906020018083116109bd57829003601f168201915b5050505050905090565b600560019054906101000a900460ff1615610a34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2b90611ad7565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610ac4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abb90611ab7565b60405180910390fd5b610ace8282611457565b5050565b6000610b95610adf610c44565b84610b90856040518060600160405280602581526020016121616025913960016000610b09610c44565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110ac9092919063ffffffff16565b610c4c565b6001905092915050565b6000610bb3610bac610c44565b8484610e17565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb390611b57565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2390611a77565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e0a9190611bb7565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7e90611b17565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ef7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eee90611a37565b60405180910390fd5b610f02838383611605565b610f6d81604051806060016040528060268152602001612113602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110ac9092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611000816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461111090919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161109f9190611bb7565b60405180910390a3505050565b60008383111582906110f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110eb9190611a15565b60405180910390fd5b50600083856111039190611c5f565b9050809150509392505050565b600080828461111f9190611c09565b905083811015611164576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115b90611a97565b60405180910390fd5b8091505092915050565b600560019054906101000a900460ff166111bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b490611a57565b60405180910390fd5b6000600560016101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611201610c44565b60405161120e91906119df565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611288576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127f90611b77565b60405180910390fd5b61129460008383611605565b6112a98160025461111090919063ffffffff16565b600281905550611300816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461111090919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516113a09190611bb7565b60405180910390a35050565b600560019054906101000a900460ff16156113fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f390611ad7565b60405180910390fd5b6001600560016101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611440610c44565b60405161144d91906119df565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114be90611af7565b60405180910390fd5b6114d382600083611605565b61153e816040518060600160405280602281526020016120f1602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110ac9092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506115958160025461165d90919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516115f99190611bb7565b60405180910390a35050565b6116108383836116a7565b611618610743565b15611658576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164f90611b97565b60405180910390fd5b505050565b600061169f83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506110ac565b905092915050565b505050565b6000813590506116bb816120c2565b92915050565b6000813590506116d0816120d9565b92915050565b6000602082840312156116e857600080fd5b60006116f6848285016116ac565b91505092915050565b6000806040838503121561171257600080fd5b6000611720858286016116ac565b9250506020611731858286016116ac565b9150509250929050565b60008060006060848603121561175057600080fd5b600061175e868287016116ac565b935050602061176f868287016116ac565b9250506040611780868287016116c1565b9150509250925092565b6000806040838503121561179d57600080fd5b60006117ab858286016116ac565b92505060206117bc858286016116c1565b9150509250929050565b6117cf81611ce8565b82525050565b6117de81611ca5565b82525050565b60006117ef82611bed565b6117f98185611bf8565b9350611809818560208601611d1e565b61181281611de1565b840191505092915050565b600061182a602383611bf8565b915061183582611df2565b604082019050919050565b600061184d601483611bf8565b915061185882611e41565b602082019050919050565b6000611870602283611bf8565b915061187b82611e6a565b604082019050919050565b6000611893601b83611bf8565b915061189e82611eb9565b602082019050919050565b60006118b6600b83611bf8565b91506118c182611ee2565b602082019050919050565b60006118d9601083611bf8565b91506118e482611f0b565b602082019050919050565b60006118fc602183611bf8565b915061190782611f34565b604082019050919050565b600061191f602583611bf8565b915061192a82611f83565b604082019050919050565b6000611942600c83611bf8565b915061194d82611fd2565b602082019050919050565b6000611965602483611bf8565b915061197082611ffb565b604082019050919050565b6000611988601f83611bf8565b91506119938261204a565b602082019050919050565b60006119ab602a83611bf8565b91506119b682612073565b604082019050919050565b6119ca81611cd1565b82525050565b6119d981611cdb565b82525050565b60006020820190506119f460008301846117c6565b92915050565b6000602082019050611a0f60008301846117d5565b92915050565b60006020820190508181036000830152611a2f81846117e4565b905092915050565b60006020820190508181036000830152611a508161181d565b9050919050565b60006020820190508181036000830152611a7081611840565b9050919050565b60006020820190508181036000830152611a9081611863565b9050919050565b60006020820190508181036000830152611ab081611886565b9050919050565b60006020820190508181036000830152611ad0816118a9565b9050919050565b60006020820190508181036000830152611af0816118cc565b9050919050565b60006020820190508181036000830152611b10816118ef565b9050919050565b60006020820190508181036000830152611b3081611912565b9050919050565b60006020820190508181036000830152611b5081611935565b9050919050565b60006020820190508181036000830152611b7081611958565b9050919050565b60006020820190508181036000830152611b908161197b565b9050919050565b60006020820190508181036000830152611bb08161199e565b9050919050565b6000602082019050611bcc60008301846119c1565b92915050565b6000602082019050611be760008301846119d0565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611c1482611cd1565b9150611c1f83611cd1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611c5457611c53611d83565b5b828201905092915050565b6000611c6a82611cd1565b9150611c7583611cd1565b925082821015611c8857611c87611d83565b5b828203905092915050565b6000611c9e82611cb1565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b6000611cf382611cfa565b9050919050565b6000611d0582611d0c565b9050919050565b6000611d1782611cb1565b9050919050565b60005b83811015611d3c578082015181840152602081019050611d21565b83811115611d4b576000848401525b50505050565b60006002820490506001821680611d6957607f821691505b60208210811415611d7d57611d7c611db2565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b7f6e6f7420616c6c6f776564000000000000000000000000000000000000000000600082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f6f6e6c7920466163746f72790000000000000000000000000000000000000000600082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b7f45524332305061757361626c653a20746f6b656e207472616e7366657220776860008201527f696c652070617573656400000000000000000000000000000000000000000000602082015250565b6120cb81611c93565b81146120d657600080fd5b50565b6120e281611cd1565b81146120ed57600080fd5b5056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122050720249c11bf2bf6da8b1770af05168068be0eee81154cac03b74b0ab3b6a3f64736f6c63430008040033", + "from": { + "address": "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "nonce": 238, + "balance": "0x56bc75e2d630ffffffffffffffffffffffffffffffffffff3346739cd1fe06", + "codeHash": "0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470" + }, + "accountCreated": { + "address": "0x08c683b684d1e24cab8ce6de5c8c628d993ac140", + "nonce": 1, + "balance": "0x0", + "codeHash": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "accountAfter": [ + { + "address": "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "nonce": 239, + "balance": "0x56bc75e2d630ffffffffffffffffffffffffffffffffffff33467380a8bcf0", + "codeHash": "0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470" + }, + { + "address": "0x08c683b684d1e24cab8ce6de5c8c628d993ac140", + "nonce": 1, + "balance": "0x0", + "codeHash": "0x9b5ea0519f6e20c36338989b6accc7cf3384eac2f0a083e82730bca177544409" + } + ], + "byteCode": "0x60806040523480156200001157600080fd5b5060405162002755380380620027558339818101604052810190620000379190620002f1565b8282816003908051906020019062000051929190620001a1565b5080600490805190602001906200006a929190620001a1565b506012600560006101000a81548160ff021916908360ff16021790555050506000600560016101000a81548160ff02191690831515021790555084600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555083600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000137816200018360201b60201c565b33600560026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050505050506200058a565b80600560006101000a81548160ff021916908360ff16021790555050565b828054620001af906200047b565b90600052602060002090601f016020900481019282620001d357600085556200021f565b82601f10620001ee57805160ff19168380011785556200021f565b828001600101855582156200021f579182015b828111156200021e57825182559160200191906001019062000201565b5b5090506200022e919062000232565b5090565b5b808211156200024d57600081600090555060010162000233565b5090565b6000620002686200026284620003ce565b620003a5565b9050828152602081018484840111156200028157600080fd5b6200028e84828562000445565b509392505050565b600081519050620002a78162000556565b92915050565b600082601f830112620002bf57600080fd5b8151620002d184826020860162000251565b91505092915050565b600081519050620002eb8162000570565b92915050565b600080600080600060a086880312156200030a57600080fd5b60006200031a8882890162000296565b95505060206200032d8882890162000296565b945050604086015167ffffffffffffffff8111156200034b57600080fd5b6200035988828901620002ad565b935050606086015167ffffffffffffffff8111156200037757600080fd5b6200038588828901620002ad565b92505060806200039888828901620002da565b9150509295509295909350565b6000620003b1620003c4565b9050620003bf8282620004b1565b919050565b6000604051905090565b600067ffffffffffffffff821115620003ec57620003eb62000516565b5b620003f78262000545565b9050602081019050919050565b6000620004118262000418565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600060ff82169050919050565b60005b838110156200046557808201518184015260208101905062000448565b8381111562000475576000848401525b50505050565b600060028204905060018216806200049457607f821691505b60208210811415620004ab57620004aa620004e7565b5b50919050565b620004bc8262000545565b810181811067ffffffffffffffff82111715620004de57620004dd62000516565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b620005618162000404565b81146200056d57600080fd5b50565b6200057b8162000438565b81146200058757600080fd5b50565b6121bb806200059a6000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c80635c975abb116100a257806395d89b411161007157806395d89b41146102945780639dc29fac146102b2578063a457c2d7146102ce578063a9059cbb146102fe578063dd62ed3e1461032e5761010b565b80635c975abb1461022057806370a082311461023e5780638456cb591461026e5780638e50817a146102785761010b565b8063313ce567116100de578063313ce567146101ac57806339509351146101ca5780633f4ba83a146101fa57806340c10f19146102045761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015e57806323b872dd1461017c575b600080fd5b61011861035e565b6040516101259190611a15565b60405180910390f35b6101486004803603810190610143919061178a565b6103f0565b60405161015591906119fa565b60405180910390f35b61016661040e565b6040516101739190611bb7565b60405180910390f35b6101966004803603810190610191919061173b565b610418565b6040516101a391906119fa565b60405180910390f35b6101b46104f1565b6040516101c19190611bd2565b60405180910390f35b6101e460048036038101906101df919061178a565b610508565b6040516101f191906119fa565b60405180910390f35b6102026105bb565b005b61021e6004803603810190610219919061178a565b610655565b005b610228610743565b60405161023591906119fa565b60405180910390f35b610258600480360381019061025391906116d6565b61075a565b6040516102659190611bb7565b60405180910390f35b6102766107a2565b005b610292600480360381019061028d91906116ff565b61083c565b005b61029c610952565b6040516102a99190611a15565b60405180910390f35b6102cc60048036038101906102c7919061178a565b6109e4565b005b6102e860048036038101906102e3919061178a565b610ad2565b6040516102f591906119fa565b60405180910390f35b6103186004803603810190610313919061178a565b610b9f565b60405161032591906119fa565b60405180910390f35b610348600480360381019061034391906116ff565b610bbd565b6040516103559190611bb7565b60405180910390f35b60606003805461036d90611d51565b80601f016020809104026020016040519081016040528092919081815260200182805461039990611d51565b80156103e65780601f106103bb576101008083540402835291602001916103e6565b820191906000526020600020905b8154815290600101906020018083116103c957829003601f168201915b5050505050905090565b60006104046103fd610c44565b8484610c4c565b6001905092915050565b6000600254905090565b6000610425848484610e17565b6104e684610431610c44565b6104e18560405180606001604052806028815260200161213960289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610497610c44565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110ac9092919063ffffffff16565b610c4c565b600190509392505050565b6000600560009054906101000a900460ff16905090565b60006105b1610515610c44565b846105ac8560016000610526610c44565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461111090919063ffffffff16565b610c4c565b6001905092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461064b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161064290611ab7565b60405180910390fd5b61065361116e565b565b600560019054906101000a900460ff16156106a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161069c90611ad7565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610735576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161072c90611ab7565b60405180910390fd5b61073f8282611218565b5050565b6000600560019054906101000a900460ff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610832576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082990611ab7565b60405180910390fd5b61083a6113ac565b565b600560029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146108cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c390611b37565b60405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b60606004805461096190611d51565b80601f016020809104026020016040519081016040528092919081815260200182805461098d90611d51565b80156109da5780601f106109af576101008083540402835291602001916109da565b820191906000526020600020905b8154815290600101906020018083116109bd57829003601f168201915b5050505050905090565b600560019054906101000a900460ff1615610a34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2b90611ad7565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610ac4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abb90611ab7565b60405180910390fd5b610ace8282611457565b5050565b6000610b95610adf610c44565b84610b90856040518060600160405280602581526020016121616025913960016000610b09610c44565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110ac9092919063ffffffff16565b610c4c565b6001905092915050565b6000610bb3610bac610c44565b8484610e17565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb390611b57565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2390611a77565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e0a9190611bb7565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7e90611b17565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ef7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eee90611a37565b60405180910390fd5b610f02838383611605565b610f6d81604051806060016040528060268152602001612113602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110ac9092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611000816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461111090919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161109f9190611bb7565b60405180910390a3505050565b60008383111582906110f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110eb9190611a15565b60405180910390fd5b50600083856111039190611c5f565b9050809150509392505050565b600080828461111f9190611c09565b905083811015611164576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115b90611a97565b60405180910390fd5b8091505092915050565b600560019054906101000a900460ff166111bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b490611a57565b60405180910390fd5b6000600560016101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611201610c44565b60405161120e91906119df565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611288576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127f90611b77565b60405180910390fd5b61129460008383611605565b6112a98160025461111090919063ffffffff16565b600281905550611300816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461111090919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516113a09190611bb7565b60405180910390a35050565b600560019054906101000a900460ff16156113fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f390611ad7565b60405180910390fd5b6001600560016101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611440610c44565b60405161144d91906119df565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114be90611af7565b60405180910390fd5b6114d382600083611605565b61153e816040518060600160405280602281526020016120f1602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110ac9092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506115958160025461165d90919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516115f99190611bb7565b60405180910390a35050565b6116108383836116a7565b611618610743565b15611658576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164f90611b97565b60405180910390fd5b505050565b600061169f83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506110ac565b905092915050565b505050565b6000813590506116bb816120c2565b92915050565b6000813590506116d0816120d9565b92915050565b6000602082840312156116e857600080fd5b60006116f6848285016116ac565b91505092915050565b6000806040838503121561171257600080fd5b6000611720858286016116ac565b9250506020611731858286016116ac565b9150509250929050565b60008060006060848603121561175057600080fd5b600061175e868287016116ac565b935050602061176f868287016116ac565b9250506040611780868287016116c1565b9150509250925092565b6000806040838503121561179d57600080fd5b60006117ab858286016116ac565b92505060206117bc858286016116c1565b9150509250929050565b6117cf81611ce8565b82525050565b6117de81611ca5565b82525050565b60006117ef82611bed565b6117f98185611bf8565b9350611809818560208601611d1e565b61181281611de1565b840191505092915050565b600061182a602383611bf8565b915061183582611df2565b604082019050919050565b600061184d601483611bf8565b915061185882611e41565b602082019050919050565b6000611870602283611bf8565b915061187b82611e6a565b604082019050919050565b6000611893601b83611bf8565b915061189e82611eb9565b602082019050919050565b60006118b6600b83611bf8565b91506118c182611ee2565b602082019050919050565b60006118d9601083611bf8565b91506118e482611f0b565b602082019050919050565b60006118fc602183611bf8565b915061190782611f34565b604082019050919050565b600061191f602583611bf8565b915061192a82611f83565b604082019050919050565b6000611942600c83611bf8565b915061194d82611fd2565b602082019050919050565b6000611965602483611bf8565b915061197082611ffb565b604082019050919050565b6000611988601f83611bf8565b91506119938261204a565b602082019050919050565b60006119ab602a83611bf8565b91506119b682612073565b604082019050919050565b6119ca81611cd1565b82525050565b6119d981611cdb565b82525050565b60006020820190506119f460008301846117c6565b92915050565b6000602082019050611a0f60008301846117d5565b92915050565b60006020820190508181036000830152611a2f81846117e4565b905092915050565b60006020820190508181036000830152611a508161181d565b9050919050565b60006020820190508181036000830152611a7081611840565b9050919050565b60006020820190508181036000830152611a9081611863565b9050919050565b60006020820190508181036000830152611ab081611886565b9050919050565b60006020820190508181036000830152611ad0816118a9565b9050919050565b60006020820190508181036000830152611af0816118cc565b9050919050565b60006020820190508181036000830152611b10816118ef565b9050919050565b60006020820190508181036000830152611b3081611912565b9050919050565b60006020820190508181036000830152611b5081611935565b9050919050565b60006020820190508181036000830152611b7081611958565b9050919050565b60006020820190508181036000830152611b908161197b565b9050919050565b60006020820190508181036000830152611bb08161199e565b9050919050565b6000602082019050611bcc60008301846119c1565b92915050565b6000602082019050611be760008301846119d0565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611c1482611cd1565b9150611c1f83611cd1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611c5457611c53611d83565b5b828201905092915050565b6000611c6a82611cd1565b9150611c7583611cd1565b925082821015611c8857611c87611d83565b5b828203905092915050565b6000611c9e82611cb1565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b6000611cf382611cfa565b9050919050565b6000611d0582611d0c565b9050919050565b6000611d1782611cb1565b9050919050565b60005b83811015611d3c578082015181840152602081019050611d21565b83811115611d4b576000848401525b50505050565b60006002820490506001821680611d6957607f821691505b60208210811415611d7d57611d7c611db2565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b7f6e6f7420616c6c6f776564000000000000000000000000000000000000000000600082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f6f6e6c7920466163746f72790000000000000000000000000000000000000000600082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b7f45524332305061757361626c653a20746f6b656e207472616e7366657220776860008201527f696c652070617573656400000000000000000000000000000000000000000000602082015250565b6120cb81611c93565b81146120d657600080fd5b50565b6120e281611cd1565b81146120ed57600080fd5b5056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122050720249c11bf2bf6da8b1770af05168068be0eee81154cac03b74b0ab3b6a3f64736f6c634300080400330000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd65710000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd657100000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000095553445420636f696e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000045553445400000000000000000000000000000000000000000000000000000000", + "structLogs": [ + { + "pc": 0, + "op": "PUSH1", + "gas": 1843742, + "gasCost": 3, + "depth": 1 + }, + { + "pc": 2, + "op": "PUSH1", + "gas": 1843739, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80" + ] + }, + { + "pc": 4, + "op": "MSTORE", + "gas": 1843736, + "gasCost": 12, + "depth": 1, + "stack": [ + "0x80", + "0x40" + ] + }, + { + "pc": 5, + "op": "CALLVALUE", + "gas": 1843724, + "gasCost": 2, + "depth": 1 + }, + { + "pc": 6, + "op": "DUP1", + "gas": 1843722, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 7, + "op": "ISZERO", + "gas": 1843719, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0", + "0x0" + ] + }, + { + "pc": 8, + "op": "PUSH3", + "gas": 1843716, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0", + "0x1" + ] + }, + { + "pc": 12, + "op": "JUMPI", + "gas": 1843713, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x0", + "0x1", + "0x11" + ] + }, + { + "pc": 17, + "op": "JUMPDEST", + "gas": 1843703, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 18, + "op": "POP", + "gas": 1843702, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 19, + "op": "PUSH1", + "gas": 1843700, + "gasCost": 3, + "depth": 1 + }, + { + "pc": 21, + "op": "MLOAD", + "gas": 1843697, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x40" + ] + }, + { + "pc": 22, + "op": "PUSH3", + "gas": 1843694, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80" + ] + }, + { + "pc": 26, + "op": "CODESIZE", + "gas": 1843691, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x80", + "0x2755" + ], + "extraData": { + "codeList": [ + "0x" + ] + } + }, + { + "pc": 27, + "op": "SUB", + "gas": 1843689, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x2755", + "0x2875" + ] + }, + { + "pc": 28, + "op": "DUP1", + "gas": 1843686, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x120" + ] + }, + { + "pc": 29, + "op": "PUSH3", + "gas": 1843683, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x120", + "0x120" + ] + }, + { + "pc": 33, + "op": "DUP4", + "gas": 1843680, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x120", + "0x120", + "0x2755" + ] + }, + { + "pc": 34, + "op": "CODECOPY", + "gas": 1843677, + "gasCost": 60, + "depth": 1, + "stack": [ + "0x80", + "0x120", + "0x120", + "0x2755", + "0x80" + ], + "extraData": { + "codeList": [ + "0x" + ] + } + }, + { + "pc": 35, + "op": "DUP2", + "gas": 1843617, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x120" + ] + }, + { + "pc": 36, + "op": "DUP2", + "gas": 1843614, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x120", + "0x80" + ] + }, + { + "pc": 37, + "op": "ADD", + "gas": 1843611, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x120", + "0x80", + "0x120" + ] + }, + { + "pc": 38, + "op": "PUSH1", + "gas": 1843608, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x120", + "0x1a0" + ] + }, + { + "pc": 40, + "op": "MSTORE", + "gas": 1843605, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x120", + "0x1a0", + "0x40" + ] + }, + { + "pc": 41, + "op": "DUP2", + "gas": 1843602, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x120" + ] + }, + { + "pc": 42, + "op": "ADD", + "gas": 1843599, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x120", + "0x80" + ] + }, + { + "pc": 43, + "op": "SWAP1", + "gas": 1843596, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x1a0" + ] + }, + { + "pc": 44, + "op": "PUSH3", + "gas": 1843593, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x1a0", + "0x80" + ] + }, + { + "pc": 48, + "op": "SWAP2", + "gas": 1843590, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x1a0", + "0x80", + "0x37" + ] + }, + { + "pc": 49, + "op": "SWAP1", + "gas": 1843587, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x80", + "0x1a0" + ] + }, + { + "pc": 50, + "op": "PUSH3", + "gas": 1843584, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80" + ] + }, + { + "pc": 54, + "op": "JUMP", + "gas": 1843581, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x2f1" + ] + }, + { + "pc": 753, + "op": "JUMPDEST", + "gas": 1843573, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80" + ] + }, + { + "pc": 754, + "op": "PUSH1", + "gas": 1843572, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80" + ] + }, + { + "pc": 756, + "op": "DUP1", + "gas": 1843569, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x0" + ] + }, + { + "pc": 757, + "op": "PUSH1", + "gas": 1843566, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x0", + "0x0" + ] + }, + { + "pc": 759, + "op": "DUP1", + "gas": 1843563, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 760, + "op": "PUSH1", + "gas": 1843560, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x0", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 762, + "op": "PUSH1", + "gas": 1843557, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 764, + "op": "DUP7", + "gas": 1843554, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0xa0" + ] + }, + { + "pc": 765, + "op": "DUP9", + "gas": 1843551, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x80" + ] + }, + { + "pc": 766, + "op": "SUB", + "gas": 1843548, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x80", + "0x1a0" + ] + }, + { + "pc": 767, + "op": "SLT", + "gas": 1843545, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x120" + ] + }, + { + "pc": 768, + "op": "ISZERO", + "gas": 1843542, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 769, + "op": "PUSH3", + "gas": 1843539, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x1" + ] + }, + { + "pc": 773, + "op": "JUMPI", + "gas": 1843536, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x1", + "0x30a" + ] + }, + { + "pc": 778, + "op": "JUMPDEST", + "gas": 1843526, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 779, + "op": "PUSH1", + "gas": 1843525, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 781, + "op": "PUSH3", + "gas": 1843522, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 785, + "op": "DUP9", + "gas": 1843519, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x31a" + ] + }, + { + "pc": 786, + "op": "DUP3", + "gas": 1843516, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x31a", + "0x1a0" + ] + }, + { + "pc": 787, + "op": "DUP10", + "gas": 1843513, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x31a", + "0x1a0", + "0x0" + ] + }, + { + "pc": 788, + "op": "ADD", + "gas": 1843510, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x31a", + "0x1a0", + "0x0", + "0x80" + ] + }, + { + "pc": 789, + "op": "PUSH3", + "gas": 1843507, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x31a", + "0x1a0", + "0x80" + ] + }, + { + "pc": 793, + "op": "JUMP", + "gas": 1843504, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x31a", + "0x1a0", + "0x80", + "0x296" + ] + }, + { + "pc": 662, + "op": "JUMPDEST", + "gas": 1843496, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x31a", + "0x1a0", + "0x80" + ] + }, + { + "pc": 663, + "op": "PUSH1", + "gas": 1843495, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x31a", + "0x1a0", + "0x80" + ] + }, + { + "pc": 665, + "op": "DUP2", + "gas": 1843492, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x31a", + "0x1a0", + "0x80", + "0x0" + ] + }, + { + "pc": 666, + "op": "MLOAD", + "gas": 1843489, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x31a", + "0x1a0", + "0x80", + "0x0", + "0x80" + ] + }, + { + "pc": 667, + "op": "SWAP1", + "gas": 1843486, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x31a", + "0x1a0", + "0x80", + "0x0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 668, + "op": "POP", + "gas": 1843483, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x31a", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0" + ] + }, + { + "pc": 669, + "op": "PUSH3", + "gas": 1843481, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x31a", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 673, + "op": "DUP2", + "gas": 1843478, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x31a", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2a7" + ] + }, + { + "pc": 674, + "op": "PUSH3", + "gas": 1843475, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x31a", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2a7", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 678, + "op": "JUMP", + "gas": 1843472, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x31a", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2a7", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x556" + ] + }, + { + "pc": 1366, + "op": "JUMPDEST", + "gas": 1843464, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x31a", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2a7", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 1367, + "op": "PUSH3", + "gas": 1843463, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x31a", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2a7", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 1371, + "op": "DUP2", + "gas": 1843460, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x31a", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2a7", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x561" + ] + }, + { + "pc": 1372, + "op": "PUSH3", + "gas": 1843457, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x31a", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2a7", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x561", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 1376, + "op": "JUMP", + "gas": 1843454, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x31a", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2a7", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x561", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x404" + ] + }, + { + "pc": 1028, + "op": "JUMPDEST", + "gas": 1843446, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x31a", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2a7", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x561", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 1029, + "op": "PUSH1", + "gas": 1843445, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x31a", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2a7", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x561", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 1031, + "op": "PUSH3", + "gas": 1843442, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x31a", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2a7", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x561", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0" + ] + }, + { + "pc": 1035, + "op": "DUP3", + "gas": 1843439, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x31a", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2a7", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x561", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x411" + ] + }, + { + "pc": 1036, + "op": "PUSH3", + "gas": 1843436, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x31a", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2a7", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x561", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x411", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 1040, + "op": "JUMP", + "gas": 1843433, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x31a", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2a7", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x561", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x411", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x418" + ] + }, + { + "pc": 1048, + "op": "JUMPDEST", + "gas": 1843425, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x31a", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2a7", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x561", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x411", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 1049, + "op": "PUSH1", + "gas": 1843424, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x31a", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2a7", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x561", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x411", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 1051, + "op": "PUSH20", + "gas": 1843421, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x31a", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2a7", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x561", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x411", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0" + ] + }, + { + "pc": 1072, + "op": "DUP3", + "gas": 1843418, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x31a", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2a7", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x561", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x411", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 1073, + "op": "AND", + "gas": 1843415, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x31a", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2a7", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x561", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x411", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 1074, + "op": "SWAP1", + "gas": 1843412, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x31a", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2a7", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x561", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x411", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 1075, + "op": "POP", + "gas": 1843409, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x31a", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2a7", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x561", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x411", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0" + ] + }, + { + "pc": 1076, + "op": "SWAP2", + "gas": 1843407, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x31a", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2a7", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x561", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x411", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 1077, + "op": "SWAP1", + "gas": 1843404, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x31a", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2a7", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x561", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x411" + ] + }, + { + "pc": 1078, + "op": "POP", + "gas": 1843401, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x31a", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2a7", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x561", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x411", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 1079, + "op": "JUMP", + "gas": 1843399, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x31a", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2a7", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x561", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x411" + ] + }, + { + "pc": 1041, + "op": "JUMPDEST", + "gas": 1843391, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x31a", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2a7", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x561", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 1042, + "op": "SWAP1", + "gas": 1843390, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x31a", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2a7", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x561", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 1043, + "op": "POP", + "gas": 1843387, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x31a", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2a7", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x561", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0" + ] + }, + { + "pc": 1044, + "op": "SWAP2", + "gas": 1843385, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x31a", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2a7", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x561", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 1045, + "op": "SWAP1", + "gas": 1843382, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x31a", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2a7", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x561" + ] + }, + { + "pc": 1046, + "op": "POP", + "gas": 1843379, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x31a", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2a7", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x561", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 1047, + "op": "JUMP", + "gas": 1843377, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x31a", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2a7", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x561" + ] + }, + { + "pc": 1377, + "op": "JUMPDEST", + "gas": 1843369, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x31a", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2a7", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 1378, + "op": "DUP2", + "gas": 1843368, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x31a", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2a7", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 1379, + "op": "EQ", + "gas": 1843365, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x31a", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2a7", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 1380, + "op": "PUSH3", + "gas": 1843362, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x31a", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2a7", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1" + ] + }, + { + "pc": 1384, + "op": "JUMPI", + "gas": 1843359, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x31a", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2a7", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x56d" + ] + }, + { + "pc": 1389, + "op": "JUMPDEST", + "gas": 1843349, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x31a", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2a7", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 1390, + "op": "POP", + "gas": 1843348, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x31a", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2a7", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 1391, + "op": "JUMP", + "gas": 1843346, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x31a", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2a7" + ] + }, + { + "pc": 679, + "op": "JUMPDEST", + "gas": 1843338, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x31a", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 680, + "op": "SWAP3", + "gas": 1843337, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x31a", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 681, + "op": "SWAP2", + "gas": 1843334, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x80", + "0x31a" + ] + }, + { + "pc": 682, + "op": "POP", + "gas": 1843331, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x31a", + "0x80", + "0x1a0" + ] + }, + { + "pc": 683, + "op": "POP", + "gas": 1843329, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x31a", + "0x80" + ] + }, + { + "pc": 684, + "op": "JUMP", + "gas": 1843327, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x31a" + ] + }, + { + "pc": 794, + "op": "JUMPDEST", + "gas": 1843319, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 795, + "op": "SWAP6", + "gas": 1843318, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 796, + "op": "POP", + "gas": 1843315, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 797, + "op": "POP", + "gas": 1843313, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 798, + "op": "PUSH1", + "gas": 1843311, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 800, + "op": "PUSH3", + "gas": 1843308, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0x0", + "0x20" + ] + }, + { + "pc": 804, + "op": "DUP9", + "gas": 1843305, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0x0", + "0x20", + "0x32d" + ] + }, + { + "pc": 805, + "op": "DUP3", + "gas": 1843302, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0x0", + "0x20", + "0x32d", + "0x1a0" + ] + }, + { + "pc": 806, + "op": "DUP10", + "gas": 1843299, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0x0", + "0x20", + "0x32d", + "0x1a0", + "0x20" + ] + }, + { + "pc": 807, + "op": "ADD", + "gas": 1843296, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0x0", + "0x20", + "0x32d", + "0x1a0", + "0x20", + "0x80" + ] + }, + { + "pc": 808, + "op": "PUSH3", + "gas": 1843293, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0x0", + "0x20", + "0x32d", + "0x1a0", + "0xa0" + ] + }, + { + "pc": 812, + "op": "JUMP", + "gas": 1843290, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0x0", + "0x20", + "0x32d", + "0x1a0", + "0xa0", + "0x296" + ] + }, + { + "pc": 662, + "op": "JUMPDEST", + "gas": 1843282, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0x0", + "0x20", + "0x32d", + "0x1a0", + "0xa0" + ] + }, + { + "pc": 663, + "op": "PUSH1", + "gas": 1843281, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0x0", + "0x20", + "0x32d", + "0x1a0", + "0xa0" + ] + }, + { + "pc": 665, + "op": "DUP2", + "gas": 1843278, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0x0", + "0x20", + "0x32d", + "0x1a0", + "0xa0", + "0x0" + ] + }, + { + "pc": 666, + "op": "MLOAD", + "gas": 1843275, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0x0", + "0x20", + "0x32d", + "0x1a0", + "0xa0", + "0x0", + "0xa0" + ] + }, + { + "pc": 667, + "op": "SWAP1", + "gas": 1843272, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0x0", + "0x20", + "0x32d", + "0x1a0", + "0xa0", + "0x0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 668, + "op": "POP", + "gas": 1843269, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0x0", + "0x20", + "0x32d", + "0x1a0", + "0xa0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0" + ] + }, + { + "pc": 669, + "op": "PUSH3", + "gas": 1843267, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0x0", + "0x20", + "0x32d", + "0x1a0", + "0xa0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 673, + "op": "DUP2", + "gas": 1843264, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0x0", + "0x20", + "0x32d", + "0x1a0", + "0xa0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2a7" + ] + }, + { + "pc": 674, + "op": "PUSH3", + "gas": 1843261, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0x0", + "0x20", + "0x32d", + "0x1a0", + "0xa0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2a7", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 678, + "op": "JUMP", + "gas": 1843258, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0x0", + "0x20", + "0x32d", + "0x1a0", + "0xa0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2a7", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x556" + ] + }, + { + "pc": 1366, + "op": "JUMPDEST", + "gas": 1843250, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0x0", + "0x20", + "0x32d", + "0x1a0", + "0xa0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2a7", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 1367, + "op": "PUSH3", + "gas": 1843249, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0x0", + "0x20", + "0x32d", + "0x1a0", + "0xa0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2a7", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 1371, + "op": "DUP2", + "gas": 1843246, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0x0", + "0x20", + "0x32d", + "0x1a0", + "0xa0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2a7", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x561" + ] + }, + { + "pc": 1372, + "op": "PUSH3", + "gas": 1843243, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0x0", + "0x20", + "0x32d", + "0x1a0", + "0xa0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2a7", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x561", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 1376, + "op": "JUMP", + "gas": 1843240, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0x0", + "0x20", + "0x32d", + "0x1a0", + "0xa0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2a7", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x561", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x404" + ] + }, + { + "pc": 1028, + "op": "JUMPDEST", + "gas": 1843232, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0x0", + "0x20", + "0x32d", + "0x1a0", + "0xa0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2a7", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x561", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 1029, + "op": "PUSH1", + "gas": 1843231, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0x0", + "0x20", + "0x32d", + "0x1a0", + "0xa0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2a7", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x561", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 1031, + "op": "PUSH3", + "gas": 1843228, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0x0", + "0x20", + "0x32d", + "0x1a0", + "0xa0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2a7", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x561", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0" + ] + }, + { + "pc": 1035, + "op": "DUP3", + "gas": 1843225, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0x0", + "0x20", + "0x32d", + "0x1a0", + "0xa0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2a7", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x561", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x411" + ] + }, + { + "pc": 1036, + "op": "PUSH3", + "gas": 1843222, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0x0", + "0x20", + "0x32d", + "0x1a0", + "0xa0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2a7", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x561", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x411", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 1040, + "op": "JUMP", + "gas": 1843219, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0x0", + "0x20", + "0x32d", + "0x1a0", + "0xa0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2a7", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x561", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x411", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x418" + ] + }, + { + "pc": 1048, + "op": "JUMPDEST", + "gas": 1843211, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0x0", + "0x20", + "0x32d", + "0x1a0", + "0xa0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2a7", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x561", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x411", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 1049, + "op": "PUSH1", + "gas": 1843210, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0x0", + "0x20", + "0x32d", + "0x1a0", + "0xa0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2a7", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x561", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x411", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 1051, + "op": "PUSH20", + "gas": 1843207, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0x0", + "0x20", + "0x32d", + "0x1a0", + "0xa0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2a7", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x561", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x411", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0" + ] + }, + { + "pc": 1072, + "op": "DUP3", + "gas": 1843204, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0x0", + "0x20", + "0x32d", + "0x1a0", + "0xa0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2a7", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x561", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x411", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 1073, + "op": "AND", + "gas": 1843201, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0x0", + "0x20", + "0x32d", + "0x1a0", + "0xa0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2a7", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x561", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x411", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 1074, + "op": "SWAP1", + "gas": 1843198, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0x0", + "0x20", + "0x32d", + "0x1a0", + "0xa0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2a7", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x561", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x411", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 1075, + "op": "POP", + "gas": 1843195, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0x0", + "0x20", + "0x32d", + "0x1a0", + "0xa0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2a7", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x561", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x411", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0" + ] + }, + { + "pc": 1076, + "op": "SWAP2", + "gas": 1843193, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0x0", + "0x20", + "0x32d", + "0x1a0", + "0xa0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2a7", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x561", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x411", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 1077, + "op": "SWAP1", + "gas": 1843190, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0x0", + "0x20", + "0x32d", + "0x1a0", + "0xa0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2a7", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x561", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x411" + ] + }, + { + "pc": 1078, + "op": "POP", + "gas": 1843187, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0x0", + "0x20", + "0x32d", + "0x1a0", + "0xa0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2a7", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x561", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x411", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 1079, + "op": "JUMP", + "gas": 1843185, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0x0", + "0x20", + "0x32d", + "0x1a0", + "0xa0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2a7", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x561", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x411" + ] + }, + { + "pc": 1041, + "op": "JUMPDEST", + "gas": 1843177, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0x0", + "0x20", + "0x32d", + "0x1a0", + "0xa0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2a7", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x561", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 1042, + "op": "SWAP1", + "gas": 1843176, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0x0", + "0x20", + "0x32d", + "0x1a0", + "0xa0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2a7", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x561", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 1043, + "op": "POP", + "gas": 1843173, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0x0", + "0x20", + "0x32d", + "0x1a0", + "0xa0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2a7", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x561", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0" + ] + }, + { + "pc": 1044, + "op": "SWAP2", + "gas": 1843171, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0x0", + "0x20", + "0x32d", + "0x1a0", + "0xa0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2a7", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x561", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 1045, + "op": "SWAP1", + "gas": 1843168, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0x0", + "0x20", + "0x32d", + "0x1a0", + "0xa0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2a7", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x561" + ] + }, + { + "pc": 1046, + "op": "POP", + "gas": 1843165, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0x0", + "0x20", + "0x32d", + "0x1a0", + "0xa0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2a7", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x561", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 1047, + "op": "JUMP", + "gas": 1843163, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0x0", + "0x20", + "0x32d", + "0x1a0", + "0xa0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2a7", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x561" + ] + }, + { + "pc": 1377, + "op": "JUMPDEST", + "gas": 1843155, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0x0", + "0x20", + "0x32d", + "0x1a0", + "0xa0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2a7", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 1378, + "op": "DUP2", + "gas": 1843154, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0x0", + "0x20", + "0x32d", + "0x1a0", + "0xa0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2a7", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 1379, + "op": "EQ", + "gas": 1843151, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0x0", + "0x20", + "0x32d", + "0x1a0", + "0xa0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2a7", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 1380, + "op": "PUSH3", + "gas": 1843148, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0x0", + "0x20", + "0x32d", + "0x1a0", + "0xa0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2a7", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1" + ] + }, + { + "pc": 1384, + "op": "JUMPI", + "gas": 1843145, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0x0", + "0x20", + "0x32d", + "0x1a0", + "0xa0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2a7", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x56d" + ] + }, + { + "pc": 1389, + "op": "JUMPDEST", + "gas": 1843135, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0x0", + "0x20", + "0x32d", + "0x1a0", + "0xa0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2a7", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 1390, + "op": "POP", + "gas": 1843134, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0x0", + "0x20", + "0x32d", + "0x1a0", + "0xa0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2a7", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 1391, + "op": "JUMP", + "gas": 1843132, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0x0", + "0x20", + "0x32d", + "0x1a0", + "0xa0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2a7" + ] + }, + { + "pc": 679, + "op": "JUMPDEST", + "gas": 1843124, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0x0", + "0x20", + "0x32d", + "0x1a0", + "0xa0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 680, + "op": "SWAP3", + "gas": 1843123, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0x0", + "0x20", + "0x32d", + "0x1a0", + "0xa0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 681, + "op": "SWAP2", + "gas": 1843120, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0x0", + "0x20", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0xa0", + "0x32d" + ] + }, + { + "pc": 682, + "op": "POP", + "gas": 1843117, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0x0", + "0x20", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x32d", + "0xa0", + "0x1a0" + ] + }, + { + "pc": 683, + "op": "POP", + "gas": 1843115, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0x0", + "0x20", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x32d", + "0xa0" + ] + }, + { + "pc": 684, + "op": "JUMP", + "gas": 1843113, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0x0", + "0x20", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x32d" + ] + }, + { + "pc": 813, + "op": "JUMPDEST", + "gas": 1843105, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0x0", + "0x20", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 814, + "op": "SWAP5", + "gas": 1843104, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0x0", + "0x20", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 815, + "op": "POP", + "gas": 1843101, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0x20", + "0x0" + ] + }, + { + "pc": 816, + "op": "POP", + "gas": 1843099, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0x20" + ] + }, + { + "pc": 817, + "op": "PUSH1", + "gas": 1843097, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 819, + "op": "DUP7", + "gas": 1843094, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0x40" + ] + }, + { + "pc": 820, + "op": "ADD", + "gas": 1843091, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0x40", + "0x80" + ] + }, + { + "pc": 821, + "op": "MLOAD", + "gas": 1843088, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xc0" + ] + }, + { + "pc": 822, + "op": "PUSH8", + "gas": 1843085, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0" + ] + }, + { + "pc": 831, + "op": "DUP2", + "gas": 1843082, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0xffffffffffffffff" + ] + }, + { + "pc": 832, + "op": "GT", + "gas": 1843079, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0xffffffffffffffff", + "0xa0" + ] + }, + { + "pc": 833, + "op": "ISZERO", + "gas": 1843076, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x0" + ] + }, + { + "pc": 834, + "op": "PUSH3", + "gas": 1843073, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x1" + ] + }, + { + "pc": 838, + "op": "JUMPI", + "gas": 1843070, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x1", + "0x34b" + ] + }, + { + "pc": 843, + "op": "JUMPDEST", + "gas": 1843060, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0" + ] + }, + { + "pc": 844, + "op": "PUSH3", + "gas": 1843059, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0" + ] + }, + { + "pc": 848, + "op": "DUP9", + "gas": 1843056, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359" + ] + }, + { + "pc": 849, + "op": "DUP3", + "gas": 1843053, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0" + ] + }, + { + "pc": 850, + "op": "DUP10", + "gas": 1843050, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0xa0" + ] + }, + { + "pc": 851, + "op": "ADD", + "gas": 1843047, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0xa0", + "0x80" + ] + }, + { + "pc": 852, + "op": "PUSH3", + "gas": 1843044, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120" + ] + }, + { + "pc": 856, + "op": "JUMP", + "gas": 1843041, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x2ad" + ] + }, + { + "pc": 685, + "op": "JUMPDEST", + "gas": 1843033, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120" + ] + }, + { + "pc": 686, + "op": "PUSH1", + "gas": 1843032, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120" + ] + }, + { + "pc": 688, + "op": "DUP3", + "gas": 1843029, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0" + ] + }, + { + "pc": 689, + "op": "PUSH1", + "gas": 1843026, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x1a0" + ] + }, + { + "pc": 691, + "op": "DUP4", + "gas": 1843023, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x1a0", + "0x1f" + ] + }, + { + "pc": 692, + "op": "ADD", + "gas": 1843020, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x1a0", + "0x1f", + "0x120" + ] + }, + { + "pc": 693, + "op": "SLT", + "gas": 1843017, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x1a0", + "0x13f" + ] + }, + { + "pc": 694, + "op": "PUSH3", + "gas": 1843014, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x1" + ] + }, + { + "pc": 698, + "op": "JUMPI", + "gas": 1843011, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x1", + "0x2bf" + ] + }, + { + "pc": 703, + "op": "JUMPDEST", + "gas": 1843001, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0" + ] + }, + { + "pc": 704, + "op": "DUP2", + "gas": 1843000, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0" + ] + }, + { + "pc": 705, + "op": "MLOAD", + "gas": 1842997, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x120" + ] + }, + { + "pc": 706, + "op": "PUSH3", + "gas": 1842994, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9" + ] + }, + { + "pc": 710, + "op": "DUP5", + "gas": 1842991, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1" + ] + }, + { + "pc": 711, + "op": "DUP3", + "gas": 1842988, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0" + ] + }, + { + "pc": 712, + "op": "PUSH1", + "gas": 1842985, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9" + ] + }, + { + "pc": 714, + "op": "DUP7", + "gas": 1842982, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x20" + ] + }, + { + "pc": 715, + "op": "ADD", + "gas": 1842979, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x20", + "0x120" + ] + }, + { + "pc": 716, + "op": "PUSH3", + "gas": 1842976, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140" + ] + }, + { + "pc": 720, + "op": "JUMP", + "gas": 1842973, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x251" + ] + }, + { + "pc": 593, + "op": "JUMPDEST", + "gas": 1842965, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140" + ] + }, + { + "pc": 594, + "op": "PUSH1", + "gas": 1842964, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140" + ] + }, + { + "pc": 596, + "op": "PUSH3", + "gas": 1842961, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x0" + ] + }, + { + "pc": 600, + "op": "PUSH3", + "gas": 1842958, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x0", + "0x268" + ] + }, + { + "pc": 604, + "op": "DUP5", + "gas": 1842955, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x0", + "0x268", + "0x262" + ] + }, + { + "pc": 605, + "op": "PUSH3", + "gas": 1842952, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x0", + "0x268", + "0x262", + "0x9" + ] + }, + { + "pc": 609, + "op": "JUMP", + "gas": 1842949, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x0", + "0x268", + "0x262", + "0x9", + "0x3ce" + ] + }, + { + "pc": 974, + "op": "JUMPDEST", + "gas": 1842941, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x0", + "0x268", + "0x262", + "0x9" + ] + }, + { + "pc": 975, + "op": "PUSH1", + "gas": 1842940, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x0", + "0x268", + "0x262", + "0x9" + ] + }, + { + "pc": 977, + "op": "PUSH8", + "gas": 1842937, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x0", + "0x268", + "0x262", + "0x9", + "0x0" + ] + }, + { + "pc": 986, + "op": "DUP3", + "gas": 1842934, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x0", + "0x268", + "0x262", + "0x9", + "0x0", + "0xffffffffffffffff" + ] + }, + { + "pc": 987, + "op": "GT", + "gas": 1842931, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x0", + "0x268", + "0x262", + "0x9", + "0x0", + "0xffffffffffffffff", + "0x9" + ] + }, + { + "pc": 988, + "op": "ISZERO", + "gas": 1842928, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x0", + "0x268", + "0x262", + "0x9", + "0x0", + "0x0" + ] + }, + { + "pc": 989, + "op": "PUSH3", + "gas": 1842925, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x0", + "0x268", + "0x262", + "0x9", + "0x0", + "0x1" + ] + }, + { + "pc": 993, + "op": "JUMPI", + "gas": 1842922, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x0", + "0x268", + "0x262", + "0x9", + "0x0", + "0x1", + "0x3ec" + ] + }, + { + "pc": 1004, + "op": "JUMPDEST", + "gas": 1842912, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x0", + "0x268", + "0x262", + "0x9", + "0x0" + ] + }, + { + "pc": 1005, + "op": "PUSH3", + "gas": 1842911, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x0", + "0x268", + "0x262", + "0x9", + "0x0" + ] + }, + { + "pc": 1009, + "op": "DUP3", + "gas": 1842908, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x0", + "0x268", + "0x262", + "0x9", + "0x0", + "0x3f7" + ] + }, + { + "pc": 1010, + "op": "PUSH3", + "gas": 1842905, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x0", + "0x268", + "0x262", + "0x9", + "0x0", + "0x3f7", + "0x9" + ] + }, + { + "pc": 1014, + "op": "JUMP", + "gas": 1842902, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x0", + "0x268", + "0x262", + "0x9", + "0x0", + "0x3f7", + "0x9", + "0x545" + ] + }, + { + "pc": 1349, + "op": "JUMPDEST", + "gas": 1842894, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x0", + "0x268", + "0x262", + "0x9", + "0x0", + "0x3f7", + "0x9" + ] + }, + { + "pc": 1350, + "op": "PUSH1", + "gas": 1842893, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x0", + "0x268", + "0x262", + "0x9", + "0x0", + "0x3f7", + "0x9" + ] + }, + { + "pc": 1352, + "op": "PUSH1", + "gas": 1842890, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x0", + "0x268", + "0x262", + "0x9", + "0x0", + "0x3f7", + "0x9", + "0x0" + ] + }, + { + "pc": 1354, + "op": "NOT", + "gas": 1842887, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x0", + "0x268", + "0x262", + "0x9", + "0x0", + "0x3f7", + "0x9", + "0x0", + "0x1f" + ] + }, + { + "pc": 1355, + "op": "PUSH1", + "gas": 1842884, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x0", + "0x268", + "0x262", + "0x9", + "0x0", + "0x3f7", + "0x9", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0" + ] + }, + { + "pc": 1357, + "op": "DUP4", + "gas": 1842881, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x0", + "0x268", + "0x262", + "0x9", + "0x0", + "0x3f7", + "0x9", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", + "0x1f" + ] + }, + { + "pc": 1358, + "op": "ADD", + "gas": 1842878, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x0", + "0x268", + "0x262", + "0x9", + "0x0", + "0x3f7", + "0x9", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", + "0x1f", + "0x9" + ] + }, + { + "pc": 1359, + "op": "AND", + "gas": 1842875, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x0", + "0x268", + "0x262", + "0x9", + "0x0", + "0x3f7", + "0x9", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", + "0x28" + ] + }, + { + "pc": 1360, + "op": "SWAP1", + "gas": 1842872, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x0", + "0x268", + "0x262", + "0x9", + "0x0", + "0x3f7", + "0x9", + "0x0", + "0x20" + ] + }, + { + "pc": 1361, + "op": "POP", + "gas": 1842869, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x0", + "0x268", + "0x262", + "0x9", + "0x0", + "0x3f7", + "0x9", + "0x20", + "0x0" + ] + }, + { + "pc": 1362, + "op": "SWAP2", + "gas": 1842867, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x0", + "0x268", + "0x262", + "0x9", + "0x0", + "0x3f7", + "0x9", + "0x20" + ] + }, + { + "pc": 1363, + "op": "SWAP1", + "gas": 1842864, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x0", + "0x268", + "0x262", + "0x9", + "0x0", + "0x20", + "0x9", + "0x3f7" + ] + }, + { + "pc": 1364, + "op": "POP", + "gas": 1842861, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x0", + "0x268", + "0x262", + "0x9", + "0x0", + "0x20", + "0x3f7", + "0x9" + ] + }, + { + "pc": 1365, + "op": "JUMP", + "gas": 1842859, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x0", + "0x268", + "0x262", + "0x9", + "0x0", + "0x20", + "0x3f7" + ] + }, + { + "pc": 1015, + "op": "JUMPDEST", + "gas": 1842851, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x0", + "0x268", + "0x262", + "0x9", + "0x0", + "0x20" + ] + }, + { + "pc": 1016, + "op": "SWAP1", + "gas": 1842850, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x0", + "0x268", + "0x262", + "0x9", + "0x0", + "0x20" + ] + }, + { + "pc": 1017, + "op": "POP", + "gas": 1842847, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x0", + "0x268", + "0x262", + "0x9", + "0x20", + "0x0" + ] + }, + { + "pc": 1018, + "op": "PUSH1", + "gas": 1842845, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x0", + "0x268", + "0x262", + "0x9", + "0x20" + ] + }, + { + "pc": 1020, + "op": "DUP2", + "gas": 1842842, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x0", + "0x268", + "0x262", + "0x9", + "0x20", + "0x20" + ] + }, + { + "pc": 1021, + "op": "ADD", + "gas": 1842839, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x0", + "0x268", + "0x262", + "0x9", + "0x20", + "0x20", + "0x20" + ] + }, + { + "pc": 1022, + "op": "SWAP1", + "gas": 1842836, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x0", + "0x268", + "0x262", + "0x9", + "0x20", + "0x40" + ] + }, + { + "pc": 1023, + "op": "POP", + "gas": 1842833, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x0", + "0x268", + "0x262", + "0x9", + "0x40", + "0x20" + ] + }, + { + "pc": 1024, + "op": "SWAP2", + "gas": 1842831, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x0", + "0x268", + "0x262", + "0x9", + "0x40" + ] + }, + { + "pc": 1025, + "op": "SWAP1", + "gas": 1842828, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x0", + "0x268", + "0x40", + "0x9", + "0x262" + ] + }, + { + "pc": 1026, + "op": "POP", + "gas": 1842825, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x0", + "0x268", + "0x40", + "0x262", + "0x9" + ] + }, + { + "pc": 1027, + "op": "JUMP", + "gas": 1842823, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x0", + "0x268", + "0x40", + "0x262" + ] + }, + { + "pc": 610, + "op": "JUMPDEST", + "gas": 1842815, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x0", + "0x268", + "0x40" + ] + }, + { + "pc": 611, + "op": "PUSH3", + "gas": 1842814, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x0", + "0x268", + "0x40" + ] + }, + { + "pc": 615, + "op": "JUMP", + "gas": 1842811, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x0", + "0x268", + "0x40", + "0x3a5" + ] + }, + { + "pc": 933, + "op": "JUMPDEST", + "gas": 1842803, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x0", + "0x268", + "0x40" + ] + }, + { + "pc": 934, + "op": "PUSH1", + "gas": 1842802, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x0", + "0x268", + "0x40" + ] + }, + { + "pc": 936, + "op": "PUSH3", + "gas": 1842799, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x0", + "0x268", + "0x40", + "0x0" + ] + }, + { + "pc": 940, + "op": "PUSH3", + "gas": 1842796, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x0", + "0x268", + "0x40", + "0x0", + "0x3b1" + ] + }, + { + "pc": 944, + "op": "JUMP", + "gas": 1842793, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x0", + "0x268", + "0x40", + "0x0", + "0x3b1", + "0x3c4" + ] + }, + { + "pc": 964, + "op": "JUMPDEST", + "gas": 1842785, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x0", + "0x268", + "0x40", + "0x0", + "0x3b1" + ] + }, + { + "pc": 965, + "op": "PUSH1", + "gas": 1842784, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x0", + "0x268", + "0x40", + "0x0", + "0x3b1" + ] + }, + { + "pc": 967, + "op": "PUSH1", + "gas": 1842781, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x0", + "0x268", + "0x40", + "0x0", + "0x3b1", + "0x0" + ] + }, + { + "pc": 969, + "op": "MLOAD", + "gas": 1842778, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x0", + "0x268", + "0x40", + "0x0", + "0x3b1", + "0x0", + "0x40" + ] + }, + { + "pc": 970, + "op": "SWAP1", + "gas": 1842775, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x0", + "0x268", + "0x40", + "0x0", + "0x3b1", + "0x0", + "0x1a0" + ] + }, + { + "pc": 971, + "op": "POP", + "gas": 1842772, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x0", + "0x268", + "0x40", + "0x0", + "0x3b1", + "0x1a0", + "0x0" + ] + }, + { + "pc": 972, + "op": "SWAP1", + "gas": 1842770, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x0", + "0x268", + "0x40", + "0x0", + "0x3b1", + "0x1a0" + ] + }, + { + "pc": 973, + "op": "JUMP", + "gas": 1842767, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x0", + "0x268", + "0x40", + "0x0", + "0x1a0", + "0x3b1" + ] + }, + { + "pc": 945, + "op": "JUMPDEST", + "gas": 1842759, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x0", + "0x268", + "0x40", + "0x0", + "0x1a0" + ] + }, + { + "pc": 946, + "op": "SWAP1", + "gas": 1842758, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x0", + "0x268", + "0x40", + "0x0", + "0x1a0" + ] + }, + { + "pc": 947, + "op": "POP", + "gas": 1842755, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x0", + "0x268", + "0x40", + "0x1a0", + "0x0" + ] + }, + { + "pc": 948, + "op": "PUSH3", + "gas": 1842753, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x0", + "0x268", + "0x40", + "0x1a0" + ] + }, + { + "pc": 952, + "op": "DUP3", + "gas": 1842750, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x0", + "0x268", + "0x40", + "0x1a0", + "0x3bf" + ] + }, + { + "pc": 953, + "op": "DUP3", + "gas": 1842747, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x0", + "0x268", + "0x40", + "0x1a0", + "0x3bf", + "0x40" + ] + }, + { + "pc": 954, + "op": "PUSH3", + "gas": 1842744, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x0", + "0x268", + "0x40", + "0x1a0", + "0x3bf", + "0x40", + "0x1a0" + ] + }, + { + "pc": 958, + "op": "JUMP", + "gas": 1842741, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x0", + "0x268", + "0x40", + "0x1a0", + "0x3bf", + "0x40", + "0x1a0", + "0x4b1" + ] + }, + { + "pc": 1201, + "op": "JUMPDEST", + "gas": 1842733, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x0", + "0x268", + "0x40", + "0x1a0", + "0x3bf", + "0x40", + "0x1a0" + ] + }, + { + "pc": 1202, + "op": "PUSH3", + "gas": 1842732, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x0", + "0x268", + "0x40", + "0x1a0", + "0x3bf", + "0x40", + "0x1a0" + ] + }, + { + "pc": 1206, + "op": "DUP3", + "gas": 1842729, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x0", + "0x268", + "0x40", + "0x1a0", + "0x3bf", + "0x40", + "0x1a0", + "0x4bc" + ] + }, + { + "pc": 1207, + "op": "PUSH3", + "gas": 1842726, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x0", + "0x268", + "0x40", + "0x1a0", + "0x3bf", + "0x40", + "0x1a0", + "0x4bc", + "0x40" + ] + }, + { + "pc": 1211, + "op": "JUMP", + "gas": 1842723, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x0", + "0x268", + "0x40", + "0x1a0", + "0x3bf", + "0x40", + "0x1a0", + "0x4bc", + "0x40", + "0x545" + ] + }, + { + "pc": 1349, + "op": "JUMPDEST", + "gas": 1842715, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x0", + "0x268", + "0x40", + "0x1a0", + "0x3bf", + "0x40", + "0x1a0", + "0x4bc", + "0x40" + ] + }, + { + "pc": 1350, + "op": "PUSH1", + "gas": 1842714, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x0", + "0x268", + "0x40", + "0x1a0", + "0x3bf", + "0x40", + "0x1a0", + "0x4bc", + "0x40" + ] + }, + { + "pc": 1352, + "op": "PUSH1", + "gas": 1842711, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x0", + "0x268", + "0x40", + "0x1a0", + "0x3bf", + "0x40", + "0x1a0", + "0x4bc", + "0x40", + "0x0" + ] + }, + { + "pc": 1354, + "op": "NOT", + "gas": 1842708, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x0", + "0x268", + "0x40", + "0x1a0", + "0x3bf", + "0x40", + "0x1a0", + "0x4bc", + "0x40", + "0x0", + "0x1f" + ] + }, + { + "pc": 1355, + "op": "PUSH1", + "gas": 1842705, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x0", + "0x268", + "0x40", + "0x1a0", + "0x3bf", + "0x40", + "0x1a0", + "0x4bc", + "0x40", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0" + ] + }, + { + "pc": 1357, + "op": "DUP4", + "gas": 1842702, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x0", + "0x268", + "0x40", + "0x1a0", + "0x3bf", + "0x40", + "0x1a0", + "0x4bc", + "0x40", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", + "0x1f" + ] + }, + { + "pc": 1358, + "op": "ADD", + "gas": 1842699, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x0", + "0x268", + "0x40", + "0x1a0", + "0x3bf", + "0x40", + "0x1a0", + "0x4bc", + "0x40", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", + "0x1f", + "0x40" + ] + }, + { + "pc": 1359, + "op": "AND", + "gas": 1842696, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x0", + "0x268", + "0x40", + "0x1a0", + "0x3bf", + "0x40", + "0x1a0", + "0x4bc", + "0x40", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", + "0x5f" + ] + }, + { + "pc": 1360, + "op": "SWAP1", + "gas": 1842693, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x0", + "0x268", + "0x40", + "0x1a0", + "0x3bf", + "0x40", + "0x1a0", + "0x4bc", + "0x40", + "0x0", + "0x40" + ] + }, + { + "pc": 1361, + "op": "POP", + "gas": 1842690, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x0", + "0x268", + "0x40", + "0x1a0", + "0x3bf", + "0x40", + "0x1a0", + "0x4bc", + "0x40", + "0x40", + "0x0" + ] + }, + { + "pc": 1362, + "op": "SWAP2", + "gas": 1842688, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x0", + "0x268", + "0x40", + "0x1a0", + "0x3bf", + "0x40", + "0x1a0", + "0x4bc", + "0x40", + "0x40" + ] + }, + { + "pc": 1363, + "op": "SWAP1", + "gas": 1842685, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x0", + "0x268", + "0x40", + "0x1a0", + "0x3bf", + "0x40", + "0x1a0", + "0x40", + "0x40", + "0x4bc" + ] + }, + { + "pc": 1364, + "op": "POP", + "gas": 1842682, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x0", + "0x268", + "0x40", + "0x1a0", + "0x3bf", + "0x40", + "0x1a0", + "0x40", + "0x4bc", + "0x40" + ] + }, + { + "pc": 1365, + "op": "JUMP", + "gas": 1842680, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x0", + "0x268", + "0x40", + "0x1a0", + "0x3bf", + "0x40", + "0x1a0", + "0x40", + "0x4bc" + ] + }, + { + "pc": 1212, + "op": "JUMPDEST", + "gas": 1842672, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x0", + "0x268", + "0x40", + "0x1a0", + "0x3bf", + "0x40", + "0x1a0", + "0x40" + ] + }, + { + "pc": 1213, + "op": "DUP2", + "gas": 1842671, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x0", + "0x268", + "0x40", + "0x1a0", + "0x3bf", + "0x40", + "0x1a0", + "0x40" + ] + }, + { + "pc": 1214, + "op": "ADD", + "gas": 1842668, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x0", + "0x268", + "0x40", + "0x1a0", + "0x3bf", + "0x40", + "0x1a0", + "0x40", + "0x1a0" + ] + }, + { + "pc": 1215, + "op": "DUP2", + "gas": 1842665, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x0", + "0x268", + "0x40", + "0x1a0", + "0x3bf", + "0x40", + "0x1a0", + "0x1e0" + ] + }, + { + "pc": 1216, + "op": "DUP2", + "gas": 1842662, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x0", + "0x268", + "0x40", + "0x1a0", + "0x3bf", + "0x40", + "0x1a0", + "0x1e0", + "0x1a0" + ] + }, + { + "pc": 1217, + "op": "LT", + "gas": 1842659, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x0", + "0x268", + "0x40", + "0x1a0", + "0x3bf", + "0x40", + "0x1a0", + "0x1e0", + "0x1a0", + "0x1e0" + ] + }, + { + "pc": 1218, + "op": "PUSH8", + "gas": 1842656, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x0", + "0x268", + "0x40", + "0x1a0", + "0x3bf", + "0x40", + "0x1a0", + "0x1e0", + "0x0" + ] + }, + { + "pc": 1227, + "op": "DUP3", + "gas": 1842653, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x0", + "0x268", + "0x40", + "0x1a0", + "0x3bf", + "0x40", + "0x1a0", + "0x1e0", + "0x0", + "0xffffffffffffffff" + ] + }, + { + "pc": 1228, + "op": "GT", + "gas": 1842650, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x0", + "0x268", + "0x40", + "0x1a0", + "0x3bf", + "0x40", + "0x1a0", + "0x1e0", + "0x0", + "0xffffffffffffffff", + "0x1e0" + ] + }, + { + "pc": 1229, + "op": "OR", + "gas": 1842647, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x0", + "0x268", + "0x40", + "0x1a0", + "0x3bf", + "0x40", + "0x1a0", + "0x1e0", + "0x0", + "0x0" + ] + }, + { + "pc": 1230, + "op": "ISZERO", + "gas": 1842644, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x0", + "0x268", + "0x40", + "0x1a0", + "0x3bf", + "0x40", + "0x1a0", + "0x1e0", + "0x0" + ] + }, + { + "pc": 1231, + "op": "PUSH3", + "gas": 1842641, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x0", + "0x268", + "0x40", + "0x1a0", + "0x3bf", + "0x40", + "0x1a0", + "0x1e0", + "0x1" + ] + }, + { + "pc": 1235, + "op": "JUMPI", + "gas": 1842638, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x0", + "0x268", + "0x40", + "0x1a0", + "0x3bf", + "0x40", + "0x1a0", + "0x1e0", + "0x1", + "0x4de" + ] + }, + { + "pc": 1246, + "op": "JUMPDEST", + "gas": 1842628, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x0", + "0x268", + "0x40", + "0x1a0", + "0x3bf", + "0x40", + "0x1a0", + "0x1e0" + ] + }, + { + "pc": 1247, + "op": "DUP1", + "gas": 1842627, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x0", + "0x268", + "0x40", + "0x1a0", + "0x3bf", + "0x40", + "0x1a0", + "0x1e0" + ] + }, + { + "pc": 1248, + "op": "PUSH1", + "gas": 1842624, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x0", + "0x268", + "0x40", + "0x1a0", + "0x3bf", + "0x40", + "0x1a0", + "0x1e0", + "0x1e0" + ] + }, + { + "pc": 1250, + "op": "MSTORE", + "gas": 1842621, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x0", + "0x268", + "0x40", + "0x1a0", + "0x3bf", + "0x40", + "0x1a0", + "0x1e0", + "0x1e0", + "0x40" + ] + }, + { + "pc": 1251, + "op": "POP", + "gas": 1842618, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x0", + "0x268", + "0x40", + "0x1a0", + "0x3bf", + "0x40", + "0x1a0", + "0x1e0" + ] + }, + { + "pc": 1252, + "op": "POP", + "gas": 1842616, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x0", + "0x268", + "0x40", + "0x1a0", + "0x3bf", + "0x40", + "0x1a0" + ] + }, + { + "pc": 1253, + "op": "POP", + "gas": 1842614, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x0", + "0x268", + "0x40", + "0x1a0", + "0x3bf", + "0x40" + ] + }, + { + "pc": 1254, + "op": "JUMP", + "gas": 1842612, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x0", + "0x268", + "0x40", + "0x1a0", + "0x3bf" + ] + }, + { + "pc": 959, + "op": "JUMPDEST", + "gas": 1842604, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x0", + "0x268", + "0x40", + "0x1a0" + ] + }, + { + "pc": 960, + "op": "SWAP2", + "gas": 1842603, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x0", + "0x268", + "0x40", + "0x1a0" + ] + }, + { + "pc": 961, + "op": "SWAP1", + "gas": 1842600, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x0", + "0x1a0", + "0x40", + "0x268" + ] + }, + { + "pc": 962, + "op": "POP", + "gas": 1842597, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x0", + "0x1a0", + "0x268", + "0x40" + ] + }, + { + "pc": 963, + "op": "JUMP", + "gas": 1842595, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x0", + "0x1a0", + "0x268" + ] + }, + { + "pc": 616, + "op": "JUMPDEST", + "gas": 1842587, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x0", + "0x1a0" + ] + }, + { + "pc": 617, + "op": "SWAP1", + "gas": 1842586, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x0", + "0x1a0" + ] + }, + { + "pc": 618, + "op": "POP", + "gas": 1842583, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x1a0", + "0x0" + ] + }, + { + "pc": 619, + "op": "DUP3", + "gas": 1842581, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x1a0" + ] + }, + { + "pc": 620, + "op": "DUP2", + "gas": 1842578, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x1a0", + "0x9" + ] + }, + { + "pc": 621, + "op": "MSTORE", + "gas": 1842575, + "gasCost": 6, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x1a0", + "0x9", + "0x1a0" + ] + }, + { + "pc": 622, + "op": "PUSH1", + "gas": 1842569, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x1a0" + ] + }, + { + "pc": 624, + "op": "DUP2", + "gas": 1842566, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x1a0", + "0x20" + ] + }, + { + "pc": 625, + "op": "ADD", + "gas": 1842563, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x1a0", + "0x20", + "0x1a0" + ] + }, + { + "pc": 626, + "op": "DUP5", + "gas": 1842560, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x1a0", + "0x1c0" + ] + }, + { + "pc": 627, + "op": "DUP5", + "gas": 1842557, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x1a0", + "0x1c0", + "0x1a0" + ] + }, + { + "pc": 628, + "op": "DUP5", + "gas": 1842554, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x1a0", + "0x1c0", + "0x1a0", + "0x9" + ] + }, + { + "pc": 629, + "op": "ADD", + "gas": 1842551, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x1a0", + "0x1c0", + "0x1a0", + "0x9", + "0x140" + ] + }, + { + "pc": 630, + "op": "GT", + "gas": 1842548, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x1a0", + "0x1c0", + "0x1a0", + "0x149" + ] + }, + { + "pc": 631, + "op": "ISZERO", + "gas": 1842545, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x1a0", + "0x1c0", + "0x0" + ] + }, + { + "pc": 632, + "op": "PUSH3", + "gas": 1842542, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x1a0", + "0x1c0", + "0x1" + ] + }, + { + "pc": 636, + "op": "JUMPI", + "gas": 1842539, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x1a0", + "0x1c0", + "0x1", + "0x281" + ] + }, + { + "pc": 641, + "op": "JUMPDEST", + "gas": 1842529, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x1a0", + "0x1c0" + ] + }, + { + "pc": 642, + "op": "PUSH3", + "gas": 1842528, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x1a0", + "0x1c0" + ] + }, + { + "pc": 646, + "op": "DUP5", + "gas": 1842525, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x1a0", + "0x1c0", + "0x28e" + ] + }, + { + "pc": 647, + "op": "DUP3", + "gas": 1842522, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x1a0", + "0x1c0", + "0x28e", + "0x9" + ] + }, + { + "pc": 648, + "op": "DUP6", + "gas": 1842519, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x1a0", + "0x1c0", + "0x28e", + "0x9", + "0x1c0" + ] + }, + { + "pc": 649, + "op": "PUSH3", + "gas": 1842516, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x1a0", + "0x1c0", + "0x28e", + "0x9", + "0x1c0", + "0x140" + ] + }, + { + "pc": 653, + "op": "JUMP", + "gas": 1842513, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x1a0", + "0x1c0", + "0x28e", + "0x9", + "0x1c0", + "0x140", + "0x445" + ] + }, + { + "pc": 1093, + "op": "JUMPDEST", + "gas": 1842505, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x1a0", + "0x1c0", + "0x28e", + "0x9", + "0x1c0", + "0x140" + ] + }, + { + "pc": 1094, + "op": "PUSH1", + "gas": 1842504, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x1a0", + "0x1c0", + "0x28e", + "0x9", + "0x1c0", + "0x140" + ] + }, + { + "pc": 1096, + "op": "JUMPDEST", + "gas": 1842501, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x1a0", + "0x1c0", + "0x28e", + "0x9", + "0x1c0", + "0x140", + "0x0" + ] + }, + { + "pc": 1097, + "op": "DUP4", + "gas": 1842500, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x1a0", + "0x1c0", + "0x28e", + "0x9", + "0x1c0", + "0x140", + "0x0" + ] + }, + { + "pc": 1098, + "op": "DUP2", + "gas": 1842497, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x1a0", + "0x1c0", + "0x28e", + "0x9", + "0x1c0", + "0x140", + "0x0", + "0x9" + ] + }, + { + "pc": 1099, + "op": "LT", + "gas": 1842494, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x1a0", + "0x1c0", + "0x28e", + "0x9", + "0x1c0", + "0x140", + "0x0", + "0x9", + "0x0" + ] + }, + { + "pc": 1100, + "op": "ISZERO", + "gas": 1842491, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x1a0", + "0x1c0", + "0x28e", + "0x9", + "0x1c0", + "0x140", + "0x0", + "0x1" + ] + }, + { + "pc": 1101, + "op": "PUSH3", + "gas": 1842488, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x1a0", + "0x1c0", + "0x28e", + "0x9", + "0x1c0", + "0x140", + "0x0", + "0x0" + ] + }, + { + "pc": 1105, + "op": "JUMPI", + "gas": 1842485, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x1a0", + "0x1c0", + "0x28e", + "0x9", + "0x1c0", + "0x140", + "0x0", + "0x0", + "0x465" + ] + }, + { + "pc": 1106, + "op": "DUP1", + "gas": 1842475, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x1a0", + "0x1c0", + "0x28e", + "0x9", + "0x1c0", + "0x140", + "0x0" + ] + }, + { + "pc": 1107, + "op": "DUP3", + "gas": 1842472, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x1a0", + "0x1c0", + "0x28e", + "0x9", + "0x1c0", + "0x140", + "0x0", + "0x0" + ] + }, + { + "pc": 1108, + "op": "ADD", + "gas": 1842469, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x1a0", + "0x1c0", + "0x28e", + "0x9", + "0x1c0", + "0x140", + "0x0", + "0x0", + "0x140" + ] + }, + { + "pc": 1109, + "op": "MLOAD", + "gas": 1842466, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x1a0", + "0x1c0", + "0x28e", + "0x9", + "0x1c0", + "0x140", + "0x0", + "0x140" + ] + }, + { + "pc": 1110, + "op": "DUP2", + "gas": 1842463, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x1a0", + "0x1c0", + "0x28e", + "0x9", + "0x1c0", + "0x140", + "0x0", + "0x5553445420636f696e0000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 1111, + "op": "DUP5", + "gas": 1842460, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x1a0", + "0x1c0", + "0x28e", + "0x9", + "0x1c0", + "0x140", + "0x0", + "0x5553445420636f696e0000000000000000000000000000000000000000000000", + "0x0" + ] + }, + { + "pc": 1112, + "op": "ADD", + "gas": 1842457, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x1a0", + "0x1c0", + "0x28e", + "0x9", + "0x1c0", + "0x140", + "0x0", + "0x5553445420636f696e0000000000000000000000000000000000000000000000", + "0x0", + "0x1c0" + ] + }, + { + "pc": 1113, + "op": "MSTORE", + "gas": 1842454, + "gasCost": 6, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x1a0", + "0x1c0", + "0x28e", + "0x9", + "0x1c0", + "0x140", + "0x0", + "0x5553445420636f696e0000000000000000000000000000000000000000000000", + "0x1c0" + ] + }, + { + "pc": 1114, + "op": "PUSH1", + "gas": 1842448, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x1a0", + "0x1c0", + "0x28e", + "0x9", + "0x1c0", + "0x140", + "0x0" + ] + }, + { + "pc": 1116, + "op": "DUP2", + "gas": 1842445, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x1a0", + "0x1c0", + "0x28e", + "0x9", + "0x1c0", + "0x140", + "0x0", + "0x20" + ] + }, + { + "pc": 1117, + "op": "ADD", + "gas": 1842442, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x1a0", + "0x1c0", + "0x28e", + "0x9", + "0x1c0", + "0x140", + "0x0", + "0x20", + "0x0" + ] + }, + { + "pc": 1118, + "op": "SWAP1", + "gas": 1842439, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x1a0", + "0x1c0", + "0x28e", + "0x9", + "0x1c0", + "0x140", + "0x0", + "0x20" + ] + }, + { + "pc": 1119, + "op": "POP", + "gas": 1842436, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x1a0", + "0x1c0", + "0x28e", + "0x9", + "0x1c0", + "0x140", + "0x20", + "0x0" + ] + }, + { + "pc": 1120, + "op": "PUSH3", + "gas": 1842434, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x1a0", + "0x1c0", + "0x28e", + "0x9", + "0x1c0", + "0x140", + "0x20" + ] + }, + { + "pc": 1124, + "op": "JUMP", + "gas": 1842431, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x1a0", + "0x1c0", + "0x28e", + "0x9", + "0x1c0", + "0x140", + "0x20", + "0x448" + ] + }, + { + "pc": 1096, + "op": "JUMPDEST", + "gas": 1842423, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x1a0", + "0x1c0", + "0x28e", + "0x9", + "0x1c0", + "0x140", + "0x20" + ] + }, + { + "pc": 1097, + "op": "DUP4", + "gas": 1842422, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x1a0", + "0x1c0", + "0x28e", + "0x9", + "0x1c0", + "0x140", + "0x20" + ] + }, + { + "pc": 1098, + "op": "DUP2", + "gas": 1842419, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x1a0", + "0x1c0", + "0x28e", + "0x9", + "0x1c0", + "0x140", + "0x20", + "0x9" + ] + }, + { + "pc": 1099, + "op": "LT", + "gas": 1842416, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x1a0", + "0x1c0", + "0x28e", + "0x9", + "0x1c0", + "0x140", + "0x20", + "0x9", + "0x20" + ] + }, + { + "pc": 1100, + "op": "ISZERO", + "gas": 1842413, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x1a0", + "0x1c0", + "0x28e", + "0x9", + "0x1c0", + "0x140", + "0x20", + "0x0" + ] + }, + { + "pc": 1101, + "op": "PUSH3", + "gas": 1842410, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x1a0", + "0x1c0", + "0x28e", + "0x9", + "0x1c0", + "0x140", + "0x20", + "0x1" + ] + }, + { + "pc": 1105, + "op": "JUMPI", + "gas": 1842407, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x1a0", + "0x1c0", + "0x28e", + "0x9", + "0x1c0", + "0x140", + "0x20", + "0x1", + "0x465" + ] + }, + { + "pc": 1125, + "op": "JUMPDEST", + "gas": 1842397, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x1a0", + "0x1c0", + "0x28e", + "0x9", + "0x1c0", + "0x140", + "0x20" + ] + }, + { + "pc": 1126, + "op": "DUP4", + "gas": 1842396, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x1a0", + "0x1c0", + "0x28e", + "0x9", + "0x1c0", + "0x140", + "0x20" + ] + }, + { + "pc": 1127, + "op": "DUP2", + "gas": 1842393, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x1a0", + "0x1c0", + "0x28e", + "0x9", + "0x1c0", + "0x140", + "0x20", + "0x9" + ] + }, + { + "pc": 1128, + "op": "GT", + "gas": 1842390, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x1a0", + "0x1c0", + "0x28e", + "0x9", + "0x1c0", + "0x140", + "0x20", + "0x9", + "0x20" + ] + }, + { + "pc": 1129, + "op": "ISZERO", + "gas": 1842387, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x1a0", + "0x1c0", + "0x28e", + "0x9", + "0x1c0", + "0x140", + "0x20", + "0x1" + ] + }, + { + "pc": 1130, + "op": "PUSH3", + "gas": 1842384, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x1a0", + "0x1c0", + "0x28e", + "0x9", + "0x1c0", + "0x140", + "0x20", + "0x0" + ] + }, + { + "pc": 1134, + "op": "JUMPI", + "gas": 1842381, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x1a0", + "0x1c0", + "0x28e", + "0x9", + "0x1c0", + "0x140", + "0x20", + "0x0", + "0x475" + ] + }, + { + "pc": 1135, + "op": "PUSH1", + "gas": 1842371, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x1a0", + "0x1c0", + "0x28e", + "0x9", + "0x1c0", + "0x140", + "0x20" + ] + }, + { + "pc": 1137, + "op": "DUP5", + "gas": 1842368, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x1a0", + "0x1c0", + "0x28e", + "0x9", + "0x1c0", + "0x140", + "0x20", + "0x0" + ] + }, + { + "pc": 1138, + "op": "DUP5", + "gas": 1842365, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x1a0", + "0x1c0", + "0x28e", + "0x9", + "0x1c0", + "0x140", + "0x20", + "0x0", + "0x9" + ] + }, + { + "pc": 1139, + "op": "ADD", + "gas": 1842362, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x1a0", + "0x1c0", + "0x28e", + "0x9", + "0x1c0", + "0x140", + "0x20", + "0x0", + "0x9", + "0x1c0" + ] + }, + { + "pc": 1140, + "op": "MSTORE", + "gas": 1842359, + "gasCost": 6, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x1a0", + "0x1c0", + "0x28e", + "0x9", + "0x1c0", + "0x140", + "0x20", + "0x0", + "0x1c9" + ] + }, + { + "pc": 1141, + "op": "JUMPDEST", + "gas": 1842353, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x1a0", + "0x1c0", + "0x28e", + "0x9", + "0x1c0", + "0x140", + "0x20" + ] + }, + { + "pc": 1142, + "op": "POP", + "gas": 1842352, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x1a0", + "0x1c0", + "0x28e", + "0x9", + "0x1c0", + "0x140", + "0x20" + ] + }, + { + "pc": 1143, + "op": "POP", + "gas": 1842350, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x1a0", + "0x1c0", + "0x28e", + "0x9", + "0x1c0", + "0x140" + ] + }, + { + "pc": 1144, + "op": "POP", + "gas": 1842348, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x1a0", + "0x1c0", + "0x28e", + "0x9", + "0x1c0" + ] + }, + { + "pc": 1145, + "op": "POP", + "gas": 1842346, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x1a0", + "0x1c0", + "0x28e", + "0x9" + ] + }, + { + "pc": 1146, + "op": "JUMP", + "gas": 1842344, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x1a0", + "0x1c0", + "0x28e" + ] + }, + { + "pc": 654, + "op": "JUMPDEST", + "gas": 1842336, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x1a0", + "0x1c0" + ] + }, + { + "pc": 655, + "op": "POP", + "gas": 1842335, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x1a0", + "0x1c0" + ] + }, + { + "pc": 656, + "op": "SWAP4", + "gas": 1842333, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x2d1", + "0x1a0", + "0x9", + "0x140", + "0x1a0" + ] + }, + { + "pc": 657, + "op": "SWAP3", + "gas": 1842330, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x1a0", + "0x1a0", + "0x9", + "0x140", + "0x2d1" + ] + }, + { + "pc": 658, + "op": "POP", + "gas": 1842327, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x1a0", + "0x2d1", + "0x9", + "0x140", + "0x1a0" + ] + }, + { + "pc": 659, + "op": "POP", + "gas": 1842325, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x1a0", + "0x2d1", + "0x9", + "0x140" + ] + }, + { + "pc": 660, + "op": "POP", + "gas": 1842323, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x1a0", + "0x2d1", + "0x9" + ] + }, + { + "pc": 661, + "op": "JUMP", + "gas": 1842321, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x1a0", + "0x2d1" + ] + }, + { + "pc": 721, + "op": "JUMPDEST", + "gas": 1842313, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x1a0" + ] + }, + { + "pc": 722, + "op": "SWAP2", + "gas": 1842312, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x0", + "0x9", + "0x1a0" + ] + }, + { + "pc": 723, + "op": "POP", + "gas": 1842309, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x1a0", + "0x9", + "0x0" + ] + }, + { + "pc": 724, + "op": "POP", + "gas": 1842307, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x1a0", + "0x9" + ] + }, + { + "pc": 725, + "op": "SWAP3", + "gas": 1842305, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x359", + "0x1a0", + "0x120", + "0x1a0" + ] + }, + { + "pc": 726, + "op": "SWAP2", + "gas": 1842302, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x1a0", + "0x1a0", + "0x120", + "0x359" + ] + }, + { + "pc": 727, + "op": "POP", + "gas": 1842299, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x1a0", + "0x359", + "0x120", + "0x1a0" + ] + }, + { + "pc": 728, + "op": "POP", + "gas": 1842297, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x1a0", + "0x359", + "0x120" + ] + }, + { + "pc": 729, + "op": "JUMP", + "gas": 1842295, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x1a0", + "0x359" + ] + }, + { + "pc": 857, + "op": "JUMPDEST", + "gas": 1842287, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x1a0" + ] + }, + { + "pc": 858, + "op": "SWAP4", + "gas": 1842286, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x1a0" + ] + }, + { + "pc": 859, + "op": "POP", + "gas": 1842283, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xa0", + "0x0" + ] + }, + { + "pc": 860, + "op": "POP", + "gas": 1842281, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xa0" + ] + }, + { + "pc": 861, + "op": "PUSH1", + "gas": 1842279, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0" + ] + }, + { + "pc": 863, + "op": "DUP7", + "gas": 1842276, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0x60" + ] + }, + { + "pc": 864, + "op": "ADD", + "gas": 1842273, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0x60", + "0x80" + ] + }, + { + "pc": 865, + "op": "MLOAD", + "gas": 1842270, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0" + ] + }, + { + "pc": 866, + "op": "PUSH8", + "gas": 1842267, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0" + ] + }, + { + "pc": 875, + "op": "DUP2", + "gas": 1842264, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0xffffffffffffffff" + ] + }, + { + "pc": 876, + "op": "GT", + "gas": 1842261, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0xffffffffffffffff", + "0xe0" + ] + }, + { + "pc": 877, + "op": "ISZERO", + "gas": 1842258, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x0" + ] + }, + { + "pc": 878, + "op": "PUSH3", + "gas": 1842255, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x1" + ] + }, + { + "pc": 882, + "op": "JUMPI", + "gas": 1842252, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x1", + "0x377" + ] + }, + { + "pc": 887, + "op": "JUMPDEST", + "gas": 1842242, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0" + ] + }, + { + "pc": 888, + "op": "PUSH3", + "gas": 1842241, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0" + ] + }, + { + "pc": 892, + "op": "DUP9", + "gas": 1842238, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385" + ] + }, + { + "pc": 893, + "op": "DUP3", + "gas": 1842235, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0" + ] + }, + { + "pc": 894, + "op": "DUP10", + "gas": 1842232, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0xe0" + ] + }, + { + "pc": 895, + "op": "ADD", + "gas": 1842229, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0xe0", + "0x80" + ] + }, + { + "pc": 896, + "op": "PUSH3", + "gas": 1842226, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160" + ] + }, + { + "pc": 900, + "op": "JUMP", + "gas": 1842223, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x2ad" + ] + }, + { + "pc": 685, + "op": "JUMPDEST", + "gas": 1842215, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160" + ] + }, + { + "pc": 686, + "op": "PUSH1", + "gas": 1842214, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160" + ] + }, + { + "pc": 688, + "op": "DUP3", + "gas": 1842211, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0" + ] + }, + { + "pc": 689, + "op": "PUSH1", + "gas": 1842208, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x1a0" + ] + }, + { + "pc": 691, + "op": "DUP4", + "gas": 1842205, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x1a0", + "0x1f" + ] + }, + { + "pc": 692, + "op": "ADD", + "gas": 1842202, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x1a0", + "0x1f", + "0x160" + ] + }, + { + "pc": 693, + "op": "SLT", + "gas": 1842199, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x1a0", + "0x17f" + ] + }, + { + "pc": 694, + "op": "PUSH3", + "gas": 1842196, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x1" + ] + }, + { + "pc": 698, + "op": "JUMPI", + "gas": 1842193, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x1", + "0x2bf" + ] + }, + { + "pc": 703, + "op": "JUMPDEST", + "gas": 1842183, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0" + ] + }, + { + "pc": 704, + "op": "DUP2", + "gas": 1842182, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0" + ] + }, + { + "pc": 705, + "op": "MLOAD", + "gas": 1842179, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x160" + ] + }, + { + "pc": 706, + "op": "PUSH3", + "gas": 1842176, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4" + ] + }, + { + "pc": 710, + "op": "DUP5", + "gas": 1842173, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1" + ] + }, + { + "pc": 711, + "op": "DUP3", + "gas": 1842170, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0" + ] + }, + { + "pc": 712, + "op": "PUSH1", + "gas": 1842167, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4" + ] + }, + { + "pc": 714, + "op": "DUP7", + "gas": 1842164, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x20" + ] + }, + { + "pc": 715, + "op": "ADD", + "gas": 1842161, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x20", + "0x160" + ] + }, + { + "pc": 716, + "op": "PUSH3", + "gas": 1842158, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180" + ] + }, + { + "pc": 720, + "op": "JUMP", + "gas": 1842155, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x251" + ] + }, + { + "pc": 593, + "op": "JUMPDEST", + "gas": 1842147, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180" + ] + }, + { + "pc": 594, + "op": "PUSH1", + "gas": 1842146, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180" + ] + }, + { + "pc": 596, + "op": "PUSH3", + "gas": 1842143, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x0" + ] + }, + { + "pc": 600, + "op": "PUSH3", + "gas": 1842140, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x0", + "0x268" + ] + }, + { + "pc": 604, + "op": "DUP5", + "gas": 1842137, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x0", + "0x268", + "0x262" + ] + }, + { + "pc": 605, + "op": "PUSH3", + "gas": 1842134, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x0", + "0x268", + "0x262", + "0x4" + ] + }, + { + "pc": 609, + "op": "JUMP", + "gas": 1842131, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x0", + "0x268", + "0x262", + "0x4", + "0x3ce" + ] + }, + { + "pc": 974, + "op": "JUMPDEST", + "gas": 1842123, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x0", + "0x268", + "0x262", + "0x4" + ] + }, + { + "pc": 975, + "op": "PUSH1", + "gas": 1842122, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x0", + "0x268", + "0x262", + "0x4" + ] + }, + { + "pc": 977, + "op": "PUSH8", + "gas": 1842119, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x0", + "0x268", + "0x262", + "0x4", + "0x0" + ] + }, + { + "pc": 986, + "op": "DUP3", + "gas": 1842116, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x0", + "0x268", + "0x262", + "0x4", + "0x0", + "0xffffffffffffffff" + ] + }, + { + "pc": 987, + "op": "GT", + "gas": 1842113, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x0", + "0x268", + "0x262", + "0x4", + "0x0", + "0xffffffffffffffff", + "0x4" + ] + }, + { + "pc": 988, + "op": "ISZERO", + "gas": 1842110, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x0", + "0x268", + "0x262", + "0x4", + "0x0", + "0x0" + ] + }, + { + "pc": 989, + "op": "PUSH3", + "gas": 1842107, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x0", + "0x268", + "0x262", + "0x4", + "0x0", + "0x1" + ] + }, + { + "pc": 993, + "op": "JUMPI", + "gas": 1842104, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x0", + "0x268", + "0x262", + "0x4", + "0x0", + "0x1", + "0x3ec" + ] + }, + { + "pc": 1004, + "op": "JUMPDEST", + "gas": 1842094, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x0", + "0x268", + "0x262", + "0x4", + "0x0" + ] + }, + { + "pc": 1005, + "op": "PUSH3", + "gas": 1842093, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x0", + "0x268", + "0x262", + "0x4", + "0x0" + ] + }, + { + "pc": 1009, + "op": "DUP3", + "gas": 1842090, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x0", + "0x268", + "0x262", + "0x4", + "0x0", + "0x3f7" + ] + }, + { + "pc": 1010, + "op": "PUSH3", + "gas": 1842087, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x0", + "0x268", + "0x262", + "0x4", + "0x0", + "0x3f7", + "0x4" + ] + }, + { + "pc": 1014, + "op": "JUMP", + "gas": 1842084, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x0", + "0x268", + "0x262", + "0x4", + "0x0", + "0x3f7", + "0x4", + "0x545" + ] + }, + { + "pc": 1349, + "op": "JUMPDEST", + "gas": 1842076, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x0", + "0x268", + "0x262", + "0x4", + "0x0", + "0x3f7", + "0x4" + ] + }, + { + "pc": 1350, + "op": "PUSH1", + "gas": 1842075, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x0", + "0x268", + "0x262", + "0x4", + "0x0", + "0x3f7", + "0x4" + ] + }, + { + "pc": 1352, + "op": "PUSH1", + "gas": 1842072, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x0", + "0x268", + "0x262", + "0x4", + "0x0", + "0x3f7", + "0x4", + "0x0" + ] + }, + { + "pc": 1354, + "op": "NOT", + "gas": 1842069, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x0", + "0x268", + "0x262", + "0x4", + "0x0", + "0x3f7", + "0x4", + "0x0", + "0x1f" + ] + }, + { + "pc": 1355, + "op": "PUSH1", + "gas": 1842066, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x0", + "0x268", + "0x262", + "0x4", + "0x0", + "0x3f7", + "0x4", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0" + ] + }, + { + "pc": 1357, + "op": "DUP4", + "gas": 1842063, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x0", + "0x268", + "0x262", + "0x4", + "0x0", + "0x3f7", + "0x4", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", + "0x1f" + ] + }, + { + "pc": 1358, + "op": "ADD", + "gas": 1842060, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x0", + "0x268", + "0x262", + "0x4", + "0x0", + "0x3f7", + "0x4", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", + "0x1f", + "0x4" + ] + }, + { + "pc": 1359, + "op": "AND", + "gas": 1842057, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x0", + "0x268", + "0x262", + "0x4", + "0x0", + "0x3f7", + "0x4", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", + "0x23" + ] + }, + { + "pc": 1360, + "op": "SWAP1", + "gas": 1842054, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x0", + "0x268", + "0x262", + "0x4", + "0x0", + "0x3f7", + "0x4", + "0x0", + "0x20" + ] + }, + { + "pc": 1361, + "op": "POP", + "gas": 1842051, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x0", + "0x268", + "0x262", + "0x4", + "0x0", + "0x3f7", + "0x4", + "0x20", + "0x0" + ] + }, + { + "pc": 1362, + "op": "SWAP2", + "gas": 1842049, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x0", + "0x268", + "0x262", + "0x4", + "0x0", + "0x3f7", + "0x4", + "0x20" + ] + }, + { + "pc": 1363, + "op": "SWAP1", + "gas": 1842046, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x0", + "0x268", + "0x262", + "0x4", + "0x0", + "0x20", + "0x4", + "0x3f7" + ] + }, + { + "pc": 1364, + "op": "POP", + "gas": 1842043, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x0", + "0x268", + "0x262", + "0x4", + "0x0", + "0x20", + "0x3f7", + "0x4" + ] + }, + { + "pc": 1365, + "op": "JUMP", + "gas": 1842041, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x0", + "0x268", + "0x262", + "0x4", + "0x0", + "0x20", + "0x3f7" + ] + }, + { + "pc": 1015, + "op": "JUMPDEST", + "gas": 1842033, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x0", + "0x268", + "0x262", + "0x4", + "0x0", + "0x20" + ] + }, + { + "pc": 1016, + "op": "SWAP1", + "gas": 1842032, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x0", + "0x268", + "0x262", + "0x4", + "0x0", + "0x20" + ] + }, + { + "pc": 1017, + "op": "POP", + "gas": 1842029, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x0", + "0x268", + "0x262", + "0x4", + "0x20", + "0x0" + ] + }, + { + "pc": 1018, + "op": "PUSH1", + "gas": 1842027, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x0", + "0x268", + "0x262", + "0x4", + "0x20" + ] + }, + { + "pc": 1020, + "op": "DUP2", + "gas": 1842024, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x0", + "0x268", + "0x262", + "0x4", + "0x20", + "0x20" + ] + }, + { + "pc": 1021, + "op": "ADD", + "gas": 1842021, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x0", + "0x268", + "0x262", + "0x4", + "0x20", + "0x20", + "0x20" + ] + }, + { + "pc": 1022, + "op": "SWAP1", + "gas": 1842018, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x0", + "0x268", + "0x262", + "0x4", + "0x20", + "0x40" + ] + }, + { + "pc": 1023, + "op": "POP", + "gas": 1842015, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x0", + "0x268", + "0x262", + "0x4", + "0x40", + "0x20" + ] + }, + { + "pc": 1024, + "op": "SWAP2", + "gas": 1842013, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x0", + "0x268", + "0x262", + "0x4", + "0x40" + ] + }, + { + "pc": 1025, + "op": "SWAP1", + "gas": 1842010, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x0", + "0x268", + "0x40", + "0x4", + "0x262" + ] + }, + { + "pc": 1026, + "op": "POP", + "gas": 1842007, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x0", + "0x268", + "0x40", + "0x262", + "0x4" + ] + }, + { + "pc": 1027, + "op": "JUMP", + "gas": 1842005, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x0", + "0x268", + "0x40", + "0x262" + ] + }, + { + "pc": 610, + "op": "JUMPDEST", + "gas": 1841997, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x0", + "0x268", + "0x40" + ] + }, + { + "pc": 611, + "op": "PUSH3", + "gas": 1841996, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x0", + "0x268", + "0x40" + ] + }, + { + "pc": 615, + "op": "JUMP", + "gas": 1841993, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x0", + "0x268", + "0x40", + "0x3a5" + ] + }, + { + "pc": 933, + "op": "JUMPDEST", + "gas": 1841985, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x0", + "0x268", + "0x40" + ] + }, + { + "pc": 934, + "op": "PUSH1", + "gas": 1841984, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x0", + "0x268", + "0x40" + ] + }, + { + "pc": 936, + "op": "PUSH3", + "gas": 1841981, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x0", + "0x268", + "0x40", + "0x0" + ] + }, + { + "pc": 940, + "op": "PUSH3", + "gas": 1841978, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x0", + "0x268", + "0x40", + "0x0", + "0x3b1" + ] + }, + { + "pc": 944, + "op": "JUMP", + "gas": 1841975, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x0", + "0x268", + "0x40", + "0x0", + "0x3b1", + "0x3c4" + ] + }, + { + "pc": 964, + "op": "JUMPDEST", + "gas": 1841967, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x0", + "0x268", + "0x40", + "0x0", + "0x3b1" + ] + }, + { + "pc": 965, + "op": "PUSH1", + "gas": 1841966, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x0", + "0x268", + "0x40", + "0x0", + "0x3b1" + ] + }, + { + "pc": 967, + "op": "PUSH1", + "gas": 1841963, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x0", + "0x268", + "0x40", + "0x0", + "0x3b1", + "0x0" + ] + }, + { + "pc": 969, + "op": "MLOAD", + "gas": 1841960, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x0", + "0x268", + "0x40", + "0x0", + "0x3b1", + "0x0", + "0x40" + ] + }, + { + "pc": 970, + "op": "SWAP1", + "gas": 1841957, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x0", + "0x268", + "0x40", + "0x0", + "0x3b1", + "0x0", + "0x1e0" + ] + }, + { + "pc": 971, + "op": "POP", + "gas": 1841954, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x0", + "0x268", + "0x40", + "0x0", + "0x3b1", + "0x1e0", + "0x0" + ] + }, + { + "pc": 972, + "op": "SWAP1", + "gas": 1841952, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x0", + "0x268", + "0x40", + "0x0", + "0x3b1", + "0x1e0" + ] + }, + { + "pc": 973, + "op": "JUMP", + "gas": 1841949, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x0", + "0x268", + "0x40", + "0x0", + "0x1e0", + "0x3b1" + ] + }, + { + "pc": 945, + "op": "JUMPDEST", + "gas": 1841941, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x0", + "0x268", + "0x40", + "0x0", + "0x1e0" + ] + }, + { + "pc": 946, + "op": "SWAP1", + "gas": 1841940, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x0", + "0x268", + "0x40", + "0x0", + "0x1e0" + ] + }, + { + "pc": 947, + "op": "POP", + "gas": 1841937, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x0", + "0x268", + "0x40", + "0x1e0", + "0x0" + ] + }, + { + "pc": 948, + "op": "PUSH3", + "gas": 1841935, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x0", + "0x268", + "0x40", + "0x1e0" + ] + }, + { + "pc": 952, + "op": "DUP3", + "gas": 1841932, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x0", + "0x268", + "0x40", + "0x1e0", + "0x3bf" + ] + }, + { + "pc": 953, + "op": "DUP3", + "gas": 1841929, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x0", + "0x268", + "0x40", + "0x1e0", + "0x3bf", + "0x40" + ] + }, + { + "pc": 954, + "op": "PUSH3", + "gas": 1841926, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x0", + "0x268", + "0x40", + "0x1e0", + "0x3bf", + "0x40", + "0x1e0" + ] + }, + { + "pc": 958, + "op": "JUMP", + "gas": 1841923, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x0", + "0x268", + "0x40", + "0x1e0", + "0x3bf", + "0x40", + "0x1e0", + "0x4b1" + ] + }, + { + "pc": 1201, + "op": "JUMPDEST", + "gas": 1841915, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x0", + "0x268", + "0x40", + "0x1e0", + "0x3bf", + "0x40", + "0x1e0" + ] + }, + { + "pc": 1202, + "op": "PUSH3", + "gas": 1841914, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x0", + "0x268", + "0x40", + "0x1e0", + "0x3bf", + "0x40", + "0x1e0" + ] + }, + { + "pc": 1206, + "op": "DUP3", + "gas": 1841911, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x0", + "0x268", + "0x40", + "0x1e0", + "0x3bf", + "0x40", + "0x1e0", + "0x4bc" + ] + }, + { + "pc": 1207, + "op": "PUSH3", + "gas": 1841908, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x0", + "0x268", + "0x40", + "0x1e0", + "0x3bf", + "0x40", + "0x1e0", + "0x4bc", + "0x40" + ] + }, + { + "pc": 1211, + "op": "JUMP", + "gas": 1841905, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x0", + "0x268", + "0x40", + "0x1e0", + "0x3bf", + "0x40", + "0x1e0", + "0x4bc", + "0x40", + "0x545" + ] + }, + { + "pc": 1349, + "op": "JUMPDEST", + "gas": 1841897, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x0", + "0x268", + "0x40", + "0x1e0", + "0x3bf", + "0x40", + "0x1e0", + "0x4bc", + "0x40" + ] + }, + { + "pc": 1350, + "op": "PUSH1", + "gas": 1841896, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x0", + "0x268", + "0x40", + "0x1e0", + "0x3bf", + "0x40", + "0x1e0", + "0x4bc", + "0x40" + ] + }, + { + "pc": 1352, + "op": "PUSH1", + "gas": 1841893, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x0", + "0x268", + "0x40", + "0x1e0", + "0x3bf", + "0x40", + "0x1e0", + "0x4bc", + "0x40", + "0x0" + ] + }, + { + "pc": 1354, + "op": "NOT", + "gas": 1841890, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x0", + "0x268", + "0x40", + "0x1e0", + "0x3bf", + "0x40", + "0x1e0", + "0x4bc", + "0x40", + "0x0", + "0x1f" + ] + }, + { + "pc": 1355, + "op": "PUSH1", + "gas": 1841887, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x0", + "0x268", + "0x40", + "0x1e0", + "0x3bf", + "0x40", + "0x1e0", + "0x4bc", + "0x40", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0" + ] + }, + { + "pc": 1357, + "op": "DUP4", + "gas": 1841884, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x0", + "0x268", + "0x40", + "0x1e0", + "0x3bf", + "0x40", + "0x1e0", + "0x4bc", + "0x40", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", + "0x1f" + ] + }, + { + "pc": 1358, + "op": "ADD", + "gas": 1841881, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x0", + "0x268", + "0x40", + "0x1e0", + "0x3bf", + "0x40", + "0x1e0", + "0x4bc", + "0x40", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", + "0x1f", + "0x40" + ] + }, + { + "pc": 1359, + "op": "AND", + "gas": 1841878, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x0", + "0x268", + "0x40", + "0x1e0", + "0x3bf", + "0x40", + "0x1e0", + "0x4bc", + "0x40", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", + "0x5f" + ] + }, + { + "pc": 1360, + "op": "SWAP1", + "gas": 1841875, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x0", + "0x268", + "0x40", + "0x1e0", + "0x3bf", + "0x40", + "0x1e0", + "0x4bc", + "0x40", + "0x0", + "0x40" + ] + }, + { + "pc": 1361, + "op": "POP", + "gas": 1841872, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x0", + "0x268", + "0x40", + "0x1e0", + "0x3bf", + "0x40", + "0x1e0", + "0x4bc", + "0x40", + "0x40", + "0x0" + ] + }, + { + "pc": 1362, + "op": "SWAP2", + "gas": 1841870, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x0", + "0x268", + "0x40", + "0x1e0", + "0x3bf", + "0x40", + "0x1e0", + "0x4bc", + "0x40", + "0x40" + ] + }, + { + "pc": 1363, + "op": "SWAP1", + "gas": 1841867, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x0", + "0x268", + "0x40", + "0x1e0", + "0x3bf", + "0x40", + "0x1e0", + "0x40", + "0x40", + "0x4bc" + ] + }, + { + "pc": 1364, + "op": "POP", + "gas": 1841864, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x0", + "0x268", + "0x40", + "0x1e0", + "0x3bf", + "0x40", + "0x1e0", + "0x40", + "0x4bc", + "0x40" + ] + }, + { + "pc": 1365, + "op": "JUMP", + "gas": 1841862, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x0", + "0x268", + "0x40", + "0x1e0", + "0x3bf", + "0x40", + "0x1e0", + "0x40", + "0x4bc" + ] + }, + { + "pc": 1212, + "op": "JUMPDEST", + "gas": 1841854, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x0", + "0x268", + "0x40", + "0x1e0", + "0x3bf", + "0x40", + "0x1e0", + "0x40" + ] + }, + { + "pc": 1213, + "op": "DUP2", + "gas": 1841853, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x0", + "0x268", + "0x40", + "0x1e0", + "0x3bf", + "0x40", + "0x1e0", + "0x40" + ] + }, + { + "pc": 1214, + "op": "ADD", + "gas": 1841850, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x0", + "0x268", + "0x40", + "0x1e0", + "0x3bf", + "0x40", + "0x1e0", + "0x40", + "0x1e0" + ] + }, + { + "pc": 1215, + "op": "DUP2", + "gas": 1841847, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x0", + "0x268", + "0x40", + "0x1e0", + "0x3bf", + "0x40", + "0x1e0", + "0x220" + ] + }, + { + "pc": 1216, + "op": "DUP2", + "gas": 1841844, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x0", + "0x268", + "0x40", + "0x1e0", + "0x3bf", + "0x40", + "0x1e0", + "0x220", + "0x1e0" + ] + }, + { + "pc": 1217, + "op": "LT", + "gas": 1841841, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x0", + "0x268", + "0x40", + "0x1e0", + "0x3bf", + "0x40", + "0x1e0", + "0x220", + "0x1e0", + "0x220" + ] + }, + { + "pc": 1218, + "op": "PUSH8", + "gas": 1841838, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x0", + "0x268", + "0x40", + "0x1e0", + "0x3bf", + "0x40", + "0x1e0", + "0x220", + "0x0" + ] + }, + { + "pc": 1227, + "op": "DUP3", + "gas": 1841835, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x0", + "0x268", + "0x40", + "0x1e0", + "0x3bf", + "0x40", + "0x1e0", + "0x220", + "0x0", + "0xffffffffffffffff" + ] + }, + { + "pc": 1228, + "op": "GT", + "gas": 1841832, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x0", + "0x268", + "0x40", + "0x1e0", + "0x3bf", + "0x40", + "0x1e0", + "0x220", + "0x0", + "0xffffffffffffffff", + "0x220" + ] + }, + { + "pc": 1229, + "op": "OR", + "gas": 1841829, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x0", + "0x268", + "0x40", + "0x1e0", + "0x3bf", + "0x40", + "0x1e0", + "0x220", + "0x0", + "0x0" + ] + }, + { + "pc": 1230, + "op": "ISZERO", + "gas": 1841826, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x0", + "0x268", + "0x40", + "0x1e0", + "0x3bf", + "0x40", + "0x1e0", + "0x220", + "0x0" + ] + }, + { + "pc": 1231, + "op": "PUSH3", + "gas": 1841823, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x0", + "0x268", + "0x40", + "0x1e0", + "0x3bf", + "0x40", + "0x1e0", + "0x220", + "0x1" + ] + }, + { + "pc": 1235, + "op": "JUMPI", + "gas": 1841820, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x0", + "0x268", + "0x40", + "0x1e0", + "0x3bf", + "0x40", + "0x1e0", + "0x220", + "0x1", + "0x4de" + ] + }, + { + "pc": 1246, + "op": "JUMPDEST", + "gas": 1841810, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x0", + "0x268", + "0x40", + "0x1e0", + "0x3bf", + "0x40", + "0x1e0", + "0x220" + ] + }, + { + "pc": 1247, + "op": "DUP1", + "gas": 1841809, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x0", + "0x268", + "0x40", + "0x1e0", + "0x3bf", + "0x40", + "0x1e0", + "0x220" + ] + }, + { + "pc": 1248, + "op": "PUSH1", + "gas": 1841806, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x0", + "0x268", + "0x40", + "0x1e0", + "0x3bf", + "0x40", + "0x1e0", + "0x220", + "0x220" + ] + }, + { + "pc": 1250, + "op": "MSTORE", + "gas": 1841803, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x0", + "0x268", + "0x40", + "0x1e0", + "0x3bf", + "0x40", + "0x1e0", + "0x220", + "0x220", + "0x40" + ] + }, + { + "pc": 1251, + "op": "POP", + "gas": 1841800, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x0", + "0x268", + "0x40", + "0x1e0", + "0x3bf", + "0x40", + "0x1e0", + "0x220" + ] + }, + { + "pc": 1252, + "op": "POP", + "gas": 1841798, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x0", + "0x268", + "0x40", + "0x1e0", + "0x3bf", + "0x40", + "0x1e0" + ] + }, + { + "pc": 1253, + "op": "POP", + "gas": 1841796, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x0", + "0x268", + "0x40", + "0x1e0", + "0x3bf", + "0x40" + ] + }, + { + "pc": 1254, + "op": "JUMP", + "gas": 1841794, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x0", + "0x268", + "0x40", + "0x1e0", + "0x3bf" + ] + }, + { + "pc": 959, + "op": "JUMPDEST", + "gas": 1841786, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x0", + "0x268", + "0x40", + "0x1e0" + ] + }, + { + "pc": 960, + "op": "SWAP2", + "gas": 1841785, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x0", + "0x268", + "0x40", + "0x1e0" + ] + }, + { + "pc": 961, + "op": "SWAP1", + "gas": 1841782, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x0", + "0x1e0", + "0x40", + "0x268" + ] + }, + { + "pc": 962, + "op": "POP", + "gas": 1841779, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x0", + "0x1e0", + "0x268", + "0x40" + ] + }, + { + "pc": 963, + "op": "JUMP", + "gas": 1841777, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x0", + "0x1e0", + "0x268" + ] + }, + { + "pc": 616, + "op": "JUMPDEST", + "gas": 1841769, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x0", + "0x1e0" + ] + }, + { + "pc": 617, + "op": "SWAP1", + "gas": 1841768, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x0", + "0x1e0" + ] + }, + { + "pc": 618, + "op": "POP", + "gas": 1841765, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x1e0", + "0x0" + ] + }, + { + "pc": 619, + "op": "DUP3", + "gas": 1841763, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x1e0" + ] + }, + { + "pc": 620, + "op": "DUP2", + "gas": 1841760, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x1e0", + "0x4" + ] + }, + { + "pc": 621, + "op": "MSTORE", + "gas": 1841757, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x1e0", + "0x4", + "0x1e0" + ] + }, + { + "pc": 622, + "op": "PUSH1", + "gas": 1841754, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x1e0" + ] + }, + { + "pc": 624, + "op": "DUP2", + "gas": 1841751, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x1e0", + "0x20" + ] + }, + { + "pc": 625, + "op": "ADD", + "gas": 1841748, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x1e0", + "0x20", + "0x1e0" + ] + }, + { + "pc": 626, + "op": "DUP5", + "gas": 1841745, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x1e0", + "0x200" + ] + }, + { + "pc": 627, + "op": "DUP5", + "gas": 1841742, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x1e0", + "0x200", + "0x1a0" + ] + }, + { + "pc": 628, + "op": "DUP5", + "gas": 1841739, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x1e0", + "0x200", + "0x1a0", + "0x4" + ] + }, + { + "pc": 629, + "op": "ADD", + "gas": 1841736, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x1e0", + "0x200", + "0x1a0", + "0x4", + "0x180" + ] + }, + { + "pc": 630, + "op": "GT", + "gas": 1841733, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x1e0", + "0x200", + "0x1a0", + "0x184" + ] + }, + { + "pc": 631, + "op": "ISZERO", + "gas": 1841730, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x1e0", + "0x200", + "0x0" + ] + }, + { + "pc": 632, + "op": "PUSH3", + "gas": 1841727, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x1e0", + "0x200", + "0x1" + ] + }, + { + "pc": 636, + "op": "JUMPI", + "gas": 1841724, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x1e0", + "0x200", + "0x1", + "0x281" + ] + }, + { + "pc": 641, + "op": "JUMPDEST", + "gas": 1841714, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x1e0", + "0x200" + ] + }, + { + "pc": 642, + "op": "PUSH3", + "gas": 1841713, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x1e0", + "0x200" + ] + }, + { + "pc": 646, + "op": "DUP5", + "gas": 1841710, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x1e0", + "0x200", + "0x28e" + ] + }, + { + "pc": 647, + "op": "DUP3", + "gas": 1841707, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x1e0", + "0x200", + "0x28e", + "0x4" + ] + }, + { + "pc": 648, + "op": "DUP6", + "gas": 1841704, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x1e0", + "0x200", + "0x28e", + "0x4", + "0x200" + ] + }, + { + "pc": 649, + "op": "PUSH3", + "gas": 1841701, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x1e0", + "0x200", + "0x28e", + "0x4", + "0x200", + "0x180" + ] + }, + { + "pc": 653, + "op": "JUMP", + "gas": 1841698, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x1e0", + "0x200", + "0x28e", + "0x4", + "0x200", + "0x180", + "0x445" + ] + }, + { + "pc": 1093, + "op": "JUMPDEST", + "gas": 1841690, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x1e0", + "0x200", + "0x28e", + "0x4", + "0x200", + "0x180" + ] + }, + { + "pc": 1094, + "op": "PUSH1", + "gas": 1841689, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x1e0", + "0x200", + "0x28e", + "0x4", + "0x200", + "0x180" + ] + }, + { + "pc": 1096, + "op": "JUMPDEST", + "gas": 1841686, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x1e0", + "0x200", + "0x28e", + "0x4", + "0x200", + "0x180", + "0x0" + ] + }, + { + "pc": 1097, + "op": "DUP4", + "gas": 1841685, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x1e0", + "0x200", + "0x28e", + "0x4", + "0x200", + "0x180", + "0x0" + ] + }, + { + "pc": 1098, + "op": "DUP2", + "gas": 1841682, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x1e0", + "0x200", + "0x28e", + "0x4", + "0x200", + "0x180", + "0x0", + "0x4" + ] + }, + { + "pc": 1099, + "op": "LT", + "gas": 1841679, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x1e0", + "0x200", + "0x28e", + "0x4", + "0x200", + "0x180", + "0x0", + "0x4", + "0x0" + ] + }, + { + "pc": 1100, + "op": "ISZERO", + "gas": 1841676, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x1e0", + "0x200", + "0x28e", + "0x4", + "0x200", + "0x180", + "0x0", + "0x1" + ] + }, + { + "pc": 1101, + "op": "PUSH3", + "gas": 1841673, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x1e0", + "0x200", + "0x28e", + "0x4", + "0x200", + "0x180", + "0x0", + "0x0" + ] + }, + { + "pc": 1105, + "op": "JUMPI", + "gas": 1841670, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x1e0", + "0x200", + "0x28e", + "0x4", + "0x200", + "0x180", + "0x0", + "0x0", + "0x465" + ] + }, + { + "pc": 1106, + "op": "DUP1", + "gas": 1841660, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x1e0", + "0x200", + "0x28e", + "0x4", + "0x200", + "0x180", + "0x0" + ] + }, + { + "pc": 1107, + "op": "DUP3", + "gas": 1841657, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x1e0", + "0x200", + "0x28e", + "0x4", + "0x200", + "0x180", + "0x0", + "0x0" + ] + }, + { + "pc": 1108, + "op": "ADD", + "gas": 1841654, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x1e0", + "0x200", + "0x28e", + "0x4", + "0x200", + "0x180", + "0x0", + "0x0", + "0x180" + ] + }, + { + "pc": 1109, + "op": "MLOAD", + "gas": 1841651, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x1e0", + "0x200", + "0x28e", + "0x4", + "0x200", + "0x180", + "0x0", + "0x180" + ] + }, + { + "pc": 1110, + "op": "DUP2", + "gas": 1841648, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x1e0", + "0x200", + "0x28e", + "0x4", + "0x200", + "0x180", + "0x0", + "0x5553445400000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 1111, + "op": "DUP5", + "gas": 1841645, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x1e0", + "0x200", + "0x28e", + "0x4", + "0x200", + "0x180", + "0x0", + "0x5553445400000000000000000000000000000000000000000000000000000000", + "0x0" + ] + }, + { + "pc": 1112, + "op": "ADD", + "gas": 1841642, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x1e0", + "0x200", + "0x28e", + "0x4", + "0x200", + "0x180", + "0x0", + "0x5553445400000000000000000000000000000000000000000000000000000000", + "0x0", + "0x200" + ] + }, + { + "pc": 1113, + "op": "MSTORE", + "gas": 1841639, + "gasCost": 6, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x1e0", + "0x200", + "0x28e", + "0x4", + "0x200", + "0x180", + "0x0", + "0x5553445400000000000000000000000000000000000000000000000000000000", + "0x200" + ] + }, + { + "pc": 1114, + "op": "PUSH1", + "gas": 1841633, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x1e0", + "0x200", + "0x28e", + "0x4", + "0x200", + "0x180", + "0x0" + ] + }, + { + "pc": 1116, + "op": "DUP2", + "gas": 1841630, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x1e0", + "0x200", + "0x28e", + "0x4", + "0x200", + "0x180", + "0x0", + "0x20" + ] + }, + { + "pc": 1117, + "op": "ADD", + "gas": 1841627, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x1e0", + "0x200", + "0x28e", + "0x4", + "0x200", + "0x180", + "0x0", + "0x20", + "0x0" + ] + }, + { + "pc": 1118, + "op": "SWAP1", + "gas": 1841624, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x1e0", + "0x200", + "0x28e", + "0x4", + "0x200", + "0x180", + "0x0", + "0x20" + ] + }, + { + "pc": 1119, + "op": "POP", + "gas": 1841621, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x1e0", + "0x200", + "0x28e", + "0x4", + "0x200", + "0x180", + "0x20", + "0x0" + ] + }, + { + "pc": 1120, + "op": "PUSH3", + "gas": 1841619, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x1e0", + "0x200", + "0x28e", + "0x4", + "0x200", + "0x180", + "0x20" + ] + }, + { + "pc": 1124, + "op": "JUMP", + "gas": 1841616, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x1e0", + "0x200", + "0x28e", + "0x4", + "0x200", + "0x180", + "0x20", + "0x448" + ] + }, + { + "pc": 1096, + "op": "JUMPDEST", + "gas": 1841608, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x1e0", + "0x200", + "0x28e", + "0x4", + "0x200", + "0x180", + "0x20" + ] + }, + { + "pc": 1097, + "op": "DUP4", + "gas": 1841607, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x1e0", + "0x200", + "0x28e", + "0x4", + "0x200", + "0x180", + "0x20" + ] + }, + { + "pc": 1098, + "op": "DUP2", + "gas": 1841604, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x1e0", + "0x200", + "0x28e", + "0x4", + "0x200", + "0x180", + "0x20", + "0x4" + ] + }, + { + "pc": 1099, + "op": "LT", + "gas": 1841601, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x1e0", + "0x200", + "0x28e", + "0x4", + "0x200", + "0x180", + "0x20", + "0x4", + "0x20" + ] + }, + { + "pc": 1100, + "op": "ISZERO", + "gas": 1841598, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x1e0", + "0x200", + "0x28e", + "0x4", + "0x200", + "0x180", + "0x20", + "0x0" + ] + }, + { + "pc": 1101, + "op": "PUSH3", + "gas": 1841595, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x1e0", + "0x200", + "0x28e", + "0x4", + "0x200", + "0x180", + "0x20", + "0x1" + ] + }, + { + "pc": 1105, + "op": "JUMPI", + "gas": 1841592, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x1e0", + "0x200", + "0x28e", + "0x4", + "0x200", + "0x180", + "0x20", + "0x1", + "0x465" + ] + }, + { + "pc": 1125, + "op": "JUMPDEST", + "gas": 1841582, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x1e0", + "0x200", + "0x28e", + "0x4", + "0x200", + "0x180", + "0x20" + ] + }, + { + "pc": 1126, + "op": "DUP4", + "gas": 1841581, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x1e0", + "0x200", + "0x28e", + "0x4", + "0x200", + "0x180", + "0x20" + ] + }, + { + "pc": 1127, + "op": "DUP2", + "gas": 1841578, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x1e0", + "0x200", + "0x28e", + "0x4", + "0x200", + "0x180", + "0x20", + "0x4" + ] + }, + { + "pc": 1128, + "op": "GT", + "gas": 1841575, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x1e0", + "0x200", + "0x28e", + "0x4", + "0x200", + "0x180", + "0x20", + "0x4", + "0x20" + ] + }, + { + "pc": 1129, + "op": "ISZERO", + "gas": 1841572, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x1e0", + "0x200", + "0x28e", + "0x4", + "0x200", + "0x180", + "0x20", + "0x1" + ] + }, + { + "pc": 1130, + "op": "PUSH3", + "gas": 1841569, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x1e0", + "0x200", + "0x28e", + "0x4", + "0x200", + "0x180", + "0x20", + "0x0" + ] + }, + { + "pc": 1134, + "op": "JUMPI", + "gas": 1841566, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x1e0", + "0x200", + "0x28e", + "0x4", + "0x200", + "0x180", + "0x20", + "0x0", + "0x475" + ] + }, + { + "pc": 1135, + "op": "PUSH1", + "gas": 1841556, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x1e0", + "0x200", + "0x28e", + "0x4", + "0x200", + "0x180", + "0x20" + ] + }, + { + "pc": 1137, + "op": "DUP5", + "gas": 1841553, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x1e0", + "0x200", + "0x28e", + "0x4", + "0x200", + "0x180", + "0x20", + "0x0" + ] + }, + { + "pc": 1138, + "op": "DUP5", + "gas": 1841550, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x1e0", + "0x200", + "0x28e", + "0x4", + "0x200", + "0x180", + "0x20", + "0x0", + "0x4" + ] + }, + { + "pc": 1139, + "op": "ADD", + "gas": 1841547, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x1e0", + "0x200", + "0x28e", + "0x4", + "0x200", + "0x180", + "0x20", + "0x0", + "0x4", + "0x200" + ] + }, + { + "pc": 1140, + "op": "MSTORE", + "gas": 1841544, + "gasCost": 6, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x1e0", + "0x200", + "0x28e", + "0x4", + "0x200", + "0x180", + "0x20", + "0x0", + "0x204" + ] + }, + { + "pc": 1141, + "op": "JUMPDEST", + "gas": 1841538, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x1e0", + "0x200", + "0x28e", + "0x4", + "0x200", + "0x180", + "0x20" + ] + }, + { + "pc": 1142, + "op": "POP", + "gas": 1841537, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x1e0", + "0x200", + "0x28e", + "0x4", + "0x200", + "0x180", + "0x20" + ] + }, + { + "pc": 1143, + "op": "POP", + "gas": 1841535, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x1e0", + "0x200", + "0x28e", + "0x4", + "0x200", + "0x180" + ] + }, + { + "pc": 1144, + "op": "POP", + "gas": 1841533, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x1e0", + "0x200", + "0x28e", + "0x4", + "0x200" + ] + }, + { + "pc": 1145, + "op": "POP", + "gas": 1841531, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x1e0", + "0x200", + "0x28e", + "0x4" + ] + }, + { + "pc": 1146, + "op": "JUMP", + "gas": 1841529, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x1e0", + "0x200", + "0x28e" + ] + }, + { + "pc": 654, + "op": "JUMPDEST", + "gas": 1841521, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x1e0", + "0x200" + ] + }, + { + "pc": 655, + "op": "POP", + "gas": 1841520, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x1e0", + "0x200" + ] + }, + { + "pc": 656, + "op": "SWAP4", + "gas": 1841518, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x2d1", + "0x1a0", + "0x4", + "0x180", + "0x1e0" + ] + }, + { + "pc": 657, + "op": "SWAP3", + "gas": 1841515, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x1e0", + "0x1a0", + "0x4", + "0x180", + "0x2d1" + ] + }, + { + "pc": 658, + "op": "POP", + "gas": 1841512, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x1e0", + "0x2d1", + "0x4", + "0x180", + "0x1a0" + ] + }, + { + "pc": 659, + "op": "POP", + "gas": 1841510, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x1e0", + "0x2d1", + "0x4", + "0x180" + ] + }, + { + "pc": 660, + "op": "POP", + "gas": 1841508, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x1e0", + "0x2d1", + "0x4" + ] + }, + { + "pc": 661, + "op": "JUMP", + "gas": 1841506, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x1e0", + "0x2d1" + ] + }, + { + "pc": 721, + "op": "JUMPDEST", + "gas": 1841498, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x1e0" + ] + }, + { + "pc": 722, + "op": "SWAP2", + "gas": 1841497, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x0", + "0x4", + "0x1e0" + ] + }, + { + "pc": 723, + "op": "POP", + "gas": 1841494, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x1e0", + "0x4", + "0x0" + ] + }, + { + "pc": 724, + "op": "POP", + "gas": 1841492, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x1e0", + "0x4" + ] + }, + { + "pc": 725, + "op": "SWAP3", + "gas": 1841490, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x385", + "0x1a0", + "0x160", + "0x1e0" + ] + }, + { + "pc": 726, + "op": "SWAP2", + "gas": 1841487, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x1e0", + "0x1a0", + "0x160", + "0x385" + ] + }, + { + "pc": 727, + "op": "POP", + "gas": 1841484, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x1e0", + "0x385", + "0x160", + "0x1a0" + ] + }, + { + "pc": 728, + "op": "POP", + "gas": 1841482, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x1e0", + "0x385", + "0x160" + ] + }, + { + "pc": 729, + "op": "JUMP", + "gas": 1841480, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x1e0", + "0x385" + ] + }, + { + "pc": 901, + "op": "JUMPDEST", + "gas": 1841472, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x1e0" + ] + }, + { + "pc": 902, + "op": "SWAP3", + "gas": 1841471, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x0", + "0x0", + "0xe0", + "0x1e0" + ] + }, + { + "pc": 903, + "op": "POP", + "gas": 1841468, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x0", + "0xe0", + "0x0" + ] + }, + { + "pc": 904, + "op": "POP", + "gas": 1841466, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x0", + "0xe0" + ] + }, + { + "pc": 905, + "op": "PUSH1", + "gas": 1841464, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x0" + ] + }, + { + "pc": 907, + "op": "PUSH3", + "gas": 1841461, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x0", + "0x80" + ] + }, + { + "pc": 911, + "op": "DUP9", + "gas": 1841458, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x0", + "0x80", + "0x398" + ] + }, + { + "pc": 912, + "op": "DUP3", + "gas": 1841455, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x0", + "0x80", + "0x398", + "0x1a0" + ] + }, + { + "pc": 913, + "op": "DUP10", + "gas": 1841452, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x0", + "0x80", + "0x398", + "0x1a0", + "0x80" + ] + }, + { + "pc": 914, + "op": "ADD", + "gas": 1841449, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x0", + "0x80", + "0x398", + "0x1a0", + "0x80", + "0x80" + ] + }, + { + "pc": 915, + "op": "PUSH3", + "gas": 1841446, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x0", + "0x80", + "0x398", + "0x1a0", + "0x100" + ] + }, + { + "pc": 919, + "op": "JUMP", + "gas": 1841443, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x0", + "0x80", + "0x398", + "0x1a0", + "0x100", + "0x2da" + ] + }, + { + "pc": 730, + "op": "JUMPDEST", + "gas": 1841435, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x0", + "0x80", + "0x398", + "0x1a0", + "0x100" + ] + }, + { + "pc": 731, + "op": "PUSH1", + "gas": 1841434, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x0", + "0x80", + "0x398", + "0x1a0", + "0x100" + ] + }, + { + "pc": 733, + "op": "DUP2", + "gas": 1841431, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x0", + "0x80", + "0x398", + "0x1a0", + "0x100", + "0x0" + ] + }, + { + "pc": 734, + "op": "MLOAD", + "gas": 1841428, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x0", + "0x80", + "0x398", + "0x1a0", + "0x100", + "0x0", + "0x100" + ] + }, + { + "pc": 735, + "op": "SWAP1", + "gas": 1841425, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x0", + "0x80", + "0x398", + "0x1a0", + "0x100", + "0x0", + "0x12" + ] + }, + { + "pc": 736, + "op": "POP", + "gas": 1841422, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x0", + "0x80", + "0x398", + "0x1a0", + "0x100", + "0x12", + "0x0" + ] + }, + { + "pc": 737, + "op": "PUSH3", + "gas": 1841420, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x0", + "0x80", + "0x398", + "0x1a0", + "0x100", + "0x12" + ] + }, + { + "pc": 741, + "op": "DUP2", + "gas": 1841417, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x0", + "0x80", + "0x398", + "0x1a0", + "0x100", + "0x12", + "0x2eb" + ] + }, + { + "pc": 742, + "op": "PUSH3", + "gas": 1841414, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x0", + "0x80", + "0x398", + "0x1a0", + "0x100", + "0x12", + "0x2eb", + "0x12" + ] + }, + { + "pc": 746, + "op": "JUMP", + "gas": 1841411, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x0", + "0x80", + "0x398", + "0x1a0", + "0x100", + "0x12", + "0x2eb", + "0x12", + "0x570" + ] + }, + { + "pc": 1392, + "op": "JUMPDEST", + "gas": 1841403, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x0", + "0x80", + "0x398", + "0x1a0", + "0x100", + "0x12", + "0x2eb", + "0x12" + ] + }, + { + "pc": 1393, + "op": "PUSH3", + "gas": 1841402, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x0", + "0x80", + "0x398", + "0x1a0", + "0x100", + "0x12", + "0x2eb", + "0x12" + ] + }, + { + "pc": 1397, + "op": "DUP2", + "gas": 1841399, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x0", + "0x80", + "0x398", + "0x1a0", + "0x100", + "0x12", + "0x2eb", + "0x12", + "0x57b" + ] + }, + { + "pc": 1398, + "op": "PUSH3", + "gas": 1841396, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x0", + "0x80", + "0x398", + "0x1a0", + "0x100", + "0x12", + "0x2eb", + "0x12", + "0x57b", + "0x12" + ] + }, + { + "pc": 1402, + "op": "JUMP", + "gas": 1841393, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x0", + "0x80", + "0x398", + "0x1a0", + "0x100", + "0x12", + "0x2eb", + "0x12", + "0x57b", + "0x12", + "0x438" + ] + }, + { + "pc": 1080, + "op": "JUMPDEST", + "gas": 1841385, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x0", + "0x80", + "0x398", + "0x1a0", + "0x100", + "0x12", + "0x2eb", + "0x12", + "0x57b", + "0x12" + ] + }, + { + "pc": 1081, + "op": "PUSH1", + "gas": 1841384, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x0", + "0x80", + "0x398", + "0x1a0", + "0x100", + "0x12", + "0x2eb", + "0x12", + "0x57b", + "0x12" + ] + }, + { + "pc": 1083, + "op": "PUSH1", + "gas": 1841381, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x0", + "0x80", + "0x398", + "0x1a0", + "0x100", + "0x12", + "0x2eb", + "0x12", + "0x57b", + "0x12", + "0x0" + ] + }, + { + "pc": 1085, + "op": "DUP3", + "gas": 1841378, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x0", + "0x80", + "0x398", + "0x1a0", + "0x100", + "0x12", + "0x2eb", + "0x12", + "0x57b", + "0x12", + "0x0", + "0xff" + ] + }, + { + "pc": 1086, + "op": "AND", + "gas": 1841375, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x0", + "0x80", + "0x398", + "0x1a0", + "0x100", + "0x12", + "0x2eb", + "0x12", + "0x57b", + "0x12", + "0x0", + "0xff", + "0x12" + ] + }, + { + "pc": 1087, + "op": "SWAP1", + "gas": 1841372, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x0", + "0x80", + "0x398", + "0x1a0", + "0x100", + "0x12", + "0x2eb", + "0x12", + "0x57b", + "0x12", + "0x0", + "0x12" + ] + }, + { + "pc": 1088, + "op": "POP", + "gas": 1841369, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x0", + "0x80", + "0x398", + "0x1a0", + "0x100", + "0x12", + "0x2eb", + "0x12", + "0x57b", + "0x12", + "0x12", + "0x0" + ] + }, + { + "pc": 1089, + "op": "SWAP2", + "gas": 1841367, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x0", + "0x80", + "0x398", + "0x1a0", + "0x100", + "0x12", + "0x2eb", + "0x12", + "0x57b", + "0x12", + "0x12" + ] + }, + { + "pc": 1090, + "op": "SWAP1", + "gas": 1841364, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x0", + "0x80", + "0x398", + "0x1a0", + "0x100", + "0x12", + "0x2eb", + "0x12", + "0x12", + "0x12", + "0x57b" + ] + }, + { + "pc": 1091, + "op": "POP", + "gas": 1841361, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x0", + "0x80", + "0x398", + "0x1a0", + "0x100", + "0x12", + "0x2eb", + "0x12", + "0x12", + "0x57b", + "0x12" + ] + }, + { + "pc": 1092, + "op": "JUMP", + "gas": 1841359, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x0", + "0x80", + "0x398", + "0x1a0", + "0x100", + "0x12", + "0x2eb", + "0x12", + "0x12", + "0x57b" + ] + }, + { + "pc": 1403, + "op": "JUMPDEST", + "gas": 1841351, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x0", + "0x80", + "0x398", + "0x1a0", + "0x100", + "0x12", + "0x2eb", + "0x12", + "0x12" + ] + }, + { + "pc": 1404, + "op": "DUP2", + "gas": 1841350, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x0", + "0x80", + "0x398", + "0x1a0", + "0x100", + "0x12", + "0x2eb", + "0x12", + "0x12" + ] + }, + { + "pc": 1405, + "op": "EQ", + "gas": 1841347, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x0", + "0x80", + "0x398", + "0x1a0", + "0x100", + "0x12", + "0x2eb", + "0x12", + "0x12", + "0x12" + ] + }, + { + "pc": 1406, + "op": "PUSH3", + "gas": 1841344, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x0", + "0x80", + "0x398", + "0x1a0", + "0x100", + "0x12", + "0x2eb", + "0x12", + "0x1" + ] + }, + { + "pc": 1410, + "op": "JUMPI", + "gas": 1841341, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x0", + "0x80", + "0x398", + "0x1a0", + "0x100", + "0x12", + "0x2eb", + "0x12", + "0x1", + "0x587" + ] + }, + { + "pc": 1415, + "op": "JUMPDEST", + "gas": 1841331, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x0", + "0x80", + "0x398", + "0x1a0", + "0x100", + "0x12", + "0x2eb", + "0x12" + ] + }, + { + "pc": 1416, + "op": "POP", + "gas": 1841330, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x0", + "0x80", + "0x398", + "0x1a0", + "0x100", + "0x12", + "0x2eb", + "0x12" + ] + }, + { + "pc": 1417, + "op": "JUMP", + "gas": 1841328, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x0", + "0x80", + "0x398", + "0x1a0", + "0x100", + "0x12", + "0x2eb" + ] + }, + { + "pc": 747, + "op": "JUMPDEST", + "gas": 1841320, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x0", + "0x80", + "0x398", + "0x1a0", + "0x100", + "0x12" + ] + }, + { + "pc": 748, + "op": "SWAP3", + "gas": 1841319, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x0", + "0x80", + "0x398", + "0x1a0", + "0x100", + "0x12" + ] + }, + { + "pc": 749, + "op": "SWAP2", + "gas": 1841316, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x0", + "0x80", + "0x12", + "0x1a0", + "0x100", + "0x398" + ] + }, + { + "pc": 750, + "op": "POP", + "gas": 1841313, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x0", + "0x80", + "0x12", + "0x398", + "0x100", + "0x1a0" + ] + }, + { + "pc": 751, + "op": "POP", + "gas": 1841311, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x0", + "0x80", + "0x12", + "0x398", + "0x100" + ] + }, + { + "pc": 752, + "op": "JUMP", + "gas": 1841309, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x0", + "0x80", + "0x12", + "0x398" + ] + }, + { + "pc": 920, + "op": "JUMPDEST", + "gas": 1841301, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x0", + "0x80", + "0x12" + ] + }, + { + "pc": 921, + "op": "SWAP2", + "gas": 1841300, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x0", + "0x80", + "0x12" + ] + }, + { + "pc": 922, + "op": "POP", + "gas": 1841297, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x80", + "0x0" + ] + }, + { + "pc": 923, + "op": "POP", + "gas": 1841295, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x80" + ] + }, + { + "pc": 924, + "op": "SWAP3", + "gas": 1841293, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12" + ] + }, + { + "pc": 925, + "op": "SWAP6", + "gas": 1841290, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x1a0", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x12", + "0x1a0", + "0x1e0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 926, + "op": "POP", + "gas": 1841287, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x37", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x12", + "0x1a0", + "0x1e0", + "0x1a0" + ] + }, + { + "pc": 927, + "op": "SWAP3", + "gas": 1841285, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x80", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x12", + "0x1a0", + "0x1e0" + ] + }, + { + "pc": 928, + "op": "SWAP6", + "gas": 1841282, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x37", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x80", + "0x1e0", + "0x12", + "0x1a0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 929, + "op": "SWAP1", + "gas": 1841279, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x80", + "0x1e0", + "0x12", + "0x1a0", + "0x37" + ] + }, + { + "pc": 930, + "op": "SWAP4", + "gas": 1841276, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x80", + "0x1e0", + "0x12", + "0x37", + "0x1a0" + ] + }, + { + "pc": 931, + "op": "POP", + "gas": 1841273, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x37", + "0x80" + ] + }, + { + "pc": 932, + "op": "JUMP", + "gas": 1841271, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x37" + ] + }, + { + "pc": 55, + "op": "JUMPDEST", + "gas": 1841263, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12" + ] + }, + { + "pc": 56, + "op": "DUP3", + "gas": 1841262, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12" + ] + }, + { + "pc": 57, + "op": "DUP3", + "gas": 1841259, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0" + ] + }, + { + "pc": 58, + "op": "DUP2", + "gas": 1841256, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0" + ] + }, + { + "pc": 59, + "op": "PUSH1", + "gas": 1841253, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x1a0" + ] + }, + { + "pc": 61, + "op": "SWAP1", + "gas": 1841250, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x1a0", + "0x3" + ] + }, + { + "pc": 62, + "op": "DUP1", + "gas": 1841247, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x3", + "0x1a0" + ] + }, + { + "pc": 63, + "op": "MLOAD", + "gas": 1841244, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x3", + "0x1a0", + "0x1a0" + ] + }, + { + "pc": 64, + "op": "SWAP1", + "gas": 1841241, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x3", + "0x1a0", + "0x9" + ] + }, + { + "pc": 65, + "op": "PUSH1", + "gas": 1841238, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x3", + "0x9", + "0x1a0" + ] + }, + { + "pc": 67, + "op": "ADD", + "gas": 1841235, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x3", + "0x9", + "0x1a0", + "0x20" + ] + }, + { + "pc": 68, + "op": "SWAP1", + "gas": 1841232, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x3", + "0x9", + "0x1c0" + ] + }, + { + "pc": 69, + "op": "PUSH3", + "gas": 1841229, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x3", + "0x1c0", + "0x9" + ] + }, + { + "pc": 73, + "op": "SWAP3", + "gas": 1841226, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x3", + "0x1c0", + "0x9", + "0x51" + ] + }, + { + "pc": 74, + "op": "SWAP2", + "gas": 1841223, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x51", + "0x1c0", + "0x9", + "0x3" + ] + }, + { + "pc": 75, + "op": "SWAP1", + "gas": 1841220, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x51", + "0x3", + "0x9", + "0x1c0" + ] + }, + { + "pc": 76, + "op": "PUSH3", + "gas": 1841217, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x51", + "0x3", + "0x1c0", + "0x9" + ] + }, + { + "pc": 80, + "op": "JUMP", + "gas": 1841214, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x51", + "0x3", + "0x1c0", + "0x9", + "0x1a1" + ] + }, + { + "pc": 417, + "op": "JUMPDEST", + "gas": 1841206, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x51", + "0x3", + "0x1c0", + "0x9" + ] + }, + { + "pc": 418, + "op": "DUP3", + "gas": 1841205, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x51", + "0x3", + "0x1c0", + "0x9" + ] + }, + { + "pc": 419, + "op": "DUP1", + "gas": 1841202, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x51", + "0x3", + "0x1c0", + "0x9", + "0x3" + ] + }, + { + "pc": 420, + "op": "SLOAD", + "gas": 1841199, + "gasCost": 2100, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x51", + "0x3", + "0x1c0", + "0x9", + "0x3", + "0x3" + ], + "storage": { + "0x0000000000000000000000000000000000000000000000000000000000000003": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "extraData": { + "proofList": [ + { + "address": "0x08c683b684d1e24cab8ce6de5c8c628d993ac140", + "nonce": 1, + "balance": "0x0", + "codeHash": "0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470", + "storage": { + "key": "0x0000000000000000000000000000000000000000000000000000000000000003", + "value": "0x0000000000000000000000000000000000000000000000000000000000000000" + } + } + ] + } + }, + { + "pc": 421, + "op": "PUSH3", + "gas": 1839099, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x51", + "0x3", + "0x1c0", + "0x9", + "0x3", + "0x0" + ] + }, + { + "pc": 425, + "op": "SWAP1", + "gas": 1839096, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x51", + "0x3", + "0x1c0", + "0x9", + "0x3", + "0x0", + "0x1af" + ] + }, + { + "pc": 426, + "op": "PUSH3", + "gas": 1839093, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x51", + "0x3", + "0x1c0", + "0x9", + "0x3", + "0x1af", + "0x0" + ] + }, + { + "pc": 430, + "op": "JUMP", + "gas": 1839090, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x51", + "0x3", + "0x1c0", + "0x9", + "0x3", + "0x1af", + "0x0", + "0x47b" + ] + }, + { + "pc": 1147, + "op": "JUMPDEST", + "gas": 1839082, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x51", + "0x3", + "0x1c0", + "0x9", + "0x3", + "0x1af", + "0x0" + ] + }, + { + "pc": 1148, + "op": "PUSH1", + "gas": 1839081, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x51", + "0x3", + "0x1c0", + "0x9", + "0x3", + "0x1af", + "0x0" + ] + }, + { + "pc": 1150, + "op": "PUSH1", + "gas": 1839078, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x51", + "0x3", + "0x1c0", + "0x9", + "0x3", + "0x1af", + "0x0", + "0x0" + ] + }, + { + "pc": 1152, + "op": "DUP3", + "gas": 1839075, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x51", + "0x3", + "0x1c0", + "0x9", + "0x3", + "0x1af", + "0x0", + "0x0", + "0x2" + ] + }, + { + "pc": 1153, + "op": "DIV", + "gas": 1839072, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x51", + "0x3", + "0x1c0", + "0x9", + "0x3", + "0x1af", + "0x0", + "0x0", + "0x2", + "0x0" + ] + }, + { + "pc": 1154, + "op": "SWAP1", + "gas": 1839067, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x51", + "0x3", + "0x1c0", + "0x9", + "0x3", + "0x1af", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 1155, + "op": "POP", + "gas": 1839064, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x51", + "0x3", + "0x1c0", + "0x9", + "0x3", + "0x1af", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 1156, + "op": "PUSH1", + "gas": 1839062, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x51", + "0x3", + "0x1c0", + "0x9", + "0x3", + "0x1af", + "0x0", + "0x0" + ] + }, + { + "pc": 1158, + "op": "DUP3", + "gas": 1839059, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x51", + "0x3", + "0x1c0", + "0x9", + "0x3", + "0x1af", + "0x0", + "0x0", + "0x1" + ] + }, + { + "pc": 1159, + "op": "AND", + "gas": 1839056, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x51", + "0x3", + "0x1c0", + "0x9", + "0x3", + "0x1af", + "0x0", + "0x0", + "0x1", + "0x0" + ] + }, + { + "pc": 1160, + "op": "DUP1", + "gas": 1839053, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x51", + "0x3", + "0x1c0", + "0x9", + "0x3", + "0x1af", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 1161, + "op": "PUSH3", + "gas": 1839050, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x51", + "0x3", + "0x1c0", + "0x9", + "0x3", + "0x1af", + "0x0", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 1165, + "op": "JUMPI", + "gas": 1839047, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x51", + "0x3", + "0x1c0", + "0x9", + "0x3", + "0x1af", + "0x0", + "0x0", + "0x0", + "0x0", + "0x494" + ] + }, + { + "pc": 1166, + "op": "PUSH1", + "gas": 1839037, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x51", + "0x3", + "0x1c0", + "0x9", + "0x3", + "0x1af", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 1168, + "op": "DUP3", + "gas": 1839034, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x51", + "0x3", + "0x1c0", + "0x9", + "0x3", + "0x1af", + "0x0", + "0x0", + "0x0", + "0x7f" + ] + }, + { + "pc": 1169, + "op": "AND", + "gas": 1839031, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x51", + "0x3", + "0x1c0", + "0x9", + "0x3", + "0x1af", + "0x0", + "0x0", + "0x0", + "0x7f", + "0x0" + ] + }, + { + "pc": 1170, + "op": "SWAP2", + "gas": 1839028, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x51", + "0x3", + "0x1c0", + "0x9", + "0x3", + "0x1af", + "0x0", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 1171, + "op": "POP", + "gas": 1839025, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x51", + "0x3", + "0x1c0", + "0x9", + "0x3", + "0x1af", + "0x0", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 1172, + "op": "JUMPDEST", + "gas": 1839023, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x51", + "0x3", + "0x1c0", + "0x9", + "0x3", + "0x1af", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 1173, + "op": "PUSH1", + "gas": 1839022, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x51", + "0x3", + "0x1c0", + "0x9", + "0x3", + "0x1af", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 1175, + "op": "DUP3", + "gas": 1839019, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x51", + "0x3", + "0x1c0", + "0x9", + "0x3", + "0x1af", + "0x0", + "0x0", + "0x0", + "0x20" + ] + }, + { + "pc": 1176, + "op": "LT", + "gas": 1839016, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x51", + "0x3", + "0x1c0", + "0x9", + "0x3", + "0x1af", + "0x0", + "0x0", + "0x0", + "0x20", + "0x0" + ] + }, + { + "pc": 1177, + "op": "DUP2", + "gas": 1839013, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x51", + "0x3", + "0x1c0", + "0x9", + "0x3", + "0x1af", + "0x0", + "0x0", + "0x0", + "0x1" + ] + }, + { + "pc": 1178, + "op": "EQ", + "gas": 1839010, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x51", + "0x3", + "0x1c0", + "0x9", + "0x3", + "0x1af", + "0x0", + "0x0", + "0x0", + "0x1", + "0x0" + ] + }, + { + "pc": 1179, + "op": "ISZERO", + "gas": 1839007, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x51", + "0x3", + "0x1c0", + "0x9", + "0x3", + "0x1af", + "0x0", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 1180, + "op": "PUSH3", + "gas": 1839004, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x51", + "0x3", + "0x1c0", + "0x9", + "0x3", + "0x1af", + "0x0", + "0x0", + "0x0", + "0x1" + ] + }, + { + "pc": 1184, + "op": "JUMPI", + "gas": 1839001, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x51", + "0x3", + "0x1c0", + "0x9", + "0x3", + "0x1af", + "0x0", + "0x0", + "0x0", + "0x1", + "0x4ab" + ] + }, + { + "pc": 1195, + "op": "JUMPDEST", + "gas": 1838991, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x51", + "0x3", + "0x1c0", + "0x9", + "0x3", + "0x1af", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 1196, + "op": "POP", + "gas": 1838990, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x51", + "0x3", + "0x1c0", + "0x9", + "0x3", + "0x1af", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 1197, + "op": "SWAP2", + "gas": 1838988, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x51", + "0x3", + "0x1c0", + "0x9", + "0x3", + "0x1af", + "0x0", + "0x0" + ] + }, + { + "pc": 1198, + "op": "SWAP1", + "gas": 1838985, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x51", + "0x3", + "0x1c0", + "0x9", + "0x3", + "0x0", + "0x0", + "0x1af" + ] + }, + { + "pc": 1199, + "op": "POP", + "gas": 1838982, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x51", + "0x3", + "0x1c0", + "0x9", + "0x3", + "0x0", + "0x1af", + "0x0" + ] + }, + { + "pc": 1200, + "op": "JUMP", + "gas": 1838980, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x51", + "0x3", + "0x1c0", + "0x9", + "0x3", + "0x0", + "0x1af" + ] + }, + { + "pc": 431, + "op": "JUMPDEST", + "gas": 1838972, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x51", + "0x3", + "0x1c0", + "0x9", + "0x3", + "0x0" + ] + }, + { + "pc": 432, + "op": "SWAP1", + "gas": 1838971, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x51", + "0x3", + "0x1c0", + "0x9", + "0x3", + "0x0" + ] + }, + { + "pc": 433, + "op": "PUSH1", + "gas": 1838968, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x51", + "0x3", + "0x1c0", + "0x9", + "0x0", + "0x3" + ] + }, + { + "pc": 435, + "op": "MSTORE", + "gas": 1838965, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x51", + "0x3", + "0x1c0", + "0x9", + "0x0", + "0x3", + "0x0" + ] + }, + { + "pc": 436, + "op": "PUSH1", + "gas": 1838962, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x51", + "0x3", + "0x1c0", + "0x9", + "0x0" + ] + }, + { + "pc": 438, + "op": "PUSH1", + "gas": 1838959, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x51", + "0x3", + "0x1c0", + "0x9", + "0x0", + "0x20" + ] + }, + { + "pc": 440, + "op": "SHA3", + "gas": 1838956, + "gasCost": 36, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x51", + "0x3", + "0x1c0", + "0x9", + "0x0", + "0x20", + "0x0" + ] + }, + { + "pc": 441, + "op": "SWAP1", + "gas": 1838920, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x51", + "0x3", + "0x1c0", + "0x9", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b" + ] + }, + { + "pc": 442, + "op": "PUSH1", + "gas": 1838917, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x51", + "0x3", + "0x1c0", + "0x9", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x0" + ] + }, + { + "pc": 444, + "op": "ADD", + "gas": 1838914, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x51", + "0x3", + "0x1c0", + "0x9", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x0", + "0x1f" + ] + }, + { + "pc": 445, + "op": "PUSH1", + "gas": 1838911, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x51", + "0x3", + "0x1c0", + "0x9", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x1f" + ] + }, + { + "pc": 447, + "op": "SWAP1", + "gas": 1838908, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x51", + "0x3", + "0x1c0", + "0x9", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x1f", + "0x20" + ] + }, + { + "pc": 448, + "op": "DIV", + "gas": 1838905, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x51", + "0x3", + "0x1c0", + "0x9", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x20", + "0x1f" + ] + }, + { + "pc": 449, + "op": "DUP2", + "gas": 1838900, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x51", + "0x3", + "0x1c0", + "0x9", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x0" + ] + }, + { + "pc": 450, + "op": "ADD", + "gas": 1838897, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x51", + "0x3", + "0x1c0", + "0x9", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x0", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b" + ] + }, + { + "pc": 451, + "op": "SWAP3", + "gas": 1838894, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x51", + "0x3", + "0x1c0", + "0x9", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b" + ] + }, + { + "pc": 452, + "op": "DUP3", + "gas": 1838891, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x51", + "0x3", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x9", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x1c0" + ] + }, + { + "pc": 453, + "op": "PUSH3", + "gas": 1838888, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x51", + "0x3", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x9", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x1c0", + "0x9" + ] + }, + { + "pc": 457, + "op": "JUMPI", + "gas": 1838885, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x51", + "0x3", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x9", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x1c0", + "0x9", + "0x1d3" + ] + }, + { + "pc": 467, + "op": "JUMPDEST", + "gas": 1838875, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x51", + "0x3", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x9", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x1c0" + ] + }, + { + "pc": 468, + "op": "DUP3", + "gas": 1838874, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x51", + "0x3", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x9", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x1c0" + ] + }, + { + "pc": 469, + "op": "PUSH1", + "gas": 1838871, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x51", + "0x3", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x9", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x1c0", + "0x9" + ] + }, + { + "pc": 471, + "op": "LT", + "gas": 1838868, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x51", + "0x3", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x9", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x1c0", + "0x9", + "0x1f" + ] + }, + { + "pc": 472, + "op": "PUSH3", + "gas": 1838865, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x51", + "0x3", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x9", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x1c0", + "0x0" + ] + }, + { + "pc": 476, + "op": "JUMPI", + "gas": 1838862, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x51", + "0x3", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x9", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x1c0", + "0x0", + "0x1ee" + ] + }, + { + "pc": 477, + "op": "DUP1", + "gas": 1838852, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x51", + "0x3", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x9", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x1c0" + ] + }, + { + "pc": 478, + "op": "MLOAD", + "gas": 1838849, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x51", + "0x3", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x9", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x1c0", + "0x1c0" + ] + }, + { + "pc": 479, + "op": "PUSH1", + "gas": 1838846, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x51", + "0x3", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x9", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x1c0", + "0x5553445420636f696e0000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 481, + "op": "NOT", + "gas": 1838843, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x51", + "0x3", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x9", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x1c0", + "0x5553445420636f696e0000000000000000000000000000000000000000000000", + "0xff" + ] + }, + { + "pc": 482, + "op": "AND", + "gas": 1838840, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x51", + "0x3", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x9", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x1c0", + "0x5553445420636f696e0000000000000000000000000000000000000000000000", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00" + ] + }, + { + "pc": 483, + "op": "DUP4", + "gas": 1838837, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x51", + "0x3", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x9", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x1c0", + "0x5553445420636f696e0000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 484, + "op": "DUP1", + "gas": 1838834, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x51", + "0x3", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x9", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x1c0", + "0x5553445420636f696e0000000000000000000000000000000000000000000000", + "0x9" + ] + }, + { + "pc": 485, + "op": "ADD", + "gas": 1838831, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x51", + "0x3", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x9", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x1c0", + "0x5553445420636f696e0000000000000000000000000000000000000000000000", + "0x9", + "0x9" + ] + }, + { + "pc": 486, + "op": "OR", + "gas": 1838828, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x51", + "0x3", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x9", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x1c0", + "0x5553445420636f696e0000000000000000000000000000000000000000000000", + "0x12" + ] + }, + { + "pc": 487, + "op": "DUP6", + "gas": 1838825, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x51", + "0x3", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x9", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x1c0", + "0x5553445420636f696e0000000000000000000000000000000000000000000012" + ] + }, + { + "pc": 488, + "op": "SSTORE", + "gas": 1838822, + "gasCost": 20000, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x51", + "0x3", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x9", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x1c0", + "0x5553445420636f696e0000000000000000000000000000000000000000000012", + "0x3" + ], + "storage": { + "0x0000000000000000000000000000000000000000000000000000000000000003": "0x5553445420636f696e0000000000000000000000000000000000000000000012" + }, + "extraData": { + "proofList": [ + { + "address": "0x08c683b684d1e24cab8ce6de5c8c628d993ac140", + "nonce": 1, + "balance": "0x0", + "codeHash": "0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470", + "storage": { + "key": "0x0000000000000000000000000000000000000000000000000000000000000003", + "value": "0x0000000000000000000000000000000000000000000000000000000000000000" + } + } + ] + } + }, + { + "pc": 489, + "op": "PUSH3", + "gas": 1818822, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x51", + "0x3", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x9", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x1c0" + ] + }, + { + "pc": 493, + "op": "JUMP", + "gas": 1818819, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x51", + "0x3", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x9", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x1c0", + "0x21f" + ] + }, + { + "pc": 543, + "op": "JUMPDEST", + "gas": 1818811, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x51", + "0x3", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x9", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x1c0" + ] + }, + { + "pc": 544, + "op": "POP", + "gas": 1818810, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x51", + "0x3", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x9", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x1c0" + ] + }, + { + "pc": 545, + "op": "SWAP1", + "gas": 1818808, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x51", + "0x3", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x9", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b" + ] + }, + { + "pc": 546, + "op": "POP", + "gas": 1818805, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x51", + "0x3", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x9" + ] + }, + { + "pc": 547, + "op": "PUSH3", + "gas": 1818803, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x51", + "0x3", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b" + ] + }, + { + "pc": 551, + "op": "SWAP2", + "gas": 1818800, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x51", + "0x3", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x22e" + ] + }, + { + "pc": 552, + "op": "SWAP1", + "gas": 1818797, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x51", + "0x3", + "0x22e", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b" + ] + }, + { + "pc": 553, + "op": "PUSH3", + "gas": 1818794, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x51", + "0x3", + "0x22e", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b" + ] + }, + { + "pc": 557, + "op": "JUMP", + "gas": 1818791, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x51", + "0x3", + "0x22e", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x232" + ] + }, + { + "pc": 562, + "op": "JUMPDEST", + "gas": 1818783, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x51", + "0x3", + "0x22e", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b" + ] + }, + { + "pc": 563, + "op": "JUMPDEST", + "gas": 1818782, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x51", + "0x3", + "0x22e", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b" + ] + }, + { + "pc": 564, + "op": "DUP1", + "gas": 1818781, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x51", + "0x3", + "0x22e", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b" + ] + }, + { + "pc": 565, + "op": "DUP3", + "gas": 1818778, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x51", + "0x3", + "0x22e", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b" + ] + }, + { + "pc": 566, + "op": "GT", + "gas": 1818775, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x51", + "0x3", + "0x22e", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b" + ] + }, + { + "pc": 567, + "op": "ISZERO", + "gas": 1818772, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x51", + "0x3", + "0x22e", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x0" + ] + }, + { + "pc": 568, + "op": "PUSH3", + "gas": 1818769, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x51", + "0x3", + "0x22e", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x1" + ] + }, + { + "pc": 572, + "op": "JUMPI", + "gas": 1818766, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x51", + "0x3", + "0x22e", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x1", + "0x24d" + ] + }, + { + "pc": 589, + "op": "JUMPDEST", + "gas": 1818756, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x51", + "0x3", + "0x22e", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b" + ] + }, + { + "pc": 590, + "op": "POP", + "gas": 1818755, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x51", + "0x3", + "0x22e", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b" + ] + }, + { + "pc": 591, + "op": "SWAP1", + "gas": 1818753, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x51", + "0x3", + "0x22e", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b" + ] + }, + { + "pc": 592, + "op": "JUMP", + "gas": 1818750, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x51", + "0x3", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b", + "0x22e" + ] + }, + { + "pc": 558, + "op": "JUMPDEST", + "gas": 1818742, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x51", + "0x3", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b" + ] + }, + { + "pc": 559, + "op": "POP", + "gas": 1818741, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x51", + "0x3", + "0xc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b" + ] + }, + { + "pc": 560, + "op": "SWAP1", + "gas": 1818739, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x51", + "0x3" + ] + }, + { + "pc": 561, + "op": "JUMP", + "gas": 1818736, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x3", + "0x51" + ] + }, + { + "pc": 81, + "op": "JUMPDEST", + "gas": 1818728, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x3" + ] + }, + { + "pc": 82, + "op": "POP", + "gas": 1818727, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x3" + ] + }, + { + "pc": 83, + "op": "DUP1", + "gas": 1818725, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0" + ] + }, + { + "pc": 84, + "op": "PUSH1", + "gas": 1818722, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x1e0" + ] + }, + { + "pc": 86, + "op": "SWAP1", + "gas": 1818719, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x1e0", + "0x4" + ] + }, + { + "pc": 87, + "op": "DUP1", + "gas": 1818716, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x4", + "0x1e0" + ] + }, + { + "pc": 88, + "op": "MLOAD", + "gas": 1818713, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x4", + "0x1e0", + "0x1e0" + ] + }, + { + "pc": 89, + "op": "SWAP1", + "gas": 1818710, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x4", + "0x1e0", + "0x4" + ] + }, + { + "pc": 90, + "op": "PUSH1", + "gas": 1818707, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x4", + "0x4", + "0x1e0" + ] + }, + { + "pc": 92, + "op": "ADD", + "gas": 1818704, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x4", + "0x4", + "0x1e0", + "0x20" + ] + }, + { + "pc": 93, + "op": "SWAP1", + "gas": 1818701, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x4", + "0x4", + "0x200" + ] + }, + { + "pc": 94, + "op": "PUSH3", + "gas": 1818698, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x4", + "0x200", + "0x4" + ] + }, + { + "pc": 98, + "op": "SWAP3", + "gas": 1818695, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x4", + "0x200", + "0x4", + "0x6a" + ] + }, + { + "pc": 99, + "op": "SWAP2", + "gas": 1818692, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x6a", + "0x200", + "0x4", + "0x4" + ] + }, + { + "pc": 100, + "op": "SWAP1", + "gas": 1818689, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x6a", + "0x4", + "0x4", + "0x200" + ] + }, + { + "pc": 101, + "op": "PUSH3", + "gas": 1818686, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x6a", + "0x4", + "0x200", + "0x4" + ] + }, + { + "pc": 105, + "op": "JUMP", + "gas": 1818683, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x6a", + "0x4", + "0x200", + "0x4", + "0x1a1" + ] + }, + { + "pc": 417, + "op": "JUMPDEST", + "gas": 1818675, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x6a", + "0x4", + "0x200", + "0x4" + ] + }, + { + "pc": 418, + "op": "DUP3", + "gas": 1818674, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x6a", + "0x4", + "0x200", + "0x4" + ] + }, + { + "pc": 419, + "op": "DUP1", + "gas": 1818671, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x6a", + "0x4", + "0x200", + "0x4", + "0x4" + ] + }, + { + "pc": 420, + "op": "SLOAD", + "gas": 1818668, + "gasCost": 2100, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x6a", + "0x4", + "0x200", + "0x4", + "0x4", + "0x4" + ], + "storage": { + "0x0000000000000000000000000000000000000000000000000000000000000003": "0x5553445420636f696e0000000000000000000000000000000000000000000012", + "0x0000000000000000000000000000000000000000000000000000000000000004": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "extraData": { + "proofList": [ + { + "address": "0x08c683b684d1e24cab8ce6de5c8c628d993ac140", + "nonce": 1, + "balance": "0x0", + "codeHash": "0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470", + "storage": { + "key": "0x0000000000000000000000000000000000000000000000000000000000000004", + "value": "0x0000000000000000000000000000000000000000000000000000000000000000" + } + } + ] + } + }, + { + "pc": 421, + "op": "PUSH3", + "gas": 1816568, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x6a", + "0x4", + "0x200", + "0x4", + "0x4", + "0x0" + ] + }, + { + "pc": 425, + "op": "SWAP1", + "gas": 1816565, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x6a", + "0x4", + "0x200", + "0x4", + "0x4", + "0x0", + "0x1af" + ] + }, + { + "pc": 426, + "op": "PUSH3", + "gas": 1816562, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x6a", + "0x4", + "0x200", + "0x4", + "0x4", + "0x1af", + "0x0" + ] + }, + { + "pc": 430, + "op": "JUMP", + "gas": 1816559, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x6a", + "0x4", + "0x200", + "0x4", + "0x4", + "0x1af", + "0x0", + "0x47b" + ] + }, + { + "pc": 1147, + "op": "JUMPDEST", + "gas": 1816551, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x6a", + "0x4", + "0x200", + "0x4", + "0x4", + "0x1af", + "0x0" + ] + }, + { + "pc": 1148, + "op": "PUSH1", + "gas": 1816550, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x6a", + "0x4", + "0x200", + "0x4", + "0x4", + "0x1af", + "0x0" + ] + }, + { + "pc": 1150, + "op": "PUSH1", + "gas": 1816547, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x6a", + "0x4", + "0x200", + "0x4", + "0x4", + "0x1af", + "0x0", + "0x0" + ] + }, + { + "pc": 1152, + "op": "DUP3", + "gas": 1816544, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x6a", + "0x4", + "0x200", + "0x4", + "0x4", + "0x1af", + "0x0", + "0x0", + "0x2" + ] + }, + { + "pc": 1153, + "op": "DIV", + "gas": 1816541, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x6a", + "0x4", + "0x200", + "0x4", + "0x4", + "0x1af", + "0x0", + "0x0", + "0x2", + "0x0" + ] + }, + { + "pc": 1154, + "op": "SWAP1", + "gas": 1816536, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x6a", + "0x4", + "0x200", + "0x4", + "0x4", + "0x1af", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 1155, + "op": "POP", + "gas": 1816533, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x6a", + "0x4", + "0x200", + "0x4", + "0x4", + "0x1af", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 1156, + "op": "PUSH1", + "gas": 1816531, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x6a", + "0x4", + "0x200", + "0x4", + "0x4", + "0x1af", + "0x0", + "0x0" + ] + }, + { + "pc": 1158, + "op": "DUP3", + "gas": 1816528, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x6a", + "0x4", + "0x200", + "0x4", + "0x4", + "0x1af", + "0x0", + "0x0", + "0x1" + ] + }, + { + "pc": 1159, + "op": "AND", + "gas": 1816525, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x6a", + "0x4", + "0x200", + "0x4", + "0x4", + "0x1af", + "0x0", + "0x0", + "0x1", + "0x0" + ] + }, + { + "pc": 1160, + "op": "DUP1", + "gas": 1816522, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x6a", + "0x4", + "0x200", + "0x4", + "0x4", + "0x1af", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 1161, + "op": "PUSH3", + "gas": 1816519, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x6a", + "0x4", + "0x200", + "0x4", + "0x4", + "0x1af", + "0x0", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 1165, + "op": "JUMPI", + "gas": 1816516, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x6a", + "0x4", + "0x200", + "0x4", + "0x4", + "0x1af", + "0x0", + "0x0", + "0x0", + "0x0", + "0x494" + ] + }, + { + "pc": 1166, + "op": "PUSH1", + "gas": 1816506, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x6a", + "0x4", + "0x200", + "0x4", + "0x4", + "0x1af", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 1168, + "op": "DUP3", + "gas": 1816503, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x6a", + "0x4", + "0x200", + "0x4", + "0x4", + "0x1af", + "0x0", + "0x0", + "0x0", + "0x7f" + ] + }, + { + "pc": 1169, + "op": "AND", + "gas": 1816500, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x6a", + "0x4", + "0x200", + "0x4", + "0x4", + "0x1af", + "0x0", + "0x0", + "0x0", + "0x7f", + "0x0" + ] + }, + { + "pc": 1170, + "op": "SWAP2", + "gas": 1816497, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x6a", + "0x4", + "0x200", + "0x4", + "0x4", + "0x1af", + "0x0", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 1171, + "op": "POP", + "gas": 1816494, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x6a", + "0x4", + "0x200", + "0x4", + "0x4", + "0x1af", + "0x0", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 1172, + "op": "JUMPDEST", + "gas": 1816492, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x6a", + "0x4", + "0x200", + "0x4", + "0x4", + "0x1af", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 1173, + "op": "PUSH1", + "gas": 1816491, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x6a", + "0x4", + "0x200", + "0x4", + "0x4", + "0x1af", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 1175, + "op": "DUP3", + "gas": 1816488, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x6a", + "0x4", + "0x200", + "0x4", + "0x4", + "0x1af", + "0x0", + "0x0", + "0x0", + "0x20" + ] + }, + { + "pc": 1176, + "op": "LT", + "gas": 1816485, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x6a", + "0x4", + "0x200", + "0x4", + "0x4", + "0x1af", + "0x0", + "0x0", + "0x0", + "0x20", + "0x0" + ] + }, + { + "pc": 1177, + "op": "DUP2", + "gas": 1816482, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x6a", + "0x4", + "0x200", + "0x4", + "0x4", + "0x1af", + "0x0", + "0x0", + "0x0", + "0x1" + ] + }, + { + "pc": 1178, + "op": "EQ", + "gas": 1816479, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x6a", + "0x4", + "0x200", + "0x4", + "0x4", + "0x1af", + "0x0", + "0x0", + "0x0", + "0x1", + "0x0" + ] + }, + { + "pc": 1179, + "op": "ISZERO", + "gas": 1816476, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x6a", + "0x4", + "0x200", + "0x4", + "0x4", + "0x1af", + "0x0", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 1180, + "op": "PUSH3", + "gas": 1816473, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x6a", + "0x4", + "0x200", + "0x4", + "0x4", + "0x1af", + "0x0", + "0x0", + "0x0", + "0x1" + ] + }, + { + "pc": 1184, + "op": "JUMPI", + "gas": 1816470, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x6a", + "0x4", + "0x200", + "0x4", + "0x4", + "0x1af", + "0x0", + "0x0", + "0x0", + "0x1", + "0x4ab" + ] + }, + { + "pc": 1195, + "op": "JUMPDEST", + "gas": 1816460, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x6a", + "0x4", + "0x200", + "0x4", + "0x4", + "0x1af", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 1196, + "op": "POP", + "gas": 1816459, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x6a", + "0x4", + "0x200", + "0x4", + "0x4", + "0x1af", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 1197, + "op": "SWAP2", + "gas": 1816457, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x6a", + "0x4", + "0x200", + "0x4", + "0x4", + "0x1af", + "0x0", + "0x0" + ] + }, + { + "pc": 1198, + "op": "SWAP1", + "gas": 1816454, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x6a", + "0x4", + "0x200", + "0x4", + "0x4", + "0x0", + "0x0", + "0x1af" + ] + }, + { + "pc": 1199, + "op": "POP", + "gas": 1816451, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x6a", + "0x4", + "0x200", + "0x4", + "0x4", + "0x0", + "0x1af", + "0x0" + ] + }, + { + "pc": 1200, + "op": "JUMP", + "gas": 1816449, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x6a", + "0x4", + "0x200", + "0x4", + "0x4", + "0x0", + "0x1af" + ] + }, + { + "pc": 431, + "op": "JUMPDEST", + "gas": 1816441, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x6a", + "0x4", + "0x200", + "0x4", + "0x4", + "0x0" + ] + }, + { + "pc": 432, + "op": "SWAP1", + "gas": 1816440, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x6a", + "0x4", + "0x200", + "0x4", + "0x4", + "0x0" + ] + }, + { + "pc": 433, + "op": "PUSH1", + "gas": 1816437, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x6a", + "0x4", + "0x200", + "0x4", + "0x0", + "0x4" + ] + }, + { + "pc": 435, + "op": "MSTORE", + "gas": 1816434, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x6a", + "0x4", + "0x200", + "0x4", + "0x0", + "0x4", + "0x0" + ] + }, + { + "pc": 436, + "op": "PUSH1", + "gas": 1816431, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x6a", + "0x4", + "0x200", + "0x4", + "0x0" + ] + }, + { + "pc": 438, + "op": "PUSH1", + "gas": 1816428, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x6a", + "0x4", + "0x200", + "0x4", + "0x0", + "0x20" + ] + }, + { + "pc": 440, + "op": "SHA3", + "gas": 1816425, + "gasCost": 36, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x6a", + "0x4", + "0x200", + "0x4", + "0x0", + "0x20", + "0x0" + ] + }, + { + "pc": 441, + "op": "SWAP1", + "gas": 1816389, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x6a", + "0x4", + "0x200", + "0x4", + "0x0", + "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b" + ] + }, + { + "pc": 442, + "op": "PUSH1", + "gas": 1816386, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x6a", + "0x4", + "0x200", + "0x4", + "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b", + "0x0" + ] + }, + { + "pc": 444, + "op": "ADD", + "gas": 1816383, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x6a", + "0x4", + "0x200", + "0x4", + "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b", + "0x0", + "0x1f" + ] + }, + { + "pc": 445, + "op": "PUSH1", + "gas": 1816380, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x6a", + "0x4", + "0x200", + "0x4", + "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b", + "0x1f" + ] + }, + { + "pc": 447, + "op": "SWAP1", + "gas": 1816377, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x6a", + "0x4", + "0x200", + "0x4", + "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b", + "0x1f", + "0x20" + ] + }, + { + "pc": 448, + "op": "DIV", + "gas": 1816374, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x6a", + "0x4", + "0x200", + "0x4", + "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b", + "0x20", + "0x1f" + ] + }, + { + "pc": 449, + "op": "DUP2", + "gas": 1816369, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x6a", + "0x4", + "0x200", + "0x4", + "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b", + "0x0" + ] + }, + { + "pc": 450, + "op": "ADD", + "gas": 1816366, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x6a", + "0x4", + "0x200", + "0x4", + "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b", + "0x0", + "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b" + ] + }, + { + "pc": 451, + "op": "SWAP3", + "gas": 1816363, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x6a", + "0x4", + "0x200", + "0x4", + "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b", + "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b" + ] + }, + { + "pc": 452, + "op": "DUP3", + "gas": 1816360, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x6a", + "0x4", + "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b", + "0x4", + "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b", + "0x200" + ] + }, + { + "pc": 453, + "op": "PUSH3", + "gas": 1816357, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x6a", + "0x4", + "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b", + "0x4", + "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b", + "0x200", + "0x4" + ] + }, + { + "pc": 457, + "op": "JUMPI", + "gas": 1816354, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x6a", + "0x4", + "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b", + "0x4", + "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b", + "0x200", + "0x4", + "0x1d3" + ] + }, + { + "pc": 467, + "op": "JUMPDEST", + "gas": 1816344, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x6a", + "0x4", + "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b", + "0x4", + "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b", + "0x200" + ] + }, + { + "pc": 468, + "op": "DUP3", + "gas": 1816343, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x6a", + "0x4", + "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b", + "0x4", + "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b", + "0x200" + ] + }, + { + "pc": 469, + "op": "PUSH1", + "gas": 1816340, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x6a", + "0x4", + "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b", + "0x4", + "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b", + "0x200", + "0x4" + ] + }, + { + "pc": 471, + "op": "LT", + "gas": 1816337, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x6a", + "0x4", + "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b", + "0x4", + "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b", + "0x200", + "0x4", + "0x1f" + ] + }, + { + "pc": 472, + "op": "PUSH3", + "gas": 1816334, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x6a", + "0x4", + "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b", + "0x4", + "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b", + "0x200", + "0x0" + ] + }, + { + "pc": 476, + "op": "JUMPI", + "gas": 1816331, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x6a", + "0x4", + "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b", + "0x4", + "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b", + "0x200", + "0x0", + "0x1ee" + ] + }, + { + "pc": 477, + "op": "DUP1", + "gas": 1816321, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x6a", + "0x4", + "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b", + "0x4", + "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b", + "0x200" + ] + }, + { + "pc": 478, + "op": "MLOAD", + "gas": 1816318, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x6a", + "0x4", + "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b", + "0x4", + "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b", + "0x200", + "0x200" + ] + }, + { + "pc": 479, + "op": "PUSH1", + "gas": 1816315, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x6a", + "0x4", + "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b", + "0x4", + "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b", + "0x200", + "0x5553445400000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 481, + "op": "NOT", + "gas": 1816312, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x6a", + "0x4", + "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b", + "0x4", + "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b", + "0x200", + "0x5553445400000000000000000000000000000000000000000000000000000000", + "0xff" + ] + }, + { + "pc": 482, + "op": "AND", + "gas": 1816309, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x6a", + "0x4", + "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b", + "0x4", + "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b", + "0x200", + "0x5553445400000000000000000000000000000000000000000000000000000000", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00" + ] + }, + { + "pc": 483, + "op": "DUP4", + "gas": 1816306, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x6a", + "0x4", + "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b", + "0x4", + "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b", + "0x200", + "0x5553445400000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 484, + "op": "DUP1", + "gas": 1816303, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x6a", + "0x4", + "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b", + "0x4", + "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b", + "0x200", + "0x5553445400000000000000000000000000000000000000000000000000000000", + "0x4" + ] + }, + { + "pc": 485, + "op": "ADD", + "gas": 1816300, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x6a", + "0x4", + "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b", + "0x4", + "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b", + "0x200", + "0x5553445400000000000000000000000000000000000000000000000000000000", + "0x4", + "0x4" + ] + }, + { + "pc": 486, + "op": "OR", + "gas": 1816297, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x6a", + "0x4", + "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b", + "0x4", + "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b", + "0x200", + "0x5553445400000000000000000000000000000000000000000000000000000000", + "0x8" + ] + }, + { + "pc": 487, + "op": "DUP6", + "gas": 1816294, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x6a", + "0x4", + "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b", + "0x4", + "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b", + "0x200", + "0x5553445400000000000000000000000000000000000000000000000000000008" + ] + }, + { + "pc": 488, + "op": "SSTORE", + "gas": 1816291, + "gasCost": 20000, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x6a", + "0x4", + "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b", + "0x4", + "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b", + "0x200", + "0x5553445400000000000000000000000000000000000000000000000000000008", + "0x4" + ], + "storage": { + "0x0000000000000000000000000000000000000000000000000000000000000003": "0x5553445420636f696e0000000000000000000000000000000000000000000012", + "0x0000000000000000000000000000000000000000000000000000000000000004": "0x5553445400000000000000000000000000000000000000000000000000000008" + }, + "extraData": { + "proofList": [ + { + "address": "0x08c683b684d1e24cab8ce6de5c8c628d993ac140", + "nonce": 1, + "balance": "0x0", + "codeHash": "0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470", + "storage": { + "key": "0x0000000000000000000000000000000000000000000000000000000000000004", + "value": "0x0000000000000000000000000000000000000000000000000000000000000000" + } + } + ] + } + }, + { + "pc": 489, + "op": "PUSH3", + "gas": 1796291, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x6a", + "0x4", + "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b", + "0x4", + "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b", + "0x200" + ] + }, + { + "pc": 493, + "op": "JUMP", + "gas": 1796288, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x6a", + "0x4", + "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b", + "0x4", + "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b", + "0x200", + "0x21f" + ] + }, + { + "pc": 543, + "op": "JUMPDEST", + "gas": 1796280, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x6a", + "0x4", + "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b", + "0x4", + "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b", + "0x200" + ] + }, + { + "pc": 544, + "op": "POP", + "gas": 1796279, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x6a", + "0x4", + "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b", + "0x4", + "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b", + "0x200" + ] + }, + { + "pc": 545, + "op": "SWAP1", + "gas": 1796277, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x6a", + "0x4", + "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b", + "0x4", + "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b" + ] + }, + { + "pc": 546, + "op": "POP", + "gas": 1796274, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x6a", + "0x4", + "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b", + "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b", + "0x4" + ] + }, + { + "pc": 547, + "op": "PUSH3", + "gas": 1796272, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x6a", + "0x4", + "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b", + "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b" + ] + }, + { + "pc": 551, + "op": "SWAP2", + "gas": 1796269, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x6a", + "0x4", + "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b", + "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b", + "0x22e" + ] + }, + { + "pc": 552, + "op": "SWAP1", + "gas": 1796266, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x6a", + "0x4", + "0x22e", + "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b", + "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b" + ] + }, + { + "pc": 553, + "op": "PUSH3", + "gas": 1796263, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x6a", + "0x4", + "0x22e", + "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b", + "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b" + ] + }, + { + "pc": 557, + "op": "JUMP", + "gas": 1796260, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x6a", + "0x4", + "0x22e", + "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b", + "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b", + "0x232" + ] + }, + { + "pc": 562, + "op": "JUMPDEST", + "gas": 1796252, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x6a", + "0x4", + "0x22e", + "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b", + "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b" + ] + }, + { + "pc": 563, + "op": "JUMPDEST", + "gas": 1796251, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x6a", + "0x4", + "0x22e", + "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b", + "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b" + ] + }, + { + "pc": 564, + "op": "DUP1", + "gas": 1796250, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x6a", + "0x4", + "0x22e", + "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b", + "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b" + ] + }, + { + "pc": 565, + "op": "DUP3", + "gas": 1796247, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x6a", + "0x4", + "0x22e", + "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b", + "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b", + "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b" + ] + }, + { + "pc": 566, + "op": "GT", + "gas": 1796244, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x6a", + "0x4", + "0x22e", + "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b", + "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b", + "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b", + "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b" + ] + }, + { + "pc": 567, + "op": "ISZERO", + "gas": 1796241, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x6a", + "0x4", + "0x22e", + "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b", + "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b", + "0x0" + ] + }, + { + "pc": 568, + "op": "PUSH3", + "gas": 1796238, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x6a", + "0x4", + "0x22e", + "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b", + "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b", + "0x1" + ] + }, + { + "pc": 572, + "op": "JUMPI", + "gas": 1796235, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x6a", + "0x4", + "0x22e", + "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b", + "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b", + "0x1", + "0x24d" + ] + }, + { + "pc": 589, + "op": "JUMPDEST", + "gas": 1796225, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x6a", + "0x4", + "0x22e", + "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b", + "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b" + ] + }, + { + "pc": 590, + "op": "POP", + "gas": 1796224, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x6a", + "0x4", + "0x22e", + "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b", + "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b" + ] + }, + { + "pc": 591, + "op": "SWAP1", + "gas": 1796222, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x6a", + "0x4", + "0x22e", + "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b" + ] + }, + { + "pc": 592, + "op": "JUMP", + "gas": 1796219, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x6a", + "0x4", + "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b", + "0x22e" + ] + }, + { + "pc": 558, + "op": "JUMPDEST", + "gas": 1796211, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x6a", + "0x4", + "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b" + ] + }, + { + "pc": 559, + "op": "POP", + "gas": 1796210, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x6a", + "0x4", + "0x8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b" + ] + }, + { + "pc": 560, + "op": "SWAP1", + "gas": 1796208, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x6a", + "0x4" + ] + }, + { + "pc": 561, + "op": "JUMP", + "gas": 1796205, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x4", + "0x6a" + ] + }, + { + "pc": 106, + "op": "JUMPDEST", + "gas": 1796197, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x4" + ] + }, + { + "pc": 107, + "op": "POP", + "gas": 1796196, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x4" + ] + }, + { + "pc": 108, + "op": "PUSH1", + "gas": 1796194, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0" + ] + }, + { + "pc": 110, + "op": "PUSH1", + "gas": 1796191, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x12" + ] + }, + { + "pc": 112, + "op": "PUSH1", + "gas": 1796188, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x12", + "0x5" + ] + }, + { + "pc": 114, + "op": "PUSH2", + "gas": 1796185, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x12", + "0x5", + "0x0" + ] + }, + { + "pc": 117, + "op": "EXP", + "gas": 1796182, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x12", + "0x5", + "0x0", + "0x100" + ] + }, + { + "pc": 118, + "op": "DUP2", + "gas": 1796172, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x12", + "0x5", + "0x1" + ] + }, + { + "pc": 119, + "op": "SLOAD", + "gas": 1796169, + "gasCost": 2100, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x12", + "0x5", + "0x1", + "0x5" + ], + "storage": { + "0x0000000000000000000000000000000000000000000000000000000000000003": "0x5553445420636f696e0000000000000000000000000000000000000000000012", + "0x0000000000000000000000000000000000000000000000000000000000000004": "0x5553445400000000000000000000000000000000000000000000000000000008", + "0x0000000000000000000000000000000000000000000000000000000000000005": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "extraData": { + "proofList": [ + { + "address": "0x08c683b684d1e24cab8ce6de5c8c628d993ac140", + "nonce": 1, + "balance": "0x0", + "codeHash": "0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470", + "storage": { + "key": "0x0000000000000000000000000000000000000000000000000000000000000005", + "value": "0x0000000000000000000000000000000000000000000000000000000000000000" + } + } + ] + } + }, + { + "pc": 120, + "op": "DUP2", + "gas": 1794069, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x12", + "0x5", + "0x1", + "0x0" + ] + }, + { + "pc": 121, + "op": "PUSH1", + "gas": 1794066, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x12", + "0x5", + "0x1", + "0x0", + "0x1" + ] + }, + { + "pc": 123, + "op": "MUL", + "gas": 1794063, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x12", + "0x5", + "0x1", + "0x0", + "0x1", + "0xff" + ] + }, + { + "pc": 124, + "op": "NOT", + "gas": 1794058, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x12", + "0x5", + "0x1", + "0x0", + "0xff" + ] + }, + { + "pc": 125, + "op": "AND", + "gas": 1794055, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x12", + "0x5", + "0x1", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00" + ] + }, + { + "pc": 126, + "op": "SWAP1", + "gas": 1794052, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x12", + "0x5", + "0x1", + "0x0" + ] + }, + { + "pc": 127, + "op": "DUP4", + "gas": 1794049, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x12", + "0x5", + "0x0", + "0x1" + ] + }, + { + "pc": 128, + "op": "PUSH1", + "gas": 1794046, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x12", + "0x5", + "0x0", + "0x1", + "0x12" + ] + }, + { + "pc": 130, + "op": "AND", + "gas": 1794043, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x12", + "0x5", + "0x0", + "0x1", + "0x12", + "0xff" + ] + }, + { + "pc": 131, + "op": "MUL", + "gas": 1794040, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x12", + "0x5", + "0x0", + "0x1", + "0x12" + ] + }, + { + "pc": 132, + "op": "OR", + "gas": 1794035, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x12", + "0x5", + "0x0", + "0x12" + ] + }, + { + "pc": 133, + "op": "SWAP1", + "gas": 1794032, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x12", + "0x5", + "0x12" + ] + }, + { + "pc": 134, + "op": "SSTORE", + "gas": 1794029, + "gasCost": 20000, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x12", + "0x12", + "0x5" + ], + "storage": { + "0x0000000000000000000000000000000000000000000000000000000000000003": "0x5553445420636f696e0000000000000000000000000000000000000000000012", + "0x0000000000000000000000000000000000000000000000000000000000000004": "0x5553445400000000000000000000000000000000000000000000000000000008", + "0x0000000000000000000000000000000000000000000000000000000000000005": "0x0000000000000000000000000000000000000000000000000000000000000012" + }, + "extraData": { + "proofList": [ + { + "address": "0x08c683b684d1e24cab8ce6de5c8c628d993ac140", + "nonce": 1, + "balance": "0x0", + "codeHash": "0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470", + "storage": { + "key": "0x0000000000000000000000000000000000000000000000000000000000000005", + "value": "0x0000000000000000000000000000000000000000000000000000000000000000" + } + } + ] + } + }, + { + "pc": 135, + "op": "POP", + "gas": 1774029, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0", + "0x12" + ] + }, + { + "pc": 136, + "op": "POP", + "gas": 1774027, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0", + "0x1e0" + ] + }, + { + "pc": 137, + "op": "POP", + "gas": 1774025, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x1a0" + ] + }, + { + "pc": 138, + "op": "PUSH1", + "gas": 1774023, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12" + ] + }, + { + "pc": 140, + "op": "PUSH1", + "gas": 1774020, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x0" + ] + }, + { + "pc": 142, + "op": "PUSH1", + "gas": 1774017, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x0", + "0x5" + ] + }, + { + "pc": 144, + "op": "PUSH2", + "gas": 1774014, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x0", + "0x5", + "0x1" + ] + }, + { + "pc": 147, + "op": "EXP", + "gas": 1774011, + "gasCost": 60, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x0", + "0x5", + "0x1", + "0x100" + ] + }, + { + "pc": 148, + "op": "DUP2", + "gas": 1773951, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x0", + "0x5", + "0x100" + ] + }, + { + "pc": 149, + "op": "SLOAD", + "gas": 1773948, + "gasCost": 100, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x0", + "0x5", + "0x100", + "0x5" + ], + "storage": { + "0x0000000000000000000000000000000000000000000000000000000000000003": "0x5553445420636f696e0000000000000000000000000000000000000000000012", + "0x0000000000000000000000000000000000000000000000000000000000000004": "0x5553445400000000000000000000000000000000000000000000000000000008", + "0x0000000000000000000000000000000000000000000000000000000000000005": "0x0000000000000000000000000000000000000000000000000000000000000012" + }, + "extraData": { + "proofList": [ + { + "address": "0x08c683b684d1e24cab8ce6de5c8c628d993ac140", + "nonce": 1, + "balance": "0x0", + "codeHash": "0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470", + "storage": { + "key": "0x0000000000000000000000000000000000000000000000000000000000000005", + "value": "0x0000000000000000000000000000000000000000000000000000000000000012" + } + } + ] + } + }, + { + "pc": 150, + "op": "DUP2", + "gas": 1773848, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x0", + "0x5", + "0x100", + "0x12" + ] + }, + { + "pc": 151, + "op": "PUSH1", + "gas": 1773845, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x0", + "0x5", + "0x100", + "0x12", + "0x100" + ] + }, + { + "pc": 153, + "op": "MUL", + "gas": 1773842, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x0", + "0x5", + "0x100", + "0x12", + "0x100", + "0xff" + ] + }, + { + "pc": 154, + "op": "NOT", + "gas": 1773837, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x0", + "0x5", + "0x100", + "0x12", + "0xff00" + ] + }, + { + "pc": 155, + "op": "AND", + "gas": 1773834, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x0", + "0x5", + "0x100", + "0x12", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff" + ] + }, + { + "pc": 156, + "op": "SWAP1", + "gas": 1773831, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x0", + "0x5", + "0x100", + "0x12" + ] + }, + { + "pc": 157, + "op": "DUP4", + "gas": 1773828, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x0", + "0x5", + "0x12", + "0x100" + ] + }, + { + "pc": 158, + "op": "ISZERO", + "gas": 1773825, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x0", + "0x5", + "0x12", + "0x100", + "0x0" + ] + }, + { + "pc": 159, + "op": "ISZERO", + "gas": 1773822, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x0", + "0x5", + "0x12", + "0x100", + "0x1" + ] + }, + { + "pc": 160, + "op": "MUL", + "gas": 1773819, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x0", + "0x5", + "0x12", + "0x100", + "0x0" + ] + }, + { + "pc": 161, + "op": "OR", + "gas": 1773814, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x0", + "0x5", + "0x12", + "0x0" + ] + }, + { + "pc": 162, + "op": "SWAP1", + "gas": 1773811, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x0", + "0x5", + "0x12" + ] + }, + { + "pc": 163, + "op": "SSTORE", + "gas": 1773808, + "gasCost": 100, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x0", + "0x12", + "0x5" + ], + "storage": { + "0x0000000000000000000000000000000000000000000000000000000000000003": "0x5553445420636f696e0000000000000000000000000000000000000000000012", + "0x0000000000000000000000000000000000000000000000000000000000000004": "0x5553445400000000000000000000000000000000000000000000000000000008", + "0x0000000000000000000000000000000000000000000000000000000000000005": "0x0000000000000000000000000000000000000000000000000000000000000012" + }, + "extraData": { + "proofList": [ + { + "address": "0x08c683b684d1e24cab8ce6de5c8c628d993ac140", + "nonce": 1, + "balance": "0x0", + "codeHash": "0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470", + "storage": { + "key": "0x0000000000000000000000000000000000000000000000000000000000000005", + "value": "0x0000000000000000000000000000000000000000000000000000000000000012" + } + } + ] + } + }, + { + "pc": 164, + "op": "POP", + "gas": 1773708, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x0" + ] + }, + { + "pc": 165, + "op": "DUP5", + "gas": 1773706, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12" + ] + }, + { + "pc": 166, + "op": "PUSH1", + "gas": 1773703, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 168, + "op": "PUSH1", + "gas": 1773700, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x6" + ] + }, + { + "pc": 170, + "op": "PUSH2", + "gas": 1773697, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x6", + "0x0" + ] + }, + { + "pc": 173, + "op": "EXP", + "gas": 1773694, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x6", + "0x0", + "0x100" + ] + }, + { + "pc": 174, + "op": "DUP2", + "gas": 1773684, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x6", + "0x1" + ] + }, + { + "pc": 175, + "op": "SLOAD", + "gas": 1773681, + "gasCost": 2100, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x6", + "0x1", + "0x6" + ], + "storage": { + "0x0000000000000000000000000000000000000000000000000000000000000003": "0x5553445420636f696e0000000000000000000000000000000000000000000012", + "0x0000000000000000000000000000000000000000000000000000000000000004": "0x5553445400000000000000000000000000000000000000000000000000000008", + "0x0000000000000000000000000000000000000000000000000000000000000005": "0x0000000000000000000000000000000000000000000000000000000000000012", + "0x0000000000000000000000000000000000000000000000000000000000000006": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "extraData": { + "proofList": [ + { + "address": "0x08c683b684d1e24cab8ce6de5c8c628d993ac140", + "nonce": 1, + "balance": "0x0", + "codeHash": "0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470", + "storage": { + "key": "0x0000000000000000000000000000000000000000000000000000000000000006", + "value": "0x0000000000000000000000000000000000000000000000000000000000000000" + } + } + ] + } + }, + { + "pc": 176, + "op": "DUP2", + "gas": 1771581, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x6", + "0x1", + "0x0" + ] + }, + { + "pc": 177, + "op": "PUSH20", + "gas": 1771578, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x6", + "0x1", + "0x0", + "0x1" + ] + }, + { + "pc": 198, + "op": "MUL", + "gas": 1771575, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x6", + "0x1", + "0x0", + "0x1", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 199, + "op": "NOT", + "gas": 1771570, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x6", + "0x1", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 200, + "op": "AND", + "gas": 1771567, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x6", + "0x1", + "0x0", + "0xffffffffffffffffffffffff0000000000000000000000000000000000000000" + ] + }, + { + "pc": 201, + "op": "SWAP1", + "gas": 1771564, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x6", + "0x1", + "0x0" + ] + }, + { + "pc": 202, + "op": "DUP4", + "gas": 1771561, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x6", + "0x0", + "0x1" + ] + }, + { + "pc": 203, + "op": "PUSH20", + "gas": 1771558, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x6", + "0x0", + "0x1", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 224, + "op": "AND", + "gas": 1771555, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x6", + "0x0", + "0x1", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 225, + "op": "MUL", + "gas": 1771552, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x6", + "0x0", + "0x1", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 226, + "op": "OR", + "gas": 1771547, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x6", + "0x0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 227, + "op": "SWAP1", + "gas": 1771544, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x6", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 228, + "op": "SSTORE", + "gas": 1771541, + "gasCost": 20000, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x6" + ], + "storage": { + "0x0000000000000000000000000000000000000000000000000000000000000003": "0x5553445420636f696e0000000000000000000000000000000000000000000012", + "0x0000000000000000000000000000000000000000000000000000000000000004": "0x5553445400000000000000000000000000000000000000000000000000000008", + "0x0000000000000000000000000000000000000000000000000000000000000005": "0x0000000000000000000000000000000000000000000000000000000000000012", + "0x0000000000000000000000000000000000000000000000000000000000000006": "0x0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + }, + "extraData": { + "proofList": [ + { + "address": "0x08c683b684d1e24cab8ce6de5c8c628d993ac140", + "nonce": 1, + "balance": "0x0", + "codeHash": "0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470", + "storage": { + "key": "0x0000000000000000000000000000000000000000000000000000000000000006", + "value": "0x0000000000000000000000000000000000000000000000000000000000000000" + } + } + ] + } + }, + { + "pc": 229, + "op": "POP", + "gas": 1751541, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 230, + "op": "DUP4", + "gas": 1751539, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12" + ] + }, + { + "pc": 231, + "op": "PUSH1", + "gas": 1751536, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 233, + "op": "PUSH1", + "gas": 1751533, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x7" + ] + }, + { + "pc": 235, + "op": "PUSH2", + "gas": 1751530, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x7", + "0x0" + ] + }, + { + "pc": 238, + "op": "EXP", + "gas": 1751527, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x7", + "0x0", + "0x100" + ] + }, + { + "pc": 239, + "op": "DUP2", + "gas": 1751517, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x7", + "0x1" + ] + }, + { + "pc": 240, + "op": "SLOAD", + "gas": 1751514, + "gasCost": 2100, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x7", + "0x1", + "0x7" + ], + "storage": { + "0x0000000000000000000000000000000000000000000000000000000000000003": "0x5553445420636f696e0000000000000000000000000000000000000000000012", + "0x0000000000000000000000000000000000000000000000000000000000000004": "0x5553445400000000000000000000000000000000000000000000000000000008", + "0x0000000000000000000000000000000000000000000000000000000000000005": "0x0000000000000000000000000000000000000000000000000000000000000012", + "0x0000000000000000000000000000000000000000000000000000000000000006": "0x0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0000000000000000000000000000000000000000000000000000000000000007": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "extraData": { + "proofList": [ + { + "address": "0x08c683b684d1e24cab8ce6de5c8c628d993ac140", + "nonce": 1, + "balance": "0x0", + "codeHash": "0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470", + "storage": { + "key": "0x0000000000000000000000000000000000000000000000000000000000000007", + "value": "0x0000000000000000000000000000000000000000000000000000000000000000" + } + } + ] + } + }, + { + "pc": 241, + "op": "DUP2", + "gas": 1749414, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x7", + "0x1", + "0x0" + ] + }, + { + "pc": 242, + "op": "PUSH20", + "gas": 1749411, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x7", + "0x1", + "0x0", + "0x1" + ] + }, + { + "pc": 263, + "op": "MUL", + "gas": 1749408, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x7", + "0x1", + "0x0", + "0x1", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 264, + "op": "NOT", + "gas": 1749403, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x7", + "0x1", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 265, + "op": "AND", + "gas": 1749400, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x7", + "0x1", + "0x0", + "0xffffffffffffffffffffffff0000000000000000000000000000000000000000" + ] + }, + { + "pc": 266, + "op": "SWAP1", + "gas": 1749397, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x7", + "0x1", + "0x0" + ] + }, + { + "pc": 267, + "op": "DUP4", + "gas": 1749394, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x7", + "0x0", + "0x1" + ] + }, + { + "pc": 268, + "op": "PUSH20", + "gas": 1749391, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x7", + "0x0", + "0x1", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 289, + "op": "AND", + "gas": 1749388, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x7", + "0x0", + "0x1", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 290, + "op": "MUL", + "gas": 1749385, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x7", + "0x0", + "0x1", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 291, + "op": "OR", + "gas": 1749380, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x7", + "0x0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 292, + "op": "SWAP1", + "gas": 1749377, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x7", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 293, + "op": "SSTORE", + "gas": 1749374, + "gasCost": 20000, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x7" + ], + "storage": { + "0x0000000000000000000000000000000000000000000000000000000000000003": "0x5553445420636f696e0000000000000000000000000000000000000000000012", + "0x0000000000000000000000000000000000000000000000000000000000000004": "0x5553445400000000000000000000000000000000000000000000000000000008", + "0x0000000000000000000000000000000000000000000000000000000000000005": "0x0000000000000000000000000000000000000000000000000000000000000012", + "0x0000000000000000000000000000000000000000000000000000000000000006": "0x0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0000000000000000000000000000000000000000000000000000000000000007": "0x0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + }, + "extraData": { + "proofList": [ + { + "address": "0x08c683b684d1e24cab8ce6de5c8c628d993ac140", + "nonce": 1, + "balance": "0x0", + "codeHash": "0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470", + "storage": { + "key": "0x0000000000000000000000000000000000000000000000000000000000000007", + "value": "0x0000000000000000000000000000000000000000000000000000000000000000" + } + } + ] + } + }, + { + "pc": 294, + "op": "POP", + "gas": 1729374, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 295, + "op": "PUSH3", + "gas": 1729372, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12" + ] + }, + { + "pc": 299, + "op": "DUP2", + "gas": 1729369, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x137" + ] + }, + { + "pc": 300, + "op": "PUSH3", + "gas": 1729366, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x137", + "0x12" + ] + }, + { + "pc": 304, + "op": "PUSH1", + "gas": 1729363, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x137", + "0x12", + "0x183" + ] + }, + { + "pc": 306, + "op": "SHL", + "gas": 1729360, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x137", + "0x12", + "0x183", + "0x20" + ] + }, + { + "pc": 307, + "op": "PUSH1", + "gas": 1729357, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x137", + "0x12", + "0x18300000000" + ] + }, + { + "pc": 309, + "op": "SHR", + "gas": 1729354, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x137", + "0x12", + "0x18300000000", + "0x20" + ] + }, + { + "pc": 310, + "op": "JUMP", + "gas": 1729351, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x137", + "0x12", + "0x183" + ] + }, + { + "pc": 387, + "op": "JUMPDEST", + "gas": 1729343, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x137", + "0x12" + ] + }, + { + "pc": 388, + "op": "DUP1", + "gas": 1729342, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x137", + "0x12" + ] + }, + { + "pc": 389, + "op": "PUSH1", + "gas": 1729339, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x137", + "0x12", + "0x12" + ] + }, + { + "pc": 391, + "op": "PUSH1", + "gas": 1729336, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x137", + "0x12", + "0x12", + "0x5" + ] + }, + { + "pc": 393, + "op": "PUSH2", + "gas": 1729333, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x137", + "0x12", + "0x12", + "0x5", + "0x0" + ] + }, + { + "pc": 396, + "op": "EXP", + "gas": 1729330, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x137", + "0x12", + "0x12", + "0x5", + "0x0", + "0x100" + ] + }, + { + "pc": 397, + "op": "DUP2", + "gas": 1729320, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x137", + "0x12", + "0x12", + "0x5", + "0x1" + ] + }, + { + "pc": 398, + "op": "SLOAD", + "gas": 1729317, + "gasCost": 100, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x137", + "0x12", + "0x12", + "0x5", + "0x1", + "0x5" + ], + "storage": { + "0x0000000000000000000000000000000000000000000000000000000000000003": "0x5553445420636f696e0000000000000000000000000000000000000000000012", + "0x0000000000000000000000000000000000000000000000000000000000000004": "0x5553445400000000000000000000000000000000000000000000000000000008", + "0x0000000000000000000000000000000000000000000000000000000000000005": "0x0000000000000000000000000000000000000000000000000000000000000012", + "0x0000000000000000000000000000000000000000000000000000000000000006": "0x0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0000000000000000000000000000000000000000000000000000000000000007": "0x0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + }, + "extraData": { + "proofList": [ + { + "address": "0x08c683b684d1e24cab8ce6de5c8c628d993ac140", + "nonce": 1, + "balance": "0x0", + "codeHash": "0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470", + "storage": { + "key": "0x0000000000000000000000000000000000000000000000000000000000000005", + "value": "0x0000000000000000000000000000000000000000000000000000000000000012" + } + } + ] + } + }, + { + "pc": 399, + "op": "DUP2", + "gas": 1729217, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x137", + "0x12", + "0x12", + "0x5", + "0x1", + "0x12" + ] + }, + { + "pc": 400, + "op": "PUSH1", + "gas": 1729214, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x137", + "0x12", + "0x12", + "0x5", + "0x1", + "0x12", + "0x1" + ] + }, + { + "pc": 402, + "op": "MUL", + "gas": 1729211, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x137", + "0x12", + "0x12", + "0x5", + "0x1", + "0x12", + "0x1", + "0xff" + ] + }, + { + "pc": 403, + "op": "NOT", + "gas": 1729206, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x137", + "0x12", + "0x12", + "0x5", + "0x1", + "0x12", + "0xff" + ] + }, + { + "pc": 404, + "op": "AND", + "gas": 1729203, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x137", + "0x12", + "0x12", + "0x5", + "0x1", + "0x12", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00" + ] + }, + { + "pc": 405, + "op": "SWAP1", + "gas": 1729200, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x137", + "0x12", + "0x12", + "0x5", + "0x1", + "0x0" + ] + }, + { + "pc": 406, + "op": "DUP4", + "gas": 1729197, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x137", + "0x12", + "0x12", + "0x5", + "0x0", + "0x1" + ] + }, + { + "pc": 407, + "op": "PUSH1", + "gas": 1729194, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x137", + "0x12", + "0x12", + "0x5", + "0x0", + "0x1", + "0x12" + ] + }, + { + "pc": 409, + "op": "AND", + "gas": 1729191, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x137", + "0x12", + "0x12", + "0x5", + "0x0", + "0x1", + "0x12", + "0xff" + ] + }, + { + "pc": 410, + "op": "MUL", + "gas": 1729188, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x137", + "0x12", + "0x12", + "0x5", + "0x0", + "0x1", + "0x12" + ] + }, + { + "pc": 411, + "op": "OR", + "gas": 1729183, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x137", + "0x12", + "0x12", + "0x5", + "0x0", + "0x12" + ] + }, + { + "pc": 412, + "op": "SWAP1", + "gas": 1729180, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x137", + "0x12", + "0x12", + "0x5", + "0x12" + ] + }, + { + "pc": 413, + "op": "SSTORE", + "gas": 1729177, + "gasCost": 100, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x137", + "0x12", + "0x12", + "0x12", + "0x5" + ], + "storage": { + "0x0000000000000000000000000000000000000000000000000000000000000003": "0x5553445420636f696e0000000000000000000000000000000000000000000012", + "0x0000000000000000000000000000000000000000000000000000000000000004": "0x5553445400000000000000000000000000000000000000000000000000000008", + "0x0000000000000000000000000000000000000000000000000000000000000005": "0x0000000000000000000000000000000000000000000000000000000000000012", + "0x0000000000000000000000000000000000000000000000000000000000000006": "0x0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0000000000000000000000000000000000000000000000000000000000000007": "0x0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + }, + "extraData": { + "proofList": [ + { + "address": "0x08c683b684d1e24cab8ce6de5c8c628d993ac140", + "nonce": 1, + "balance": "0x0", + "codeHash": "0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470", + "storage": { + "key": "0x0000000000000000000000000000000000000000000000000000000000000005", + "value": "0x0000000000000000000000000000000000000000000000000000000000000012" + } + } + ] + } + }, + { + "pc": 414, + "op": "POP", + "gas": 1729077, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x137", + "0x12", + "0x12" + ] + }, + { + "pc": 415, + "op": "POP", + "gas": 1729075, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x137", + "0x12" + ] + }, + { + "pc": 416, + "op": "JUMP", + "gas": 1729073, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x137" + ] + }, + { + "pc": 311, + "op": "JUMPDEST", + "gas": 1729065, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12" + ] + }, + { + "pc": 312, + "op": "CALLER", + "gas": 1729064, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12" + ] + }, + { + "pc": 313, + "op": "PUSH1", + "gas": 1729062, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 315, + "op": "PUSH1", + "gas": 1729059, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x5" + ] + }, + { + "pc": 317, + "op": "PUSH2", + "gas": 1729056, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x5", + "0x2" + ] + }, + { + "pc": 320, + "op": "EXP", + "gas": 1729053, + "gasCost": 60, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x5", + "0x2", + "0x100" + ] + }, + { + "pc": 321, + "op": "DUP2", + "gas": 1728993, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x5", + "0x10000" + ] + }, + { + "pc": 322, + "op": "SLOAD", + "gas": 1728990, + "gasCost": 100, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x5", + "0x10000", + "0x5" + ], + "storage": { + "0x0000000000000000000000000000000000000000000000000000000000000003": "0x5553445420636f696e0000000000000000000000000000000000000000000012", + "0x0000000000000000000000000000000000000000000000000000000000000004": "0x5553445400000000000000000000000000000000000000000000000000000008", + "0x0000000000000000000000000000000000000000000000000000000000000005": "0x0000000000000000000000000000000000000000000000000000000000000012", + "0x0000000000000000000000000000000000000000000000000000000000000006": "0x0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0000000000000000000000000000000000000000000000000000000000000007": "0x0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + }, + "extraData": { + "proofList": [ + { + "address": "0x08c683b684d1e24cab8ce6de5c8c628d993ac140", + "nonce": 1, + "balance": "0x0", + "codeHash": "0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470", + "storage": { + "key": "0x0000000000000000000000000000000000000000000000000000000000000005", + "value": "0x0000000000000000000000000000000000000000000000000000000000000012" + } + } + ] + } + }, + { + "pc": 323, + "op": "DUP2", + "gas": 1728890, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x5", + "0x10000", + "0x12" + ] + }, + { + "pc": 324, + "op": "PUSH20", + "gas": 1728887, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x5", + "0x10000", + "0x12", + "0x10000" + ] + }, + { + "pc": 345, + "op": "MUL", + "gas": 1728884, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x5", + "0x10000", + "0x12", + "0x10000", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 346, + "op": "NOT", + "gas": 1728879, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x5", + "0x10000", + "0x12", + "0xffffffffffffffffffffffffffffffffffffffff0000" + ] + }, + { + "pc": 347, + "op": "AND", + "gas": 1728876, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x5", + "0x10000", + "0x12", + "0xffffffffffffffffffff0000000000000000000000000000000000000000ffff" + ] + }, + { + "pc": 348, + "op": "SWAP1", + "gas": 1728873, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x5", + "0x10000", + "0x12" + ] + }, + { + "pc": 349, + "op": "DUP4", + "gas": 1728870, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x5", + "0x12", + "0x10000" + ] + }, + { + "pc": 350, + "op": "PUSH20", + "gas": 1728867, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x5", + "0x12", + "0x10000", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 371, + "op": "AND", + "gas": 1728864, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x5", + "0x12", + "0x10000", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 372, + "op": "MUL", + "gas": 1728861, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x5", + "0x12", + "0x10000", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 373, + "op": "OR", + "gas": 1728856, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x5", + "0x12", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd65710000" + ] + }, + { + "pc": 374, + "op": "SWAP1", + "gas": 1728853, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x5", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd65710012" + ] + }, + { + "pc": 375, + "op": "SSTORE", + "gas": 1728850, + "gasCost": 100, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd65710012", + "0x5" + ], + "storage": { + "0x0000000000000000000000000000000000000000000000000000000000000003": "0x5553445420636f696e0000000000000000000000000000000000000000000012", + "0x0000000000000000000000000000000000000000000000000000000000000004": "0x5553445400000000000000000000000000000000000000000000000000000008", + "0x0000000000000000000000000000000000000000000000000000000000000005": "0x000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd65710012", + "0x0000000000000000000000000000000000000000000000000000000000000006": "0x0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0000000000000000000000000000000000000000000000000000000000000007": "0x0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + }, + "extraData": { + "proofList": [ + { + "address": "0x08c683b684d1e24cab8ce6de5c8c628d993ac140", + "nonce": 1, + "balance": "0x0", + "codeHash": "0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470", + "storage": { + "key": "0x0000000000000000000000000000000000000000000000000000000000000005", + "value": "0x0000000000000000000000000000000000000000000000000000000000000012" + } + } + ] + } + }, + { + "pc": 376, + "op": "POP", + "gas": 1728750, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 377, + "op": "POP", + "gas": 1728748, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0", + "0x12" + ] + }, + { + "pc": 378, + "op": "POP", + "gas": 1728746, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0", + "0x1e0" + ] + }, + { + "pc": 379, + "op": "POP", + "gas": 1728744, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1a0" + ] + }, + { + "pc": 380, + "op": "POP", + "gas": 1728742, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 381, + "op": "POP", + "gas": 1728740, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 382, + "op": "PUSH3", + "gas": 1728738, + "gasCost": 3, + "depth": 1 + }, + { + "pc": 386, + "op": "JUMP", + "gas": 1728735, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x58a" + ] + }, + { + "pc": 1418, + "op": "JUMPDEST", + "gas": 1728727, + "gasCost": 1, + "depth": 1 + }, + { + "pc": 1419, + "op": "PUSH2", + "gas": 1728726, + "gasCost": 3, + "depth": 1 + }, + { + "pc": 1422, + "op": "DUP1", + "gas": 1728723, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x21bb" + ] + }, + { + "pc": 1423, + "op": "PUSH3", + "gas": 1728720, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x21bb", + "0x21bb" + ] + }, + { + "pc": 1427, + "op": "PUSH1", + "gas": 1728717, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x21bb", + "0x21bb", + "0x59a" + ] + }, + { + "pc": 1429, + "op": "CODECOPY", + "gas": 1728714, + "gasCost": 1711, + "depth": 1, + "stack": [ + "0x21bb", + "0x21bb", + "0x59a", + "0x0" + ], + "extraData": { + "codeList": [ + "0x" + ] + } + }, + { + "pc": 1430, + "op": "PUSH1", + "gas": 1727003, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x21bb" + ] + }, + { + "pc": 1432, + "op": "RETURN", + "gas": 1727000, + "gasCost": 0, + "depth": 1, + "stack": [ + "0x21bb", + "0x0" + ] + } + ] + }, + { + "gas": 56948, + "failed": true, + "from": { + "address": "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "nonce": 239, + "balance": "0x56bc75e2d630ffffffffffffffffffffffffffffffffffff33467380a8bcf0", + "codeHash": "0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470" + }, + "accountCreated": { + "address": "0x3bf378f9fb04803155fbbce77c0a210640b6f54e", + "nonce": 1, + "balance": "0x0", + "codeHash": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "accountAfter": [ + { + "address": "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "nonce": 240, + "balance": "0x56bc75e2d630ffffffffffffffffffffffffffffffffffff3346737fe00244", + "codeHash": "0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470" + }, + { + "address": "0x3bf378f9fb04803155fbbce77c0a210640b6f54e", + "nonce": 0, + "balance": "0x0", + "codeHash": "0x0000000000000000000000000000000000000000000000000000000000000000" + } + ], + "byteCode": "0x6080604052348015600f57600080fd5b5060405160e238038060e28339818101604052810190602d91906052565b6000811415603a57600080fd5b506096565b600081519050604c816082565b92915050565b600060208284031215606357600080fd5b6000606f84828501603f565b91505092915050565b6000819050919050565b6089816078565b8114609357600080fd5b50565b603f8060a36000396000f3fe6080604052600080fdfea2646970667358221220d980928765b61eb01523442146dc4518e079360da1cc4a7f1ab97c88f137c27e64736f6c634300080400330000000000000000000000000000000000000000000000000000000000000000", + "structLogs": [ + { + "pc": 0, + "op": "PUSH1", + "gas": 943424, + "gasCost": 3, + "depth": 1 + }, + { + "pc": 2, + "op": "PUSH1", + "gas": 943421, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80" + ] + }, + { + "pc": 4, + "op": "MSTORE", + "gas": 943418, + "gasCost": 12, + "depth": 1, + "stack": [ + "0x80", + "0x40" + ] + }, + { + "pc": 5, + "op": "CALLVALUE", + "gas": 943406, + "gasCost": 2, + "depth": 1 + }, + { + "pc": 6, + "op": "DUP1", + "gas": 943404, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 7, + "op": "ISZERO", + "gas": 943401, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0", + "0x0" + ] + }, + { + "pc": 8, + "op": "PUSH1", + "gas": 943398, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0", + "0x1" + ] + }, + { + "pc": 10, + "op": "JUMPI", + "gas": 943395, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x0", + "0x1", + "0xf" + ] + }, + { + "pc": 15, + "op": "JUMPDEST", + "gas": 943385, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 16, + "op": "POP", + "gas": 943384, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 17, + "op": "PUSH1", + "gas": 943382, + "gasCost": 3, + "depth": 1 + }, + { + "pc": 19, + "op": "MLOAD", + "gas": 943379, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x40" + ] + }, + { + "pc": 20, + "op": "PUSH1", + "gas": 943376, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80" + ] + }, + { + "pc": 22, + "op": "CODESIZE", + "gas": 943373, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x80", + "0xe2" + ], + "extraData": { + "codeList": [ + "0x" + ] + } + }, + { + "pc": 23, + "op": "SUB", + "gas": 943371, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xe2", + "0x102" + ] + }, + { + "pc": 24, + "op": "DUP1", + "gas": 943368, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x20" + ] + }, + { + "pc": 25, + "op": "PUSH1", + "gas": 943365, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x20", + "0x20" + ] + }, + { + "pc": 27, + "op": "DUP4", + "gas": 943362, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x20", + "0x20", + "0xe2" + ] + }, + { + "pc": 28, + "op": "CODECOPY", + "gas": 943359, + "gasCost": 12, + "depth": 1, + "stack": [ + "0x80", + "0x20", + "0x20", + "0xe2", + "0x80" + ], + "extraData": { + "codeList": [ + "0x" + ] + } + }, + { + "pc": 29, + "op": "DUP2", + "gas": 943347, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x20" + ] + }, + { + "pc": 30, + "op": "DUP2", + "gas": 943344, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x20", + "0x80" + ] + }, + { + "pc": 31, + "op": "ADD", + "gas": 943341, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x20", + "0x80", + "0x20" + ] + }, + { + "pc": 32, + "op": "PUSH1", + "gas": 943338, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x20", + "0xa0" + ] + }, + { + "pc": 34, + "op": "MSTORE", + "gas": 943335, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x20", + "0xa0", + "0x40" + ] + }, + { + "pc": 35, + "op": "DUP2", + "gas": 943332, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x20" + ] + }, + { + "pc": 36, + "op": "ADD", + "gas": 943329, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0x20", + "0x80" + ] + }, + { + "pc": 37, + "op": "SWAP1", + "gas": 943326, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80", + "0xa0" + ] + }, + { + "pc": 38, + "op": "PUSH1", + "gas": 943323, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0", + "0x80" + ] + }, + { + "pc": 40, + "op": "SWAP2", + "gas": 943320, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0", + "0x80", + "0x2d" + ] + }, + { + "pc": 41, + "op": "SWAP1", + "gas": 943317, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x2d", + "0x80", + "0xa0" + ] + }, + { + "pc": 42, + "op": "PUSH1", + "gas": 943314, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x2d", + "0xa0", + "0x80" + ] + }, + { + "pc": 44, + "op": "JUMP", + "gas": 943311, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x52" + ] + }, + { + "pc": 82, + "op": "JUMPDEST", + "gas": 943303, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x2d", + "0xa0", + "0x80" + ] + }, + { + "pc": 83, + "op": "PUSH1", + "gas": 943302, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x2d", + "0xa0", + "0x80" + ] + }, + { + "pc": 85, + "op": "PUSH1", + "gas": 943299, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0" + ] + }, + { + "pc": 87, + "op": "DUP3", + "gas": 943296, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x20" + ] + }, + { + "pc": 88, + "op": "DUP5", + "gas": 943293, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x20", + "0x80" + ] + }, + { + "pc": 89, + "op": "SUB", + "gas": 943290, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x20", + "0x80", + "0xa0" + ] + }, + { + "pc": 90, + "op": "SLT", + "gas": 943287, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x20", + "0x20" + ] + }, + { + "pc": 91, + "op": "ISZERO", + "gas": 943284, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0" + ] + }, + { + "pc": 92, + "op": "PUSH1", + "gas": 943281, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x1" + ] + }, + { + "pc": 94, + "op": "JUMPI", + "gas": 943278, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x1", + "0x63" + ] + }, + { + "pc": 99, + "op": "JUMPDEST", + "gas": 943268, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0" + ] + }, + { + "pc": 100, + "op": "PUSH1", + "gas": 943267, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0" + ] + }, + { + "pc": 102, + "op": "PUSH1", + "gas": 943264, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0" + ] + }, + { + "pc": 104, + "op": "DUP5", + "gas": 943261, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f" + ] + }, + { + "pc": 105, + "op": "DUP3", + "gas": 943258, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0" + ] + }, + { + "pc": 106, + "op": "DUP6", + "gas": 943255, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x0" + ] + }, + { + "pc": 107, + "op": "ADD", + "gas": 943252, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x0", + "0x80" + ] + }, + { + "pc": 108, + "op": "PUSH1", + "gas": 943249, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80" + ] + }, + { + "pc": 110, + "op": "JUMP", + "gas": 943246, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x3f" + ] + }, + { + "pc": 63, + "op": "JUMPDEST", + "gas": 943238, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80" + ] + }, + { + "pc": 64, + "op": "PUSH1", + "gas": 943237, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80" + ] + }, + { + "pc": 66, + "op": "DUP2", + "gas": 943234, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x0" + ] + }, + { + "pc": 67, + "op": "MLOAD", + "gas": 943231, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x0", + "0x80" + ] + }, + { + "pc": 68, + "op": "SWAP1", + "gas": 943228, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x0", + "0x0" + ] + }, + { + "pc": 69, + "op": "POP", + "gas": 943225, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x0", + "0x0" + ] + }, + { + "pc": 70, + "op": "PUSH1", + "gas": 943223, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x0" + ] + }, + { + "pc": 72, + "op": "DUP2", + "gas": 943220, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x0", + "0x4c" + ] + }, + { + "pc": 73, + "op": "PUSH1", + "gas": 943217, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x0", + "0x4c", + "0x0" + ] + }, + { + "pc": 75, + "op": "JUMP", + "gas": 943214, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x0", + "0x4c", + "0x0", + "0x82" + ] + }, + { + "pc": 130, + "op": "JUMPDEST", + "gas": 943206, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x0", + "0x4c", + "0x0" + ] + }, + { + "pc": 131, + "op": "PUSH1", + "gas": 943205, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x0", + "0x4c", + "0x0" + ] + }, + { + "pc": 133, + "op": "DUP2", + "gas": 943202, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x0", + "0x4c", + "0x0", + "0x89" + ] + }, + { + "pc": 134, + "op": "PUSH1", + "gas": 943199, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x0", + "0x4c", + "0x0", + "0x89", + "0x0" + ] + }, + { + "pc": 136, + "op": "JUMP", + "gas": 943196, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x0", + "0x4c", + "0x0", + "0x89", + "0x0", + "0x78" + ] + }, + { + "pc": 120, + "op": "JUMPDEST", + "gas": 943188, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x0", + "0x4c", + "0x0", + "0x89", + "0x0" + ] + }, + { + "pc": 121, + "op": "PUSH1", + "gas": 943187, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x0", + "0x4c", + "0x0", + "0x89", + "0x0" + ] + }, + { + "pc": 123, + "op": "DUP2", + "gas": 943184, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x0", + "0x4c", + "0x0", + "0x89", + "0x0", + "0x0" + ] + }, + { + "pc": 124, + "op": "SWAP1", + "gas": 943181, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x0", + "0x4c", + "0x0", + "0x89", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 125, + "op": "POP", + "gas": 943178, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x0", + "0x4c", + "0x0", + "0x89", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 126, + "op": "SWAP2", + "gas": 943176, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x0", + "0x4c", + "0x0", + "0x89", + "0x0", + "0x0" + ] + }, + { + "pc": 127, + "op": "SWAP1", + "gas": 943173, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x0", + "0x4c", + "0x0", + "0x0", + "0x0", + "0x89" + ] + }, + { + "pc": 128, + "op": "POP", + "gas": 943170, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x0", + "0x4c", + "0x0", + "0x0", + "0x89", + "0x0" + ] + }, + { + "pc": 129, + "op": "JUMP", + "gas": 943168, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x0", + "0x4c", + "0x0", + "0x0", + "0x89" + ] + }, + { + "pc": 137, + "op": "JUMPDEST", + "gas": 943160, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x0", + "0x4c", + "0x0", + "0x0" + ] + }, + { + "pc": 138, + "op": "DUP2", + "gas": 943159, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x0", + "0x4c", + "0x0", + "0x0" + ] + }, + { + "pc": 139, + "op": "EQ", + "gas": 943156, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x0", + "0x4c", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 140, + "op": "PUSH1", + "gas": 943153, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x0", + "0x4c", + "0x0", + "0x1" + ] + }, + { + "pc": 142, + "op": "JUMPI", + "gas": 943150, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x0", + "0x4c", + "0x0", + "0x1", + "0x93" + ] + }, + { + "pc": 147, + "op": "JUMPDEST", + "gas": 943140, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x0", + "0x4c", + "0x0" + ] + }, + { + "pc": 148, + "op": "POP", + "gas": 943139, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x0", + "0x4c", + "0x0" + ] + }, + { + "pc": 149, + "op": "JUMP", + "gas": 943137, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x0", + "0x4c" + ] + }, + { + "pc": 76, + "op": "JUMPDEST", + "gas": 943129, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x0" + ] + }, + { + "pc": 77, + "op": "SWAP3", + "gas": 943128, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x0" + ] + }, + { + "pc": 78, + "op": "SWAP2", + "gas": 943125, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x80", + "0x6f" + ] + }, + { + "pc": 79, + "op": "POP", + "gas": 943122, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x0", + "0x6f", + "0x80", + "0xa0" + ] + }, + { + "pc": 80, + "op": "POP", + "gas": 943120, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x0", + "0x6f", + "0x80" + ] + }, + { + "pc": 81, + "op": "JUMP", + "gas": 943118, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x0", + "0x6f" + ] + }, + { + "pc": 111, + "op": "JUMPDEST", + "gas": 943110, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 112, + "op": "SWAP2", + "gas": 943109, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 113, + "op": "POP", + "gas": 943106, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 114, + "op": "POP", + "gas": 943104, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0" + ] + }, + { + "pc": 115, + "op": "SWAP3", + "gas": 943102, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0" + ] + }, + { + "pc": 116, + "op": "SWAP2", + "gas": 943099, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0", + "0xa0", + "0x80", + "0x2d" + ] + }, + { + "pc": 117, + "op": "POP", + "gas": 943096, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x0", + "0x2d", + "0x80", + "0xa0" + ] + }, + { + "pc": 118, + "op": "POP", + "gas": 943094, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x0", + "0x2d", + "0x80" + ] + }, + { + "pc": 119, + "op": "JUMP", + "gas": 943092, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x0", + "0x2d" + ] + }, + { + "pc": 45, + "op": "JUMPDEST", + "gas": 943084, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 46, + "op": "PUSH1", + "gas": 943083, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 48, + "op": "DUP2", + "gas": 943080, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0", + "0x0" + ] + }, + { + "pc": 49, + "op": "EQ", + "gas": 943077, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 50, + "op": "ISZERO", + "gas": 943074, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0", + "0x1" + ] + }, + { + "pc": 51, + "op": "PUSH1", + "gas": 943071, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0", + "0x0" + ] + }, + { + "pc": 53, + "op": "JUMPI", + "gas": 943068, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x0", + "0x0", + "0x3a" + ] + }, + { + "pc": 54, + "op": "PUSH1", + "gas": 943058, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 56, + "op": "DUP1", + "gas": 943055, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0", + "0x0" + ] + }, + { + "pc": 57, + "op": "REVERT", + "gas": 943052, + "gasCost": 0, + "depth": 1, + "stack": [ + "0x0", + "0x0", + "0x0" + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/internal/utesting/blocktraces/destruct.json b/internal/utesting/blocktraces/destruct.json new file mode 100644 index 0000000000..1a665f9ced --- /dev/null +++ b/internal/utesting/blocktraces/destruct.json @@ -0,0 +1,1292 @@ +{ + "blockTrace": { + "number": "0xae", + "hash": "0x5bcb97e08605bfbff0a966649f78c09134916838d75b36439db068b656cea3fa", + "gasLimit": 7966028, + "difficulty": "0x2", + "baseFee": "0x39", + "coinbase": { + "address": "0x0000000000000000000000000000000000000000", + "nonce": 0, + "balance": "0x0", + "codeHash": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "time": 1662713530, + "transactions": [ + { + "type": 2, + "nonce": 260, + "txHash": "0xbb57d9fafc91e0a7343dd25ed07f299ab431a5e6dd78e1787a0c82702d1de3d8", + "gas": 1000000, + "gasPrice": "0x48", + "from": "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "to": null, + "chainId": "0xcf55", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b50600060405161001f906100a4565b604051809103906000f08015801561003b573d6000803e3d6000fd5b5090508073ffffffffffffffffffffffffffffffffffffffff166351973ec96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561008657600080fd5b505af115801561009a573d6000803e3d6000fd5b50505050506100b0565b602b806100fd83390190565b603f806100be6000396000f3fe6080604052600080fdfea264697066735822122031b96f23bcfaec514e6ac96b65a25de89b589f46184e7394b97ff0e4d914c5c664736f6c634300080400336080604052348015600f57600080fd5b50600073ffffffffffffffffffffffffffffffffffffffff16fffe", + "isCreate": true, + "v": "0x1", + "r": "0x4195a237e6c96ef5da7d07ae3a690659534476e667f6d02bb4f7a9f188da2b23", + "s": "0x5644a5934c76c3cbbe316eff53420b1ba75fc6bdec571c3377964cc6da99f8af" + }, + { + "type": 2, + "nonce": 261, + "txHash": "0xe4f328fe7bbe19d59bffebcef70304557e570c3f2c958eb0b39fff7346d5dda7", + "gas": 3021272, + "gasPrice": "0x48", + "from": "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "to": "0x08da224b1b9dd0dc689c7c9500a9a10bc628102a", + "chainId": "0xcf55", + "value": "0x0", + "data": "0xd9ef8209", + "isCreate": false, + "v": "0x1", + "r": "0x62d92e42dbc0ad78972474968694bdf4be55e600acdea9da636504917a8cd1fc", + "s": "0x37dc4ccd8bdbc1915ada102053f0ec9cd6b83b0e4b9617fc644084b849261de" + } + ] + }, + "storageTrace": { + "rootBefore": "0x2ddc7e9168e56370456f3153c81f058a5b2ba8cc8d6e884207f39518accb5a48", + "rootAfter": "0x27880af6abbcff66bb5b1f23e9a1693d39d8c1c45c6604d2ca40ee6ece5239a4", + "proofs": { + "0x08dA224b1b9dd0Dc689C7c9500a9a10bC628102a": [ + "0x0016bc8000b5a9ceb0c46909aec42ea4efcb8413e3df1375b3d55a89b2fd2dc41f2c2025d90cf49d5ed8ef6d06af878c80c03a3f32f95fc742513c53cbca83633f", + "0x001aeeedf9f965ba93fccff9725f3711ba2b707c3843ede5a0151d3fda28a6bda21352538bfc337a6c09ec63428017353ec3388d34a42847dec5fb8b7809879ecd", + "0x000fc3f6a1a1a8b60197b7e946430574c2071e775de661ce395bd7a5e00071493d2fb49d0e7d39e110a50232d80c874cb49ffb87930141f59c878fc3fac8a58f6f", + "0x0017c345204dcc3202ba30c7f69143dcdea227e96e2c0f2f7301e4ec170de094b1268ff095e2662d7e291e4530a2e2bcdb731b13d8399efa3d997d7bb63096b67e", + "0x0011ab6a843ef786ec5f1b5041109213c8184a10e6c534ca811a09bba16fe338dc08760221e162c7b5717a4fdc4506c06fcb134bdf9ae933d68a8080dcc7a0da99", + "0x002cf227f104cb270d129ef8a8d0b1f1f2498196f06a33f144217ca3c5912c30230000000000000000000000000000000000000000000000000000000000000000", + "0x001ef91d70a50f87797ddddf3d089f89c9ed85a47255065f0639700046574569c60000000000000000000000000000000000000000000000000000000000000000", + "0x001204dfca726ff25851cca93594c25683eaa70f1d10fd37eb1a4b63c47e6611c018b3469e0ccd7d3e70e88e7c189e1e114b1b9424e13c6e6038dff1048ec7e3c4", + "0x010647ac1e96c05052fe55b968605f2375ff0e1377eea8d4379ef9bd3b2eb9329004040000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000006a0a6bded31da7de0dec0a486b96d1ae6b54f8c3ff821959d9b15346e1b5a68c000000000000000000000000000000000000000000000000000000000000000000", + "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" + ], + "0x1E15F0ef798177cfea39790386D4Fd98c604b57E": [ + "0x0016bc8000b5a9ceb0c46909aec42ea4efcb8413e3df1375b3d55a89b2fd2dc41f2c2025d90cf49d5ed8ef6d06af878c80c03a3f32f95fc742513c53cbca83633f", + "0x001aeeedf9f965ba93fccff9725f3711ba2b707c3843ede5a0151d3fda28a6bda21352538bfc337a6c09ec63428017353ec3388d34a42847dec5fb8b7809879ecd", + "0x002f240ffd8c29fabbde0617c18971d4e304269c804eb41aa5daf0a13409971dc32c7abcb0633d624a7e8e302ba6d612f5e09167209b1c4b49e0cea774da507538", + "0x00252ec0956ad8f735727e52875937451b4b345e18b9e9d8c315d4a763b0ea6b3d2b3a067dd468121593eb6dcd0098076da685deb841400f5b8c71d48b63bb5aac", + "0x0017749a4224023a2b0cf63d66dc6242b726611db6663472d82f91d1ecd5a4c4152f92ef0ea99707c793964078fe3548e8876ec7e61a878ce2b4d7fb5f99f3e1ec", + "0x0120ea659ef9029e0a122e49fab4961d8b5806ed0dca81faa09a2cb3dc9f55a5aa0404000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000a92b3237327c48106e24009cd36fdd4205897eb829c9f851f08f1ed694704aea2d496e21c596142e870e77af83d326d50f61582cdda0f8aa8400f10f0cfb875400", + "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" + ], + "0x35758f74675bE779e154d59552fc938584105969": [ + "0x0016bc8000b5a9ceb0c46909aec42ea4efcb8413e3df1375b3d55a89b2fd2dc41f2c2025d90cf49d5ed8ef6d06af878c80c03a3f32f95fc742513c53cbca83633f", + "0x001aeeedf9f965ba93fccff9725f3711ba2b707c3843ede5a0151d3fda28a6bda21352538bfc337a6c09ec63428017353ec3388d34a42847dec5fb8b7809879ecd", + "0x000fc3f6a1a1a8b60197b7e946430574c2071e775de661ce395bd7a5e00071493d2fb49d0e7d39e110a50232d80c874cb49ffb87930141f59c878fc3fac8a58f6f", + "0x0017c345204dcc3202ba30c7f69143dcdea227e96e2c0f2f7301e4ec170de094b1268ff095e2662d7e291e4530a2e2bcdb731b13d8399efa3d997d7bb63096b67e", + "0x000f6b5e0b3bb6025780a5ba2e4ae03c750067cba93b5d0809bdc95fe83ef2449d1a4ba7ded71ae979087ae6a9baafaac41df2f4268ef0ec7668ad0ded96c0c76f", + "0x00158caba747d645647bfa389fddb69b4913e12042c5c9a4a3f0b444b0da8557d72e8e11731b619053ff018b6aa4256118e7d50346fb62abb61ce4cf71fb1313ef", + "0x002a1fa5c8dbacf6e10b919f660541c7d994a22bd8d4fca572084cbfc5ac36c35c0000000000000000000000000000000000000000000000000000000000000000", + "0x02", + "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" + ], + "0x4cb1aB63aF5D8931Ce09673EbD8ae2ce16fD6571": [ + "0x0016bc8000b5a9ceb0c46909aec42ea4efcb8413e3df1375b3d55a89b2fd2dc41f2c2025d90cf49d5ed8ef6d06af878c80c03a3f32f95fc742513c53cbca83633f", + "0x002968acaa9f38b3dc45ac50c9247b4746ee0b2a43c2d0763ea760208da3ebfc912d22b876d29a9691ff2a36b138e7e1f4dad1f14b2a4bf609721c4141393133ee", + "0x00171269ef05c105ac2c75f3b3bc5de42a1af6b089e05f42e45f6f83ab8be91e2d2a25ed338f58d70fe0006a20d5a9e9f922fba543699e902d4bfe5b40a99deb12", + "0x002177042d570324015adf9ace09b894404bd16a574f83bbd17b85657344ea79a322de217a821ca10394e3c0f7a99762e37d87f50e2a61f48a154a26a4c4c7c5e7", + "0x003011e538f914e5a078e16df7574f8e69834337e884e60cf84d7b100ad8814ccd30319282871c1ed772f616cb1a7cc28482c4deb4c062f3860912750023ace1d4", + "0x001db4319f6b754b52f844f8f02e8e954e8075d04ab8521e8e83fb0ccfc01cbe6a1b87cfab8d58960019eab8e01d51005d0d84c50acc0aa8c5516dfe9a8fea6642", + "0x00240595687c8fa1172547dcc9450ef9f30519743088365ea537ff0a5a0263eef8197ec46894e8f720d242ed805ff0f46389ce58a94eecdc9ae977d72065a3e26c", + "0x001a453d5e9fba496a70786d7bd0364f9cf7bf81d515f6d3e3db8106d68558b9ce2fe8b70043185278f8f6c75d7057d75ebc62e82052f480dfc207de3b0e89700e", + "0x0129bdbea092f4f7e6de593fd1a16ddb50b1c2a6297d4ae141a60f8da631e481750404000000000000000000000000000000000000000000000000000000000000000001040056bc75e2d630ffffffffffffffffffffffffffffffffffff334672fa5b5fd8c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470000000000000000000000000000000000000000000000000000000000000000000", + "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" + ] + } + }, + "executionResults": [ + { + "gas": 985816, + "failed": true, + "from": { + "address": "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "nonce": 260, + "balance": "0x56bc75e2d630ffffffffffffffffffffffffffffffffffff334672fa5b5fd8", + "codeHash": "0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470" + }, + "accountCreated": { + "address": "0x1e15f0ef798177cfea39790386d4fd98c604b57e", + "nonce": 1, + "balance": "0x0", + "codeHash": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "accountAfter": [ + { + "address": "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "nonce": 261, + "balance": "0x56bc75e2d630ffffffffffffffffffffffffffffffffffff334672f701f5c0", + "codeHash": "0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470" + }, + { + "address": "0x1e15f0ef798177cfea39790386d4fd98c604b57e", + "nonce": 0, + "balance": "0x0", + "codeHash": "0x0000000000000000000000000000000000000000000000000000000000000000" + } + ], + "byteCode": "0x608060405234801561001057600080fd5b50600060405161001f906100a4565b604051809103906000f08015801561003b573d6000803e3d6000fd5b5090508073ffffffffffffffffffffffffffffffffffffffff166351973ec96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561008657600080fd5b505af115801561009a573d6000803e3d6000fd5b50505050506100b0565b602b806100fd83390190565b603f806100be6000396000f3fe6080604052600080fdfea264697066735822122031b96f23bcfaec514e6ac96b65a25de89b589f46184e7394b97ff0e4d914c5c664736f6c634300080400336080604052348015600f57600080fd5b50600073ffffffffffffffffffffffffffffffffffffffff16fffe", + "structLogs": [ + { + "pc": 0, + "op": "PUSH1", + "gas": 942576, + "gasCost": 3, + "depth": 1 + }, + { + "pc": 2, + "op": "PUSH1", + "gas": 942573, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80" + ] + }, + { + "pc": 4, + "op": "MSTORE", + "gas": 942570, + "gasCost": 12, + "depth": 1, + "stack": [ + "0x80", + "0x40" + ] + }, + { + "pc": 5, + "op": "CALLVALUE", + "gas": 942558, + "gasCost": 2, + "depth": 1 + }, + { + "pc": 6, + "op": "DUP1", + "gas": 942556, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 7, + "op": "ISZERO", + "gas": 942553, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0", + "0x0" + ] + }, + { + "pc": 8, + "op": "PUSH2", + "gas": 942550, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0", + "0x1" + ] + }, + { + "pc": 11, + "op": "JUMPI", + "gas": 942547, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x0", + "0x1", + "0x10" + ] + }, + { + "pc": 16, + "op": "JUMPDEST", + "gas": 942537, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 17, + "op": "POP", + "gas": 942536, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 18, + "op": "PUSH1", + "gas": 942534, + "gasCost": 3, + "depth": 1 + }, + { + "pc": 20, + "op": "PUSH1", + "gas": 942531, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 22, + "op": "MLOAD", + "gas": 942528, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0", + "0x40" + ] + }, + { + "pc": 23, + "op": "PUSH2", + "gas": 942525, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0", + "0x80" + ] + }, + { + "pc": 26, + "op": "SWAP1", + "gas": 942522, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0", + "0x80", + "0x1f" + ] + }, + { + "pc": 27, + "op": "PUSH2", + "gas": 942519, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0", + "0x1f", + "0x80" + ] + }, + { + "pc": 30, + "op": "JUMP", + "gas": 942516, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x0", + "0x1f", + "0x80", + "0xa4" + ] + }, + { + "pc": 164, + "op": "JUMPDEST", + "gas": 942508, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x0", + "0x1f", + "0x80" + ] + }, + { + "pc": 165, + "op": "PUSH1", + "gas": 942507, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0", + "0x1f", + "0x80" + ] + }, + { + "pc": 167, + "op": "DUP1", + "gas": 942504, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0", + "0x1f", + "0x80", + "0x2b" + ] + }, + { + "pc": 168, + "op": "PUSH2", + "gas": 942501, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0", + "0x1f", + "0x80", + "0x2b", + "0x2b" + ] + }, + { + "pc": 171, + "op": "DUP4", + "gas": 942498, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0", + "0x1f", + "0x80", + "0x2b", + "0x2b", + "0xfd" + ] + }, + { + "pc": 172, + "op": "CODECOPY", + "gas": 942495, + "gasCost": 18, + "depth": 1, + "stack": [ + "0x0", + "0x1f", + "0x80", + "0x2b", + "0x2b", + "0xfd", + "0x80" + ], + "extraData": { + "codeList": [ + "0x" + ] + } + }, + { + "pc": 173, + "op": "ADD", + "gas": 942477, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0", + "0x1f", + "0x80", + "0x2b" + ] + }, + { + "pc": 174, + "op": "SWAP1", + "gas": 942474, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0", + "0x1f", + "0xab" + ] + }, + { + "pc": 175, + "op": "JUMP", + "gas": 942471, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x0", + "0xab", + "0x1f" + ] + }, + { + "pc": 31, + "op": "JUMPDEST", + "gas": 942463, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x0", + "0xab" + ] + }, + { + "pc": 32, + "op": "PUSH1", + "gas": 942462, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0", + "0xab" + ] + }, + { + "pc": 34, + "op": "MLOAD", + "gas": 942459, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0", + "0xab", + "0x40" + ] + }, + { + "pc": 35, + "op": "DUP1", + "gas": 942456, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0", + "0xab", + "0x80" + ] + }, + { + "pc": 36, + "op": "SWAP2", + "gas": 942453, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0", + "0xab", + "0x80", + "0x80" + ] + }, + { + "pc": 37, + "op": "SUB", + "gas": 942450, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0", + "0x80", + "0x80", + "0xab" + ] + }, + { + "pc": 38, + "op": "SWAP1", + "gas": 942447, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0", + "0x80", + "0x2b" + ] + }, + { + "pc": 39, + "op": "PUSH1", + "gas": 942444, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0", + "0x2b", + "0x80" + ] + }, + { + "pc": 41, + "op": "CREATE", + "gas": 942441, + "gasCost": 32000, + "depth": 1, + "stack": [ + "0x0", + "0x2b", + "0x80", + "0x0" + ], + "extraData": { + "callFailed": true, + "codeList": [ + "0x" + ], + "proofList": [ + { + "address": "0x35758f74675be779e154d59552fc938584105969", + "nonce": 1, + "balance": "0x0", + "codeHash": "0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470" + }, + { + "address": "0x35758f74675be779e154d59552fc938584105969", + "nonce": 0, + "balance": "0x0", + "codeHash": "0x0000000000000000000000000000000000000000000000000000000000000000" + } + ], + "caller": [ + { + "address": "0x1e15f0ef798177cfea39790386d4fd98c604b57e", + "nonce": 1, + "balance": "0x0", + "codeHash": "0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470" + }, + { + "address": "0x1e15f0ef798177cfea39790386d4fd98c604b57e", + "nonce": 2, + "balance": "0x0", + "codeHash": "0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470" + } + ] + } + }, + { + "pc": 0, + "op": "PUSH1", + "gas": 896216, + "gasCost": 3, + "depth": 2 + }, + { + "pc": 2, + "op": "PUSH1", + "gas": 896213, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x80" + ] + }, + { + "pc": 4, + "op": "MSTORE", + "gas": 896210, + "gasCost": 12, + "depth": 2, + "stack": [ + "0x80", + "0x40" + ] + }, + { + "pc": 5, + "op": "CALLVALUE", + "gas": 896198, + "gasCost": 2, + "depth": 2 + }, + { + "pc": 6, + "op": "DUP1", + "gas": 896196, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x0" + ] + }, + { + "pc": 7, + "op": "ISZERO", + "gas": 896193, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x0", + "0x0" + ] + }, + { + "pc": 8, + "op": "PUSH1", + "gas": 896190, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x0", + "0x1" + ] + }, + { + "pc": 10, + "op": "JUMPI", + "gas": 896187, + "gasCost": 10, + "depth": 2, + "stack": [ + "0x0", + "0x1", + "0xf" + ] + }, + { + "pc": 15, + "op": "JUMPDEST", + "gas": 896177, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x0" + ] + }, + { + "pc": 16, + "op": "POP", + "gas": 896176, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x0" + ] + }, + { + "pc": 17, + "op": "PUSH1", + "gas": 896174, + "gasCost": 3, + "depth": 2 + }, + { + "pc": 19, + "op": "PUSH20", + "gas": 896171, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x0" + ] + }, + { + "pc": 40, + "op": "AND", + "gas": 896168, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x0", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 41, + "op": "SELFDESTRUCT", + "gas": 896165, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x0" + ], + "extraData": { + "proofList": [ + { + "address": "0x35758f74675be779e154d59552fc938584105969", + "nonce": 1, + "balance": "0x0", + "codeHash": "0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470" + }, + { + "address": "0x0000000000000000000000000000000000000000", + "nonce": 0, + "balance": "0x0", + "codeHash": "0x0000000000000000000000000000000000000000000000000000000000000000" + } + ] + } + }, + { + "pc": 42, + "op": "DUP1", + "gas": 14225, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0", + "0x0" + ] + }, + { + "pc": 43, + "op": "ISZERO", + "gas": 14222, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 44, + "op": "DUP1", + "gas": 14219, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0", + "0x0", + "0x1" + ] + }, + { + "pc": 45, + "op": "ISZERO", + "gas": 14216, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0", + "0x0", + "0x1", + "0x1" + ] + }, + { + "pc": 46, + "op": "PUSH2", + "gas": 14213, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0", + "0x0", + "0x1", + "0x0" + ] + }, + { + "pc": 49, + "op": "JUMPI", + "gas": 14210, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x0", + "0x0", + "0x1", + "0x0", + "0x3b" + ] + }, + { + "pc": 50, + "op": "RETURNDATASIZE", + "gas": 14200, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x0", + "0x0", + "0x1" + ] + }, + { + "pc": 51, + "op": "PUSH1", + "gas": 14198, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0", + "0x0", + "0x1", + "0x0" + ] + }, + { + "pc": 53, + "op": "DUP1", + "gas": 14195, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0", + "0x0", + "0x1", + "0x0", + "0x0" + ] + }, + { + "pc": 54, + "op": "RETURNDATACOPY", + "gas": 14192, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0", + "0x0", + "0x1", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 55, + "op": "RETURNDATASIZE", + "gas": 14189, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x0", + "0x0", + "0x1" + ] + }, + { + "pc": 56, + "op": "PUSH1", + "gas": 14187, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0", + "0x0", + "0x1", + "0x0" + ] + }, + { + "pc": 58, + "op": "REVERT", + "gas": 14184, + "gasCost": 0, + "depth": 1, + "stack": [ + "0x0", + "0x0", + "0x1", + "0x0", + "0x0" + ] + } + ] + }, + { + "gas": 3021272, + "failed": true, + "from": { + "address": "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "nonce": 261, + "balance": "0x56bc75e2d630ffffffffffffffffffffffffffffffffffff334672f701f5c0", + "codeHash": "0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470" + }, + "to": { + "address": "0x08da224b1b9dd0dc689c7c9500a9a10bc628102a", + "nonce": 1, + "balance": "0x0", + "codeHash": "0x6a0a6bded31da7de0dec0a486b96d1ae6b54f8c3ff821959d9b15346e1b5a68c" + }, + "accountAfter": [ + { + "address": "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "nonce": 262, + "balance": "0x56bc75e2d630ffffffffffffffffffffffffffffffffffff334672ecbe34a8", + "codeHash": "0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470" + }, + { + "address": "0x08da224b1b9dd0dc689c7c9500a9a10bc628102a", + "nonce": 1, + "balance": "0x0", + "codeHash": "0x6a0a6bded31da7de0dec0a486b96d1ae6b54f8c3ff821959d9b15346e1b5a68c" + } + ], + "codeHash": "0x6a0a6bded31da7de0dec0a486b96d1ae6b54f8c3ff821959d9b15346e1b5a68c", + "byteCode": "0x6080604052348015600f57600080fd5b506004361060285760003560e01c8063d9ef820914602d575b600080fd5b60336035565b005b3373ffffffffffffffffffffffffffffffffffffffff16fffea2646970667358221220ed5b937d3592d5ae2756f7202f051cbf24cb93a73a194a52c81ebd6b6b7345e864736f6c63430008040033", + "structLogs": [ + { + "pc": 0, + "op": "PUSH1", + "gas": 3000208, + "gasCost": 3, + "depth": 1 + }, + { + "pc": 2, + "op": "PUSH1", + "gas": 3000205, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80" + ] + }, + { + "pc": 4, + "op": "MSTORE", + "gas": 3000202, + "gasCost": 12, + "depth": 1, + "stack": [ + "0x80", + "0x40" + ] + }, + { + "pc": 5, + "op": "CALLVALUE", + "gas": 3000190, + "gasCost": 2, + "depth": 1 + }, + { + "pc": 6, + "op": "DUP1", + "gas": 3000188, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 7, + "op": "ISZERO", + "gas": 3000185, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0", + "0x0" + ] + }, + { + "pc": 8, + "op": "PUSH1", + "gas": 3000182, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0", + "0x1" + ] + }, + { + "pc": 10, + "op": "JUMPI", + "gas": 3000179, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x0", + "0x1", + "0xf" + ] + }, + { + "pc": 15, + "op": "JUMPDEST", + "gas": 3000169, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 16, + "op": "POP", + "gas": 3000168, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 17, + "op": "PUSH1", + "gas": 3000166, + "gasCost": 3, + "depth": 1 + }, + { + "pc": 19, + "op": "CALLDATASIZE", + "gas": 3000163, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x4" + ] + }, + { + "pc": 20, + "op": "LT", + "gas": 3000161, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4", + "0x4" + ] + }, + { + "pc": 21, + "op": "PUSH1", + "gas": 3000158, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 23, + "op": "JUMPI", + "gas": 3000155, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x0", + "0x28" + ] + }, + { + "pc": 24, + "op": "PUSH1", + "gas": 3000145, + "gasCost": 3, + "depth": 1 + }, + { + "pc": 26, + "op": "CALLDATALOAD", + "gas": 3000142, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 27, + "op": "PUSH1", + "gas": 3000139, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xd9ef820900000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 29, + "op": "SHR", + "gas": 3000136, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xd9ef820900000000000000000000000000000000000000000000000000000000", + "0xe0" + ] + }, + { + "pc": 30, + "op": "DUP1", + "gas": 3000133, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xd9ef8209" + ] + }, + { + "pc": 31, + "op": "PUSH4", + "gas": 3000130, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xd9ef8209", + "0xd9ef8209" + ] + }, + { + "pc": 36, + "op": "EQ", + "gas": 3000127, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xd9ef8209", + "0xd9ef8209", + "0xd9ef8209" + ] + }, + { + "pc": 37, + "op": "PUSH1", + "gas": 3000124, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xd9ef8209", + "0x1" + ] + }, + { + "pc": 39, + "op": "JUMPI", + "gas": 3000121, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xd9ef8209", + "0x1", + "0x2d" + ] + }, + { + "pc": 45, + "op": "JUMPDEST", + "gas": 3000111, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xd9ef8209" + ] + }, + { + "pc": 46, + "op": "PUSH1", + "gas": 3000110, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xd9ef8209" + ] + }, + { + "pc": 48, + "op": "PUSH1", + "gas": 3000107, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xd9ef8209", + "0x33" + ] + }, + { + "pc": 50, + "op": "JUMP", + "gas": 3000104, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xd9ef8209", + "0x33", + "0x35" + ] + }, + { + "pc": 53, + "op": "JUMPDEST", + "gas": 3000096, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xd9ef8209", + "0x33" + ] + }, + { + "pc": 54, + "op": "CALLER", + "gas": 3000095, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xd9ef8209", + "0x33" + ] + }, + { + "pc": 55, + "op": "PUSH20", + "gas": 3000093, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xd9ef8209", + "0x33", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 76, + "op": "AND", + "gas": 3000090, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xd9ef8209", + "0x33", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 77, + "op": "SELFDESTRUCT", + "gas": 3000087, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xd9ef8209", + "0x33", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ], + "extraData": { + "proofList": [ + { + "address": "0x08da224b1b9dd0dc689c7c9500a9a10bc628102a", + "nonce": 1, + "balance": "0x0", + "codeHash": "0x6a0a6bded31da7de0dec0a486b96d1ae6b54f8c3ff821959d9b15346e1b5a68c" + }, + { + "address": "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "nonce": 262, + "balance": "0x56bc75e2d630ffffffffffffffffffffffffffffffffffff334672ecbe34a8", + "codeHash": "0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470" + } + ] + } + } + ] + } + ] +} \ No newline at end of file diff --git a/internal/utesting/blocktraces/fail_call.json b/internal/utesting/blocktraces/fail_call.json new file mode 100644 index 0000000000..86218b4a1f --- /dev/null +++ b/internal/utesting/blocktraces/fail_call.json @@ -0,0 +1,29898 @@ +{ + "blockTrace": { + "number": "0x9b", + "hash": "0xa63c47da0ad3eff9cfb63fa8d5ff9238c05cd5ea23d48296bd33407913d102c8", + "gasLimit": 7819683, + "difficulty": "0x2", + "baseFee": "0x116", + "coinbase": { + "address": "0x0000000000000000000000000000000000000000", + "nonce": 0, + "balance": "0x0", + "codeHash": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "time": 1661263589, + "transactions": [ + { + "type": 2, + "nonce": 234, + "txHash": "0x35aff918ddbfcb0325f9ee373cb934fd58c9d89c485dd4bccf4f710a9772ef0d", + "gas": 3021784, + "gasPrice": "0x15f", + "from": "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "to": "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "chainId": "0xcf55", + "value": "0x0", + "data": "0x21848c4600000000000000000000000000000000000000000000000000000182cb06a45a", + "isCreate": false, + "v": "0x1", + "r": "0x7e6ee44561fe3cd5a26629c95f91465d0bcc023bd8d7f0ad5b0e101f097cfd00", + "s": "0x26f4f1e624ad56340fce965f17e6368e3ba285b35ca7bd7325e0487d9b1df7d6" + }, + { + "type": 2, + "nonce": 235, + "txHash": "0x177c9fa3bd35c9d72107c328f718ec173bd8d1008e5eb0ef13750bdb046c60cb", + "gas": 3021784, + "gasPrice": "0x15f", + "from": "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "to": "0x9cb1b5b04b4dcd5c3ab9bafd2c0ad4fd8a9b3d29", + "chainId": "0xcf55", + "value": "0x0", + "data": "0x36864b1b00000000000000000000000000000000000000000000000000000182cb06a45a", + "isCreate": false, + "v": "0x0", + "r": "0x6245808c09fc27de2a36e781a5469ed8aaa1050267b70e178b4a0d63229830b7", + "s": "0x71be3039e1feac4813771284ef176bd0b5e97f0e412abbfdb8fc0a59bb4cf32f" + }, + { + "type": 2, + "nonce": 236, + "txHash": "0xec3a08f95a5e749e63e0e1b2e60b13eea23b58c429abd2fb60daca2f3bc8ef66", + "gas": 3021784, + "gasPrice": "0x15f", + "from": "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "to": "0x9cb1b5b04b4dcd5c3ab9bafd2c0ad4fd8a9b3d29", + "chainId": "0xcf55", + "value": "0x0", + "data": "0xa0a4868800000000000000000000000000000000000000000000000000000182cb06a45a", + "isCreate": false, + "v": "0x1", + "r": "0x1d12dc49147f747727b139b10913cd5e0f02e877048d1d9667c05073c4c14ff6", + "s": "0x496018f1ba62d43341f5df7613a5c5194b1a6f9bade001349f224be7bb1da46d" + } + ] + }, + "storageTrace": { + "rootBefore": "0x1cd0fc95c59545cfd825ffccaebe2e70c26f6c70324127e0a126bc75caf6969f", + "rootAfter": "0x176973944fc0be1800500ef1d43a0535c54820f30392072e40d60053cc0d61f8", + "proofs": { + "0x4cb1aB63aF5D8931Ce09673EbD8ae2ce16fD6571": [ + "0x001ef0067f561481f4d96b0a16ecb99c0165f270beec66023060142886e07da27e201964aaa811907ba1216fba09ded70a387f039e13da658541892e7051c3c999", + "0x001476ac51555b45f2dde5e4a1b3ea4e97754f84b4db18d34c698fb15d38acf8881fb2f78dc4edceeae0424b59310236ab12781d2c54169acd4c6da921be5d1107", + "0x001d3dcc7cb85d1cd5b47ab7adc81ac8604d93c0025d363bb5f924640d9727d5ec1dde73a5bced045bbca203732e3776cba1700410f5c2a9b9eb4ea4f3443387de", + "0x001bc14bbec24db7737b18bc0f49d46d4c6c64f097c8b92a06cbe228c94c91c26722de217a821ca10394e3c0f7a99762e37d87f50e2a61f48a154a26a4c4c7c5e7", + "0x000ef81a6c68d20d9d29dd6322d851e57c54c031ac00ee05e60c2f21424d4924f62476528bfa68c45302ded7a687e4f7b80eecd12ad6e67502d61224e1613a6441", + "0x0025aab923d9a5a2d93978c98a1f5bb1a2ed1a57702b3e81e9da4e97a44c390bc7185c59b6dd3df71e40110d339f6dbf2e152c577fda0bd7cc506fa0745504d1b9", + "0x00240595687c8fa1172547dcc9450ef9f30519743088365ea537ff0a5a0263eef82c4900a476e1631233c8a524b626fa9c40a117ad11b3a621d3c76e0264dbc944", + "0x001a6e6c4fef00c5bf6aefe78912c0f0511e9a81c9c0f0672b2512a119082134ff2fe8b70043185278f8f6c75d7057d75ebc62e82052f480dfc207de3b0e89700e", + "0x0129bdbea092f4f7e6de593fd1a16ddb50b1c2a6297d4ae141a60f8da631e481750404000000000000000000000000000000000000000000000000000000000000000000ea0056bc75e2d630ffffffffffffffffffffffffffffffffffff334673bd37e1c0c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470000000000000000000000000000000000000000000000000000000000000000000", + "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" + ], + "0x7db8ae361A8746Cb1346D3390B00D7122e3286e4": [ + "0x001ef0067f561481f4d96b0a16ecb99c0165f270beec66023060142886e07da27e201964aaa811907ba1216fba09ded70a387f039e13da658541892e7051c3c999", + "0x001476ac51555b45f2dde5e4a1b3ea4e97754f84b4db18d34c698fb15d38acf8881fb2f78dc4edceeae0424b59310236ab12781d2c54169acd4c6da921be5d1107", + "0x001cfe73dfd73f263b763f76379720567559b8828c58b765de7542ac8f93cba7a70490ae4c72f6e1775acf6c6901461dbd1a15df1a3f362ee211604e2d496e7dba", + "0x0023436b13a50c20f4a95dced5353233263a03dc3fa7a06f9e97149f991b388a0d009501b590be579a262bb80fb0a9ea86ae4f5fe66f6721d7bfa92fb1d3f0c712", + "0x0018bee14fba57e0f47e44964b93a9b58bd92090c44dac33e94b1eb53e860c4a302b5f8721e3ff1e809a2e15b9397e3a53529da2c01925fbeba733a50f3f3f3ccd", + "0x0022cf871d8e588e65c248d2e112e552054e01a428bd5b402429e4a74e424819dd0000000000000000000000000000000000000000000000000000000000000000", + "0x000177153314562313b17338386eeb5b8df1c1995143433f5fb9bd49283b0167261431a4c64354b399ca6a1049116796f29462f29b06fd39b719f5c3bd779cbf0c", + "0x0124c0a7ea76182c713800cfeb6556da9b21c53ceaab4b469557291fdd2a067e8b04040000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000004ee2afb169bef88abed9792edc0230c2cda9c19a48639d2db199479f1176928e2dd9996fe670e64d465b8ff5f9be000af9dac47f2fb85f029ae8ca2292fdd82a00", + "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" + ], + "0x9CB1B5b04b4dCD5c3ab9bAFd2c0ad4Fd8A9b3d29": [ + "0x001ef0067f561481f4d96b0a16ecb99c0165f270beec66023060142886e07da27e201964aaa811907ba1216fba09ded70a387f039e13da658541892e7051c3c999", + "0x001476ac51555b45f2dde5e4a1b3ea4e97754f84b4db18d34c698fb15d38acf8881fb2f78dc4edceeae0424b59310236ab12781d2c54169acd4c6da921be5d1107", + "0x001cfe73dfd73f263b763f76379720567559b8828c58b765de7542ac8f93cba7a70490ae4c72f6e1775acf6c6901461dbd1a15df1a3f362ee211604e2d496e7dba", + "0x0023436b13a50c20f4a95dced5353233263a03dc3fa7a06f9e97149f991b388a0d009501b590be579a262bb80fb0a9ea86ae4f5fe66f6721d7bfa92fb1d3f0c712", + "0x000f5cf8e89bd3808580d0fcc5417d6ac63d65d765ce59591ea7732941ec4ae5d517d9485a140e0b6d0f1cd868c6a3d8e135c64813cd7a8df4c67477f661277cae", + "0x00098a6e2dd068125c0991070fa713c8ec29cdf822cd89b392c8d941abde6997f21cf152b75256f55c17d9cbc4bc5bf860e34b0b53b8884e98e359699872f4e516", + "0x00000000000000000000000000000000000000000000000000000000000000000004ee721979845bab62b2ee55edbcb25edcd708c86ea425178e4432ae6c9d2c22", + "0x000c6da2afdc12f7074825cd6166ef9ecbc392d8a722d3d9b05b4c7eb46f4672810000000000000000000000000000000000000000000000000000000000000000", + "0x000000000000000000000000000000000000000000000000000000000000000000288ec85ddc4de7b8c380902b07705d2695254102792a91b66496a502633d48fb", + "0x00116705b72ddf8bd56ed7c488d8aeb784fae8d65d5eaf684d8cb07f4f449de1ef22e0b3c1b527d16d92ec1d7176b0d0b779cd1c2d74dc31b32717d50bca18733a", + "0x0112bbe3f6da505c367dd301ce3155857bf1025c8a6c6ea96f427866f9d83e93530404000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000b058876f2963a74146d29465bbd582cbc6f2c03a2ec5adc6e6d74513470072a4276e150eddbaec8fa38960158a2ce3acf150ab7b06de36c90f303d6b1ba3d18900", + "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" + ], + "0xED491d2c35f615CF1591bB6322486f1EFcC9F6B5": [ + "0x001ef0067f561481f4d96b0a16ecb99c0165f270beec66023060142886e07da27e201964aaa811907ba1216fba09ded70a387f039e13da658541892e7051c3c999", + "0x001476ac51555b45f2dde5e4a1b3ea4e97754f84b4db18d34c698fb15d38acf8881fb2f78dc4edceeae0424b59310236ab12781d2c54169acd4c6da921be5d1107", + "0x001d3dcc7cb85d1cd5b47ab7adc81ac8604d93c0025d363bb5f924640d9727d5ec1dde73a5bced045bbca203732e3776cba1700410f5c2a9b9eb4ea4f3443387de", + "0x00180f3161b63243d98543a035b0b05d516542f8e5c998e91847a8fc5a03236db81f6042ebb8accbafb4a84e0623e6a11de98f9c685587345c8a9a3ea0d8753263", + "0x00012d4ee8f7f3ab4f7749da5b89493e061b7867c513eb01e6bda5e3be3714046a2ae5f2690a2a068846a918c9f315d5fb7545ef202c80b91839792fdf1db962e7", + "0x00000000000000000000000000000000000000000000000000000000000000000021a13825df3a2e44d116b730a9f9fae9d1009b0d93775c959008c0ff39a6baf1", + "0x00145b2a9022fb338f5ca771385004ae0dd96e58dd66da195e2002f6339b220b810000000000000000000000000000000000000000000000000000000000000000", + "0x00000000000000000000000000000000000000000000000000000000000000000021ecb6ec05411b84bfb132448a057521a4e5d78386cd6e3e6ae18ee82d408705", + "0x00000000000000000000000000000000000000000000000000000000000000000022a65ff4975f65726dd7610e5952dcb0cdb90e3362d06026713d9af3b0e443ce", + "0x0005aa97d091fa51170d4af9a7e10e089bb2d247491a795cfd494ddbfa4a4ae97a25c7887bd154235bc95dd2c100ad2c6ef2bff09d124942faa084e6436241a513", + "0x01176926261560230603f6c6ab7ddcf6878f0150ad2f6c5d55ca3afb99711123b904040000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000005a58c210f99d8c05214f392685ce9711a7538fb5ed7bcd81fba60e035e56f1631178fcc81e2780c1e73e34fa1e93d9d4ed7f7e4f04c48ef0862e72fb9d9041ec00", + "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" + ] + }, + "storageProofs": { + "0x7db8ae361A8746Cb1346D3390B00D7122e3286e4": { + "0x0000000000000000000000000000000000000000000000000000000000000000": [ + "0x012098f5fb9e239eab3ceac3f27b81e481dc3124d55ffed523a839ee8446b648640101000000000000000000000000000000000000000000000000000000000182cae4f50200", + "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" + ] + }, + "0x9CB1B5b04b4dCD5c3ab9bAFd2c0ad4Fd8A9b3d29": { + "0x0000000000000000000000000000000000000000000000000000000000000000": [ + "0x0015c9e3291556c0ddf67f35819b4093a0236d284bc6e02c28dd3503f3c5642c890000000000000000000000000000000000000000000000000000000000000000", + "0x0016030aea5f3b5eea7a1040a9daac483009e9d22c845fcde1f1beac3efb650dcc0000000000000000000000000000000000000000000000000000000000000000", + "0x012098f5fb9e239eab3ceac3f27b81e481dc3124d55ffed523a839ee8446b6486401010000000000000000000000000000ed491d2c35f615cf1591bb6322486f1efcc9f6b500", + "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" + ], + "0x0000000000000000000000000000000000000000000000000000000000000001": [ + "0x0015c9e3291556c0ddf67f35819b4093a0236d284bc6e02c28dd3503f3c5642c890000000000000000000000000000000000000000000000000000000000000000", + "0x0016030aea5f3b5eea7a1040a9daac483009e9d22c845fcde1f1beac3efb650dcc0000000000000000000000000000000000000000000000000000000000000000", + "0x02", + "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" + ] + }, + "0xED491d2c35f615CF1591bB6322486f1EFcC9F6B5": { + "0x0000000000000000000000000000000000000000000000000000000000000000": [ + "0x012098f5fb9e239eab3ceac3f27b81e481dc3124d55ffed523a839ee8446b64864010100000000000000000000000000007db8ae361a8746cb1346d3390b00d7122e3286e400", + "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" + ] + } + } + }, + "executionResults": [ + { + "gas": 32223, + "failed": false, + "from": { + "address": "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "nonce": 234, + "balance": "0x56bc75e2d630ffffffffffffffffffffffffffffffffffff334673bd37e1c0", + "codeHash": "0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470" + }, + "to": { + "address": "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "nonce": 1, + "balance": "0x0", + "codeHash": "0x5a58c210f99d8c05214f392685ce9711a7538fb5ed7bcd81fba60e035e56f163" + }, + "accountAfter": [ + { + "address": "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "nonce": 235, + "balance": "0x56bc75e2d630ffffffffffffffffffffffffffffffffffff334673bcaf3196", + "codeHash": "0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470" + }, + { + "address": "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "nonce": 1, + "balance": "0x0", + "codeHash": "0x5a58c210f99d8c05214f392685ce9711a7538fb5ed7bcd81fba60e035e56f163" + } + ], + "codeHash": "0x5a58c210f99d8c05214f392685ce9711a7538fb5ed7bcd81fba60e035e56f163", + "byteCode": "0x608060405234801561001057600080fd5b506004361061004c5760003560e01c806321848c46146100515780633e23ee431461006d578063b0f2b72a1461008b578063ed231420146100a7575b600080fd5b61006b6004803603810190610066919061038a565b6100c3565b005b61007561015b565b604051610082919061040a565b60405180910390f35b6100a560048036038101906100a0919061038a565b610184565b005b6100c160048036038101906100bc919061038a565b610219565b005b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff166321848c46836040518263ffffffff1660e01b81526004016101229190610447565b600060405180830381600087803b15801561013c57600080fd5b505af192505050801561014d575060015b61015657610157565b5b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663b0f2b72a836040518263ffffffff1660e01b81526004016101e39190610447565b600060405180830381600087803b1580156101fd57600080fd5b505af1158015610211573d6000803e3d6000fd5b505050505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663e5223f886064846040518363ffffffff1660e01b815260040161027a9190610447565b6000604051808303818588803b15801561029357600080fd5b505af1935050505080156102a5575060015b6102ae576102af565b5b5050565b610349816040516024016102c79190610425565b6040516020818303038152906040527f41304fac000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff838183161783525050505061034c565b50565b60008151905060006a636f6e736f6c652e6c6f679050602083016000808483855afa5050505050565b600081359050610384816104fe565b92915050565b60006020828403121561039c57600080fd5b60006103aa84828501610375565b91505092915050565b6103bc8161047e565b82525050565b60006103cd82610462565b6103d7818561046d565b93506103e78185602086016104ba565b6103f0816104ed565b840191505092915050565b610404816104b0565b82525050565b600060208201905061041f60008301846103b3565b92915050565b6000602082019050818103600083015261043f81846103c2565b905092915050565b600060208201905061045c60008301846103fb565b92915050565b600081519050919050565b600082825260208201905092915050565b600061048982610490565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b838110156104d85780820151818401526020810190506104bd565b838111156104e7576000848401525b50505050565b6000601f19601f8301169050919050565b610507816104b0565b811461051257600080fd5b5056fea2646970667358221220f5cc0a3497437233916ec484eed596fa82d20198cc5e4e12a1bc76d6907526b864736f6c63430008040033", + "structLogs": [ + { + "pc": 0, + "op": "PUSH1", + "gas": 3000520, + "gasCost": 3, + "depth": 1 + }, + { + "pc": 2, + "op": "PUSH1", + "gas": 3000517, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80" + ] + }, + { + "pc": 4, + "op": "MSTORE", + "gas": 3000514, + "gasCost": 12, + "depth": 1, + "stack": [ + "0x80", + "0x40" + ] + }, + { + "pc": 5, + "op": "CALLVALUE", + "gas": 3000502, + "gasCost": 2, + "depth": 1 + }, + { + "pc": 6, + "op": "DUP1", + "gas": 3000500, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 7, + "op": "ISZERO", + "gas": 3000497, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0", + "0x0" + ] + }, + { + "pc": 8, + "op": "PUSH2", + "gas": 3000494, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0", + "0x1" + ] + }, + { + "pc": 11, + "op": "JUMPI", + "gas": 3000491, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x0", + "0x1", + "0x10" + ] + }, + { + "pc": 16, + "op": "JUMPDEST", + "gas": 3000481, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 17, + "op": "POP", + "gas": 3000480, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 18, + "op": "PUSH1", + "gas": 3000478, + "gasCost": 3, + "depth": 1 + }, + { + "pc": 20, + "op": "CALLDATASIZE", + "gas": 3000475, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x4" + ] + }, + { + "pc": 21, + "op": "LT", + "gas": 3000473, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4", + "0x24" + ] + }, + { + "pc": 22, + "op": "PUSH2", + "gas": 3000470, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 25, + "op": "JUMPI", + "gas": 3000467, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x0", + "0x4c" + ] + }, + { + "pc": 26, + "op": "PUSH1", + "gas": 3000457, + "gasCost": 3, + "depth": 1 + }, + { + "pc": 28, + "op": "CALLDATALOAD", + "gas": 3000454, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 29, + "op": "PUSH1", + "gas": 3000451, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x21848c4600000000000000000000000000000000000000000000000000000182" + ] + }, + { + "pc": 31, + "op": "SHR", + "gas": 3000448, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x21848c4600000000000000000000000000000000000000000000000000000182", + "0xe0" + ] + }, + { + "pc": 32, + "op": "DUP1", + "gas": 3000445, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x21848c46" + ] + }, + { + "pc": 33, + "op": "PUSH4", + "gas": 3000442, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x21848c46", + "0x21848c46" + ] + }, + { + "pc": 38, + "op": "EQ", + "gas": 3000439, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x21848c46", + "0x21848c46", + "0x21848c46" + ] + }, + { + "pc": 39, + "op": "PUSH2", + "gas": 3000436, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x21848c46", + "0x1" + ] + }, + { + "pc": 42, + "op": "JUMPI", + "gas": 3000433, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x21848c46", + "0x1", + "0x51" + ] + }, + { + "pc": 81, + "op": "JUMPDEST", + "gas": 3000423, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x21848c46" + ] + }, + { + "pc": 82, + "op": "PUSH2", + "gas": 3000422, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x21848c46" + ] + }, + { + "pc": 85, + "op": "PUSH1", + "gas": 3000419, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b" + ] + }, + { + "pc": 87, + "op": "DUP1", + "gas": 3000416, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x4" + ] + }, + { + "pc": 88, + "op": "CALLDATASIZE", + "gas": 3000413, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x4", + "0x4" + ] + }, + { + "pc": 89, + "op": "SUB", + "gas": 3000411, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x4", + "0x4", + "0x24" + ] + }, + { + "pc": 90, + "op": "DUP2", + "gas": 3000408, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x4", + "0x20" + ] + }, + { + "pc": 91, + "op": "ADD", + "gas": 3000405, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x4", + "0x20", + "0x4" + ] + }, + { + "pc": 92, + "op": "SWAP1", + "gas": 3000402, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x4", + "0x24" + ] + }, + { + "pc": 93, + "op": "PUSH2", + "gas": 3000399, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x24", + "0x4" + ] + }, + { + "pc": 96, + "op": "SWAP2", + "gas": 3000396, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x24", + "0x4", + "0x66" + ] + }, + { + "pc": 97, + "op": "SWAP1", + "gas": 3000393, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x4", + "0x24" + ] + }, + { + "pc": 98, + "op": "PUSH2", + "gas": 3000390, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4" + ] + }, + { + "pc": 101, + "op": "JUMP", + "gas": 3000387, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x38a" + ] + }, + { + "pc": 906, + "op": "JUMPDEST", + "gas": 3000379, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4" + ] + }, + { + "pc": 907, + "op": "PUSH1", + "gas": 3000378, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4" + ] + }, + { + "pc": 909, + "op": "PUSH1", + "gas": 3000375, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 911, + "op": "DUP3", + "gas": 3000372, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x20" + ] + }, + { + "pc": 912, + "op": "DUP5", + "gas": 3000369, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x20", + "0x4" + ] + }, + { + "pc": 913, + "op": "SUB", + "gas": 3000366, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x20", + "0x4", + "0x24" + ] + }, + { + "pc": 914, + "op": "SLT", + "gas": 3000363, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x20", + "0x20" + ] + }, + { + "pc": 915, + "op": "ISZERO", + "gas": 3000360, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0" + ] + }, + { + "pc": 916, + "op": "PUSH2", + "gas": 3000357, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x1" + ] + }, + { + "pc": 919, + "op": "JUMPI", + "gas": 3000354, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x1", + "0x39c" + ] + }, + { + "pc": 924, + "op": "JUMPDEST", + "gas": 3000344, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 925, + "op": "PUSH1", + "gas": 3000343, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 927, + "op": "PUSH2", + "gas": 3000340, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0" + ] + }, + { + "pc": 930, + "op": "DUP5", + "gas": 3000337, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa" + ] + }, + { + "pc": 931, + "op": "DUP3", + "gas": 3000334, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24" + ] + }, + { + "pc": 932, + "op": "DUP6", + "gas": 3000331, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x0" + ] + }, + { + "pc": 933, + "op": "ADD", + "gas": 3000328, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x0", + "0x4" + ] + }, + { + "pc": 934, + "op": "PUSH2", + "gas": 3000325, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4" + ] + }, + { + "pc": 937, + "op": "JUMP", + "gas": 3000322, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x375" + ] + }, + { + "pc": 885, + "op": "JUMPDEST", + "gas": 3000314, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4" + ] + }, + { + "pc": 886, + "op": "PUSH1", + "gas": 3000313, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4" + ] + }, + { + "pc": 888, + "op": "DUP2", + "gas": 3000310, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 889, + "op": "CALLDATALOAD", + "gas": 3000307, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x0", + "0x4" + ] + }, + { + "pc": 890, + "op": "SWAP1", + "gas": 3000304, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x0", + "0x182cb06a45a" + ] + }, + { + "pc": 891, + "op": "POP", + "gas": 3000301, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cb06a45a", + "0x0" + ] + }, + { + "pc": 892, + "op": "PUSH2", + "gas": 3000299, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cb06a45a" + ] + }, + { + "pc": 895, + "op": "DUP2", + "gas": 3000296, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cb06a45a", + "0x384" + ] + }, + { + "pc": 896, + "op": "PUSH2", + "gas": 3000293, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cb06a45a", + "0x384", + "0x182cb06a45a" + ] + }, + { + "pc": 899, + "op": "JUMP", + "gas": 3000290, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cb06a45a", + "0x384", + "0x182cb06a45a", + "0x4fe" + ] + }, + { + "pc": 1278, + "op": "JUMPDEST", + "gas": 3000282, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cb06a45a", + "0x384", + "0x182cb06a45a" + ] + }, + { + "pc": 1279, + "op": "PUSH2", + "gas": 3000281, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cb06a45a", + "0x384", + "0x182cb06a45a" + ] + }, + { + "pc": 1282, + "op": "DUP2", + "gas": 3000278, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cb06a45a", + "0x384", + "0x182cb06a45a", + "0x507" + ] + }, + { + "pc": 1283, + "op": "PUSH2", + "gas": 3000275, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cb06a45a", + "0x384", + "0x182cb06a45a", + "0x507", + "0x182cb06a45a" + ] + }, + { + "pc": 1286, + "op": "JUMP", + "gas": 3000272, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cb06a45a", + "0x384", + "0x182cb06a45a", + "0x507", + "0x182cb06a45a", + "0x4b0" + ] + }, + { + "pc": 1200, + "op": "JUMPDEST", + "gas": 3000264, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cb06a45a", + "0x384", + "0x182cb06a45a", + "0x507", + "0x182cb06a45a" + ] + }, + { + "pc": 1201, + "op": "PUSH1", + "gas": 3000263, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cb06a45a", + "0x384", + "0x182cb06a45a", + "0x507", + "0x182cb06a45a" + ] + }, + { + "pc": 1203, + "op": "DUP2", + "gas": 3000260, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cb06a45a", + "0x384", + "0x182cb06a45a", + "0x507", + "0x182cb06a45a", + "0x0" + ] + }, + { + "pc": 1204, + "op": "SWAP1", + "gas": 3000257, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cb06a45a", + "0x384", + "0x182cb06a45a", + "0x507", + "0x182cb06a45a", + "0x0", + "0x182cb06a45a" + ] + }, + { + "pc": 1205, + "op": "POP", + "gas": 3000254, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cb06a45a", + "0x384", + "0x182cb06a45a", + "0x507", + "0x182cb06a45a", + "0x182cb06a45a", + "0x0" + ] + }, + { + "pc": 1206, + "op": "SWAP2", + "gas": 3000252, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cb06a45a", + "0x384", + "0x182cb06a45a", + "0x507", + "0x182cb06a45a", + "0x182cb06a45a" + ] + }, + { + "pc": 1207, + "op": "SWAP1", + "gas": 3000249, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cb06a45a", + "0x384", + "0x182cb06a45a", + "0x182cb06a45a", + "0x182cb06a45a", + "0x507" + ] + }, + { + "pc": 1208, + "op": "POP", + "gas": 3000246, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cb06a45a", + "0x384", + "0x182cb06a45a", + "0x182cb06a45a", + "0x507", + "0x182cb06a45a" + ] + }, + { + "pc": 1209, + "op": "JUMP", + "gas": 3000244, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cb06a45a", + "0x384", + "0x182cb06a45a", + "0x182cb06a45a", + "0x507" + ] + }, + { + "pc": 1287, + "op": "JUMPDEST", + "gas": 3000236, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cb06a45a", + "0x384", + "0x182cb06a45a", + "0x182cb06a45a" + ] + }, + { + "pc": 1288, + "op": "DUP2", + "gas": 3000235, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cb06a45a", + "0x384", + "0x182cb06a45a", + "0x182cb06a45a" + ] + }, + { + "pc": 1289, + "op": "EQ", + "gas": 3000232, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cb06a45a", + "0x384", + "0x182cb06a45a", + "0x182cb06a45a", + "0x182cb06a45a" + ] + }, + { + "pc": 1290, + "op": "PUSH2", + "gas": 3000229, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cb06a45a", + "0x384", + "0x182cb06a45a", + "0x1" + ] + }, + { + "pc": 1293, + "op": "JUMPI", + "gas": 3000226, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cb06a45a", + "0x384", + "0x182cb06a45a", + "0x1", + "0x512" + ] + }, + { + "pc": 1298, + "op": "JUMPDEST", + "gas": 3000216, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cb06a45a", + "0x384", + "0x182cb06a45a" + ] + }, + { + "pc": 1299, + "op": "POP", + "gas": 3000215, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cb06a45a", + "0x384", + "0x182cb06a45a" + ] + }, + { + "pc": 1300, + "op": "JUMP", + "gas": 3000213, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cb06a45a", + "0x384" + ] + }, + { + "pc": 900, + "op": "JUMPDEST", + "gas": 3000205, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cb06a45a" + ] + }, + { + "pc": 901, + "op": "SWAP3", + "gas": 3000204, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cb06a45a" + ] + }, + { + "pc": 902, + "op": "SWAP2", + "gas": 3000201, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x182cb06a45a", + "0x24", + "0x4", + "0x3aa" + ] + }, + { + "pc": 903, + "op": "POP", + "gas": 3000198, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x182cb06a45a", + "0x3aa", + "0x4", + "0x24" + ] + }, + { + "pc": 904, + "op": "POP", + "gas": 3000196, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x182cb06a45a", + "0x3aa", + "0x4" + ] + }, + { + "pc": 905, + "op": "JUMP", + "gas": 3000194, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x182cb06a45a", + "0x3aa" + ] + }, + { + "pc": 938, + "op": "JUMPDEST", + "gas": 3000186, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x182cb06a45a" + ] + }, + { + "pc": 939, + "op": "SWAP2", + "gas": 3000185, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x182cb06a45a" + ] + }, + { + "pc": 940, + "op": "POP", + "gas": 3000182, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x182cb06a45a", + "0x0", + "0x0" + ] + }, + { + "pc": 941, + "op": "POP", + "gas": 3000180, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x182cb06a45a", + "0x0" + ] + }, + { + "pc": 942, + "op": "SWAP3", + "gas": 3000178, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x182cb06a45a" + ] + }, + { + "pc": 943, + "op": "SWAP2", + "gas": 3000175, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x24", + "0x4", + "0x66" + ] + }, + { + "pc": 944, + "op": "POP", + "gas": 3000172, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x66", + "0x4", + "0x24" + ] + }, + { + "pc": 945, + "op": "POP", + "gas": 3000170, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x66", + "0x4" + ] + }, + { + "pc": 946, + "op": "JUMP", + "gas": 3000168, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x66" + ] + }, + { + "pc": 102, + "op": "JUMPDEST", + "gas": 3000160, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a" + ] + }, + { + "pc": 103, + "op": "PUSH2", + "gas": 3000159, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a" + ] + }, + { + "pc": 106, + "op": "JUMP", + "gas": 3000156, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0xc3" + ] + }, + { + "pc": 195, + "op": "JUMPDEST", + "gas": 3000148, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a" + ] + }, + { + "pc": 196, + "op": "PUSH1", + "gas": 3000147, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a" + ] + }, + { + "pc": 198, + "op": "DUP1", + "gas": 3000144, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x0" + ] + }, + { + "pc": 199, + "op": "PUSH1", + "gas": 3000141, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x0", + "0x0" + ] + }, + { + "pc": 201, + "op": "SWAP1", + "gas": 3000138, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 202, + "op": "SLOAD", + "gas": 3000135, + "gasCost": 2100, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x0", + "0x0", + "0x0" + ], + "storage": { + "0x0000000000000000000000000000000000000000000000000000000000000000": "0x0000000000000000000000007db8ae361a8746cb1346d3390b00d7122e3286e4" + }, + "extraData": { + "proofList": [ + { + "address": "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "nonce": 1, + "balance": "0x0", + "codeHash": "0x5a58c210f99d8c05214f392685ce9711a7538fb5ed7bcd81fba60e035e56f163", + "storage": { + "key": "0x0000000000000000000000000000000000000000000000000000000000000000", + "value": "0x0000000000000000000000007db8ae361a8746cb1346d3390b00d7122e3286e4" + } + } + ] + } + }, + { + "pc": 203, + "op": "SWAP1", + "gas": 2998035, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x0", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4" + ] + }, + { + "pc": 204, + "op": "PUSH2", + "gas": 2998032, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x0" + ] + }, + { + "pc": 207, + "op": "EXP", + "gas": 2998029, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x0", + "0x100" + ] + }, + { + "pc": 208, + "op": "SWAP1", + "gas": 2998019, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x1" + ] + }, + { + "pc": 209, + "op": "DIV", + "gas": 2998016, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x0", + "0x1", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4" + ] + }, + { + "pc": 210, + "op": "PUSH20", + "gas": 2998011, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4" + ] + }, + { + "pc": 231, + "op": "AND", + "gas": 2998008, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 232, + "op": "SWAP1", + "gas": 2998005, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4" + ] + }, + { + "pc": 233, + "op": "POP", + "gas": 2998002, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x0" + ] + }, + { + "pc": 234, + "op": "DUP1", + "gas": 2998000, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4" + ] + }, + { + "pc": 235, + "op": "PUSH20", + "gas": 2997997, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4" + ] + }, + { + "pc": 256, + "op": "AND", + "gas": 2997994, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 257, + "op": "PUSH4", + "gas": 2997991, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4" + ] + }, + { + "pc": 262, + "op": "DUP4", + "gas": 2997988, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46" + ] + }, + { + "pc": 263, + "op": "PUSH1", + "gas": 2997985, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x182cb06a45a" + ] + }, + { + "pc": 265, + "op": "MLOAD", + "gas": 2997982, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x182cb06a45a", + "0x40" + ] + }, + { + "pc": 266, + "op": "DUP3", + "gas": 2997979, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x182cb06a45a", + "0x80" + ] + }, + { + "pc": 267, + "op": "PUSH4", + "gas": 2997976, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x182cb06a45a", + "0x80", + "0x21848c46" + ] + }, + { + "pc": 272, + "op": "AND", + "gas": 2997973, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x182cb06a45a", + "0x80", + "0x21848c46", + "0xffffffff" + ] + }, + { + "pc": 273, + "op": "PUSH1", + "gas": 2997970, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x182cb06a45a", + "0x80", + "0x21848c46" + ] + }, + { + "pc": 275, + "op": "SHL", + "gas": 2997967, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x182cb06a45a", + "0x80", + "0x21848c46", + "0xe0" + ] + }, + { + "pc": 276, + "op": "DUP2", + "gas": 2997964, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x182cb06a45a", + "0x80", + "0x21848c4600000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 277, + "op": "MSTORE", + "gas": 2997961, + "gasCost": 9, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x182cb06a45a", + "0x80", + "0x21848c4600000000000000000000000000000000000000000000000000000000", + "0x80" + ] + }, + { + "pc": 278, + "op": "PUSH1", + "gas": 2997952, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x182cb06a45a", + "0x80" + ] + }, + { + "pc": 280, + "op": "ADD", + "gas": 2997949, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x182cb06a45a", + "0x80", + "0x4" + ] + }, + { + "pc": 281, + "op": "PUSH2", + "gas": 2997946, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x182cb06a45a", + "0x84" + ] + }, + { + "pc": 284, + "op": "SWAP2", + "gas": 2997943, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x182cb06a45a", + "0x84", + "0x122" + ] + }, + { + "pc": 285, + "op": "SWAP1", + "gas": 2997940, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x122", + "0x84", + "0x182cb06a45a" + ] + }, + { + "pc": 286, + "op": "PUSH2", + "gas": 2997937, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x122", + "0x182cb06a45a", + "0x84" + ] + }, + { + "pc": 289, + "op": "JUMP", + "gas": 2997934, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x122", + "0x182cb06a45a", + "0x84", + "0x447" + ] + }, + { + "pc": 1095, + "op": "JUMPDEST", + "gas": 2997926, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x122", + "0x182cb06a45a", + "0x84" + ] + }, + { + "pc": 1096, + "op": "PUSH1", + "gas": 2997925, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x122", + "0x182cb06a45a", + "0x84" + ] + }, + { + "pc": 1098, + "op": "PUSH1", + "gas": 2997922, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x122", + "0x182cb06a45a", + "0x84", + "0x0" + ] + }, + { + "pc": 1100, + "op": "DUP3", + "gas": 2997919, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x122", + "0x182cb06a45a", + "0x84", + "0x0", + "0x20" + ] + }, + { + "pc": 1101, + "op": "ADD", + "gas": 2997916, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x122", + "0x182cb06a45a", + "0x84", + "0x0", + "0x20", + "0x84" + ] + }, + { + "pc": 1102, + "op": "SWAP1", + "gas": 2997913, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x122", + "0x182cb06a45a", + "0x84", + "0x0", + "0xa4" + ] + }, + { + "pc": 1103, + "op": "POP", + "gas": 2997910, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x122", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x0" + ] + }, + { + "pc": 1104, + "op": "PUSH2", + "gas": 2997908, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x122", + "0x182cb06a45a", + "0x84", + "0xa4" + ] + }, + { + "pc": 1107, + "op": "PUSH1", + "gas": 2997905, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x122", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x45c" + ] + }, + { + "pc": 1109, + "op": "DUP4", + "gas": 2997902, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x122", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x45c", + "0x0" + ] + }, + { + "pc": 1110, + "op": "ADD", + "gas": 2997899, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x122", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x45c", + "0x0", + "0x84" + ] + }, + { + "pc": 1111, + "op": "DUP5", + "gas": 2997896, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x122", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x45c", + "0x84" + ] + }, + { + "pc": 1112, + "op": "PUSH2", + "gas": 2997893, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x122", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x182cb06a45a" + ] + }, + { + "pc": 1115, + "op": "JUMP", + "gas": 2997890, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x122", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x182cb06a45a", + "0x3fb" + ] + }, + { + "pc": 1019, + "op": "JUMPDEST", + "gas": 2997882, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x122", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x182cb06a45a" + ] + }, + { + "pc": 1020, + "op": "PUSH2", + "gas": 2997881, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x122", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x182cb06a45a" + ] + }, + { + "pc": 1023, + "op": "DUP2", + "gas": 2997878, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x122", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x182cb06a45a", + "0x404" + ] + }, + { + "pc": 1024, + "op": "PUSH2", + "gas": 2997875, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x122", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x182cb06a45a", + "0x404", + "0x182cb06a45a" + ] + }, + { + "pc": 1027, + "op": "JUMP", + "gas": 2997872, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x122", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x182cb06a45a", + "0x404", + "0x182cb06a45a", + "0x4b0" + ] + }, + { + "pc": 1200, + "op": "JUMPDEST", + "gas": 2997864, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x122", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x182cb06a45a", + "0x404", + "0x182cb06a45a" + ] + }, + { + "pc": 1201, + "op": "PUSH1", + "gas": 2997863, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x122", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x182cb06a45a", + "0x404", + "0x182cb06a45a" + ] + }, + { + "pc": 1203, + "op": "DUP2", + "gas": 2997860, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x122", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x182cb06a45a", + "0x404", + "0x182cb06a45a", + "0x0" + ] + }, + { + "pc": 1204, + "op": "SWAP1", + "gas": 2997857, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x122", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x182cb06a45a", + "0x404", + "0x182cb06a45a", + "0x0", + "0x182cb06a45a" + ] + }, + { + "pc": 1205, + "op": "POP", + "gas": 2997854, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x122", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x182cb06a45a", + "0x404", + "0x182cb06a45a", + "0x182cb06a45a", + "0x0" + ] + }, + { + "pc": 1206, + "op": "SWAP2", + "gas": 2997852, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x122", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x182cb06a45a", + "0x404", + "0x182cb06a45a", + "0x182cb06a45a" + ] + }, + { + "pc": 1207, + "op": "SWAP1", + "gas": 2997849, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x122", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x182cb06a45a", + "0x182cb06a45a", + "0x182cb06a45a", + "0x404" + ] + }, + { + "pc": 1208, + "op": "POP", + "gas": 2997846, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x122", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x182cb06a45a", + "0x182cb06a45a", + "0x404", + "0x182cb06a45a" + ] + }, + { + "pc": 1209, + "op": "JUMP", + "gas": 2997844, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x122", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x182cb06a45a", + "0x182cb06a45a", + "0x404" + ] + }, + { + "pc": 1028, + "op": "JUMPDEST", + "gas": 2997836, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x122", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x182cb06a45a", + "0x182cb06a45a" + ] + }, + { + "pc": 1029, + "op": "DUP3", + "gas": 2997835, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x122", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x182cb06a45a", + "0x182cb06a45a" + ] + }, + { + "pc": 1030, + "op": "MSTORE", + "gas": 2997832, + "gasCost": 6, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x122", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x182cb06a45a", + "0x182cb06a45a", + "0x84" + ] + }, + { + "pc": 1031, + "op": "POP", + "gas": 2997826, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x122", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x182cb06a45a" + ] + }, + { + "pc": 1032, + "op": "POP", + "gas": 2997824, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x122", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x45c", + "0x84" + ] + }, + { + "pc": 1033, + "op": "JUMP", + "gas": 2997822, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x122", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x45c" + ] + }, + { + "pc": 1116, + "op": "JUMPDEST", + "gas": 2997814, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x122", + "0x182cb06a45a", + "0x84", + "0xa4" + ] + }, + { + "pc": 1117, + "op": "SWAP3", + "gas": 2997813, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x122", + "0x182cb06a45a", + "0x84", + "0xa4" + ] + }, + { + "pc": 1118, + "op": "SWAP2", + "gas": 2997810, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0xa4", + "0x182cb06a45a", + "0x84", + "0x122" + ] + }, + { + "pc": 1119, + "op": "POP", + "gas": 2997807, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0xa4", + "0x122", + "0x84", + "0x182cb06a45a" + ] + }, + { + "pc": 1120, + "op": "POP", + "gas": 2997805, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0xa4", + "0x122", + "0x84" + ] + }, + { + "pc": 1121, + "op": "JUMP", + "gas": 2997803, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0xa4", + "0x122" + ] + }, + { + "pc": 290, + "op": "JUMPDEST", + "gas": 2997795, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0xa4" + ] + }, + { + "pc": 291, + "op": "PUSH1", + "gas": 2997794, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0xa4" + ] + }, + { + "pc": 293, + "op": "PUSH1", + "gas": 2997791, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0xa4", + "0x0" + ] + }, + { + "pc": 295, + "op": "MLOAD", + "gas": 2997788, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0xa4", + "0x0", + "0x40" + ] + }, + { + "pc": 296, + "op": "DUP1", + "gas": 2997785, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0xa4", + "0x0", + "0x80" + ] + }, + { + "pc": 297, + "op": "DUP4", + "gas": 2997782, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0xa4", + "0x0", + "0x80", + "0x80" + ] + }, + { + "pc": 298, + "op": "SUB", + "gas": 2997779, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0xa4", + "0x0", + "0x80", + "0x80", + "0xa4" + ] + }, + { + "pc": 299, + "op": "DUP2", + "gas": 2997776, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0xa4", + "0x0", + "0x80", + "0x24" + ] + }, + { + "pc": 300, + "op": "PUSH1", + "gas": 2997773, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80" + ] + }, + { + "pc": 302, + "op": "DUP8", + "gas": 2997770, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0" + ] + }, + { + "pc": 303, + "op": "DUP1", + "gas": 2997767, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4" + ] + }, + { + "pc": 304, + "op": "EXTCODESIZE", + "gas": 2997764, + "gasCost": 2600, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4" + ], + "extraData": { + "codeList": [ + "0x6080604052600436106100555760003560e01c806321848c461461005a5780632e64cec114610083578063b0f2b72a146100ae578063c4e96ec0146100d7578063e5223f88146100f3578063f34176731461010f575b600080fd5b34801561006657600080fd5b50610081600480360381019061007c91906101d7565b61013a565b005b34801561008f57600080fd5b5061009861014f565b6040516100a59190610252565b60405180910390f35b3480156100ba57600080fd5b506100d560048036038101906100d091906101d7565b610158565b005b6100f160048036038101906100ec91906101d7565b610162565b005b61010d600480360381019061010891906101d7565b6101a4565b005b34801561011b57600080fd5b506101246101ae565b6040516101319190610252565b60405180910390f35b80600081905550600061014c57600080fd5b50565b60008054905090565b8060008190555050565b806000819055506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161019b90610232565b60405180910390fd5b8060008190555050565b6000806101ba57600080fd5b600054905090565b6000813590506101d1816102b1565b92915050565b6000602082840312156101e957600080fd5b60006101f7848285016101c2565b91505092915050565b600061020d600c8361026d565b915061021882610288565b602082019050919050565b61022c8161027e565b82525050565b6000602082019050818103600083015261024b81610200565b9050919050565b60006020820190506102676000830184610223565b92915050565b600082825260208201905092915050565b6000819050919050565b7f64656c696265726174656c790000000000000000000000000000000000000000600082015250565b6102ba8161027e565b81146102c557600080fd5b5056fea26469706673582212206fa6988b66dece47dc22658a0058d7f113ce303b23abdbfb3e29ee300a66489464736f6c63430008040033" + ] + } + }, + { + "pc": 305, + "op": "ISZERO", + "gas": 2995164, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x2fe" + ] + }, + { + "pc": 306, + "op": "DUP1", + "gas": 2995161, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x0" + ] + }, + { + "pc": 307, + "op": "ISZERO", + "gas": 2995158, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x0", + "0x0" + ] + }, + { + "pc": 308, + "op": "PUSH2", + "gas": 2995155, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x0", + "0x1" + ] + }, + { + "pc": 311, + "op": "JUMPI", + "gas": 2995152, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x0", + "0x1", + "0x13c" + ] + }, + { + "pc": 316, + "op": "JUMPDEST", + "gas": 2995142, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x0" + ] + }, + { + "pc": 317, + "op": "POP", + "gas": 2995141, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x0" + ] + }, + { + "pc": 318, + "op": "GAS", + "gas": 2995139, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4" + ] + }, + { + "pc": 319, + "op": "CALL", + "gas": 2995137, + "gasCost": 2948340, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x2db3c1" + ], + "extraData": { + "callFailed": true, + "codeList": [ + "0x608060405234801561001057600080fd5b506004361061004c5760003560e01c806321848c46146100515780633e23ee431461006d578063b0f2b72a1461008b578063ed231420146100a7575b600080fd5b61006b6004803603810190610066919061038a565b6100c3565b005b61007561015b565b604051610082919061040a565b60405180910390f35b6100a560048036038101906100a0919061038a565b610184565b005b6100c160048036038101906100bc919061038a565b610219565b005b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff166321848c46836040518263ffffffff1660e01b81526004016101229190610447565b600060405180830381600087803b15801561013c57600080fd5b505af192505050801561014d575060015b61015657610157565b5b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663b0f2b72a836040518263ffffffff1660e01b81526004016101e39190610447565b600060405180830381600087803b1580156101fd57600080fd5b505af1158015610211573d6000803e3d6000fd5b505050505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663e5223f886064846040518363ffffffff1660e01b815260040161027a9190610447565b6000604051808303818588803b15801561029357600080fd5b505af1935050505080156102a5575060015b6102ae576102af565b5b5050565b610349816040516024016102c79190610425565b6040516020818303038152906040527f41304fac000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff838183161783525050505061034c565b50565b60008151905060006a636f6e736f6c652e6c6f679050602083016000808483855afa5050505050565b600081359050610384816104fe565b92915050565b60006020828403121561039c57600080fd5b60006103aa84828501610375565b91505092915050565b6103bc8161047e565b82525050565b60006103cd82610462565b6103d7818561046d565b93506103e78185602086016104ba565b6103f0816104ed565b840191505092915050565b610404816104b0565b82525050565b600060208201905061041f60008301846103b3565b92915050565b6000602082019050818103600083015261043f81846103c2565b905092915050565b600060208201905061045c60008301846103fb565b92915050565b600081519050919050565b600082825260208201905092915050565b600061048982610490565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b838110156104d85780820151818401526020810190506104bd565b838111156104e7576000848401525b50505050565b6000601f19601f8301169050919050565b610507816104b0565b811461051257600080fd5b5056fea2646970667358221220f5cc0a3497437233916ec484eed596fa82d20198cc5e4e12a1bc76d6907526b864736f6c63430008040033", + "0x6080604052600436106100555760003560e01c806321848c461461005a5780632e64cec114610083578063b0f2b72a146100ae578063c4e96ec0146100d7578063e5223f88146100f3578063f34176731461010f575b600080fd5b34801561006657600080fd5b50610081600480360381019061007c91906101d7565b61013a565b005b34801561008f57600080fd5b5061009861014f565b6040516100a59190610252565b60405180910390f35b3480156100ba57600080fd5b506100d560048036038101906100d091906101d7565b610158565b005b6100f160048036038101906100ec91906101d7565b610162565b005b61010d600480360381019061010891906101d7565b6101a4565b005b34801561011b57600080fd5b506101246101ae565b6040516101319190610252565b60405180910390f35b80600081905550600061014c57600080fd5b50565b60008054905090565b8060008190555050565b806000819055506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161019b90610232565b60405180910390fd5b8060008190555050565b6000806101ba57600080fd5b600054905090565b6000813590506101d1816102b1565b92915050565b6000602082840312156101e957600080fd5b60006101f7848285016101c2565b91505092915050565b600061020d600c8361026d565b915061021882610288565b602082019050919050565b61022c8161027e565b82525050565b6000602082019050818103600083015261024b81610200565b9050919050565b60006020820190506102676000830184610223565b92915050565b600082825260208201905092915050565b6000819050919050565b7f64656c696265726174656c790000000000000000000000000000000000000000600082015250565b6102ba8161027e565b81146102c557600080fd5b5056fea26469706673582212206fa6988b66dece47dc22658a0058d7f113ce303b23abdbfb3e29ee300a66489464736f6c63430008040033" + ], + "proofList": [ + { + "address": "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "nonce": 1, + "balance": "0x0", + "codeHash": "0x5a58c210f99d8c05214f392685ce9711a7538fb5ed7bcd81fba60e035e56f163" + }, + { + "address": "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "nonce": 1, + "balance": "0x0", + "codeHash": "0x4ee2afb169bef88abed9792edc0230c2cda9c19a48639d2db199479f1176928e" + }, + { + "address": "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "nonce": 1, + "balance": "0x0", + "codeHash": "0x4ee2afb169bef88abed9792edc0230c2cda9c19a48639d2db199479f1176928e" + } + ], + "caller": [ + { + "address": "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "nonce": 1, + "balance": "0x0", + "codeHash": "0x5a58c210f99d8c05214f392685ce9711a7538fb5ed7bcd81fba60e035e56f163" + }, + { + "address": "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "nonce": 1, + "balance": "0x0", + "codeHash": "0x5a58c210f99d8c05214f392685ce9711a7538fb5ed7bcd81fba60e035e56f163" + } + ] + } + }, + { + "pc": 0, + "op": "PUSH1", + "gas": 2948240, + "gasCost": 3, + "depth": 2 + }, + { + "pc": 2, + "op": "PUSH1", + "gas": 2948237, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x80" + ] + }, + { + "pc": 4, + "op": "MSTORE", + "gas": 2948234, + "gasCost": 12, + "depth": 2, + "stack": [ + "0x80", + "0x40" + ] + }, + { + "pc": 5, + "op": "PUSH1", + "gas": 2948222, + "gasCost": 3, + "depth": 2 + }, + { + "pc": 7, + "op": "CALLDATASIZE", + "gas": 2948219, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x4" + ] + }, + { + "pc": 8, + "op": "LT", + "gas": 2948217, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x4", + "0x24" + ] + }, + { + "pc": 9, + "op": "PUSH2", + "gas": 2948214, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x0" + ] + }, + { + "pc": 12, + "op": "JUMPI", + "gas": 2948211, + "gasCost": 10, + "depth": 2, + "stack": [ + "0x0", + "0x55" + ] + }, + { + "pc": 13, + "op": "PUSH1", + "gas": 2948201, + "gasCost": 3, + "depth": 2 + }, + { + "pc": 15, + "op": "CALLDATALOAD", + "gas": 2948198, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x0" + ] + }, + { + "pc": 16, + "op": "PUSH1", + "gas": 2948195, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c4600000000000000000000000000000000000000000000000000000182" + ] + }, + { + "pc": 18, + "op": "SHR", + "gas": 2948192, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c4600000000000000000000000000000000000000000000000000000182", + "0xe0" + ] + }, + { + "pc": 19, + "op": "DUP1", + "gas": 2948189, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46" + ] + }, + { + "pc": 20, + "op": "PUSH4", + "gas": 2948186, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x21848c46" + ] + }, + { + "pc": 25, + "op": "EQ", + "gas": 2948183, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x21848c46", + "0x21848c46" + ] + }, + { + "pc": 26, + "op": "PUSH2", + "gas": 2948180, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x1" + ] + }, + { + "pc": 29, + "op": "JUMPI", + "gas": 2948177, + "gasCost": 10, + "depth": 2, + "stack": [ + "0x21848c46", + "0x1", + "0x5a" + ] + }, + { + "pc": 90, + "op": "JUMPDEST", + "gas": 2948167, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x21848c46" + ] + }, + { + "pc": 91, + "op": "CALLVALUE", + "gas": 2948166, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x21848c46" + ] + }, + { + "pc": 92, + "op": "DUP1", + "gas": 2948164, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x0" + ] + }, + { + "pc": 93, + "op": "ISZERO", + "gas": 2948161, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x0", + "0x0" + ] + }, + { + "pc": 94, + "op": "PUSH2", + "gas": 2948158, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x0", + "0x1" + ] + }, + { + "pc": 97, + "op": "JUMPI", + "gas": 2948155, + "gasCost": 10, + "depth": 2, + "stack": [ + "0x21848c46", + "0x0", + "0x1", + "0x66" + ] + }, + { + "pc": 102, + "op": "JUMPDEST", + "gas": 2948145, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x21848c46", + "0x0" + ] + }, + { + "pc": 103, + "op": "POP", + "gas": 2948144, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x21848c46", + "0x0" + ] + }, + { + "pc": 104, + "op": "PUSH2", + "gas": 2948142, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46" + ] + }, + { + "pc": 107, + "op": "PUSH1", + "gas": 2948139, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x81" + ] + }, + { + "pc": 109, + "op": "DUP1", + "gas": 2948136, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x81", + "0x4" + ] + }, + { + "pc": 110, + "op": "CALLDATASIZE", + "gas": 2948133, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x21848c46", + "0x81", + "0x4", + "0x4" + ] + }, + { + "pc": 111, + "op": "SUB", + "gas": 2948131, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x81", + "0x4", + "0x4", + "0x24" + ] + }, + { + "pc": 112, + "op": "DUP2", + "gas": 2948128, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x81", + "0x4", + "0x20" + ] + }, + { + "pc": 113, + "op": "ADD", + "gas": 2948125, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x81", + "0x4", + "0x20", + "0x4" + ] + }, + { + "pc": 114, + "op": "SWAP1", + "gas": 2948122, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x81", + "0x4", + "0x24" + ] + }, + { + "pc": 115, + "op": "PUSH2", + "gas": 2948119, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x81", + "0x24", + "0x4" + ] + }, + { + "pc": 118, + "op": "SWAP2", + "gas": 2948116, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x81", + "0x24", + "0x4", + "0x7c" + ] + }, + { + "pc": 119, + "op": "SWAP1", + "gas": 2948113, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x4", + "0x24" + ] + }, + { + "pc": 120, + "op": "PUSH2", + "gas": 2948110, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4" + ] + }, + { + "pc": 123, + "op": "JUMP", + "gas": 2948107, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x1d7" + ] + }, + { + "pc": 471, + "op": "JUMPDEST", + "gas": 2948099, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4" + ] + }, + { + "pc": 472, + "op": "PUSH1", + "gas": 2948098, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4" + ] + }, + { + "pc": 474, + "op": "PUSH1", + "gas": 2948095, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 476, + "op": "DUP3", + "gas": 2948092, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x20" + ] + }, + { + "pc": 477, + "op": "DUP5", + "gas": 2948089, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x20", + "0x4" + ] + }, + { + "pc": 478, + "op": "SUB", + "gas": 2948086, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x20", + "0x4", + "0x24" + ] + }, + { + "pc": 479, + "op": "SLT", + "gas": 2948083, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x20", + "0x20" + ] + }, + { + "pc": 480, + "op": "ISZERO", + "gas": 2948080, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0" + ] + }, + { + "pc": 481, + "op": "PUSH2", + "gas": 2948077, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x1" + ] + }, + { + "pc": 484, + "op": "JUMPI", + "gas": 2948074, + "gasCost": 10, + "depth": 2, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x1", + "0x1e9" + ] + }, + { + "pc": 489, + "op": "JUMPDEST", + "gas": 2948064, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 490, + "op": "PUSH1", + "gas": 2948063, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 492, + "op": "PUSH2", + "gas": 2948060, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0" + ] + }, + { + "pc": 495, + "op": "DUP5", + "gas": 2948057, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7" + ] + }, + { + "pc": 496, + "op": "DUP3", + "gas": 2948054, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24" + ] + }, + { + "pc": 497, + "op": "DUP6", + "gas": 2948051, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x0" + ] + }, + { + "pc": 498, + "op": "ADD", + "gas": 2948048, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x0", + "0x4" + ] + }, + { + "pc": 499, + "op": "PUSH2", + "gas": 2948045, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4" + ] + }, + { + "pc": 502, + "op": "JUMP", + "gas": 2948042, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x1c2" + ] + }, + { + "pc": 450, + "op": "JUMPDEST", + "gas": 2948034, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4" + ] + }, + { + "pc": 451, + "op": "PUSH1", + "gas": 2948033, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4" + ] + }, + { + "pc": 453, + "op": "DUP2", + "gas": 2948030, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 454, + "op": "CALLDATALOAD", + "gas": 2948027, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x0", + "0x4" + ] + }, + { + "pc": 455, + "op": "SWAP1", + "gas": 2948024, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x0", + "0x182cb06a45a" + ] + }, + { + "pc": 456, + "op": "POP", + "gas": 2948021, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cb06a45a", + "0x0" + ] + }, + { + "pc": 457, + "op": "PUSH2", + "gas": 2948019, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cb06a45a" + ] + }, + { + "pc": 460, + "op": "DUP2", + "gas": 2948016, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cb06a45a", + "0x1d1" + ] + }, + { + "pc": 461, + "op": "PUSH2", + "gas": 2948013, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cb06a45a", + "0x1d1", + "0x182cb06a45a" + ] + }, + { + "pc": 464, + "op": "JUMP", + "gas": 2948010, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cb06a45a", + "0x1d1", + "0x182cb06a45a", + "0x2b1" + ] + }, + { + "pc": 689, + "op": "JUMPDEST", + "gas": 2948002, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cb06a45a", + "0x1d1", + "0x182cb06a45a" + ] + }, + { + "pc": 690, + "op": "PUSH2", + "gas": 2948001, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cb06a45a", + "0x1d1", + "0x182cb06a45a" + ] + }, + { + "pc": 693, + "op": "DUP2", + "gas": 2947998, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cb06a45a", + "0x1d1", + "0x182cb06a45a", + "0x2ba" + ] + }, + { + "pc": 694, + "op": "PUSH2", + "gas": 2947995, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cb06a45a", + "0x1d1", + "0x182cb06a45a", + "0x2ba", + "0x182cb06a45a" + ] + }, + { + "pc": 697, + "op": "JUMP", + "gas": 2947992, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cb06a45a", + "0x1d1", + "0x182cb06a45a", + "0x2ba", + "0x182cb06a45a", + "0x27e" + ] + }, + { + "pc": 638, + "op": "JUMPDEST", + "gas": 2947984, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cb06a45a", + "0x1d1", + "0x182cb06a45a", + "0x2ba", + "0x182cb06a45a" + ] + }, + { + "pc": 639, + "op": "PUSH1", + "gas": 2947983, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cb06a45a", + "0x1d1", + "0x182cb06a45a", + "0x2ba", + "0x182cb06a45a" + ] + }, + { + "pc": 641, + "op": "DUP2", + "gas": 2947980, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cb06a45a", + "0x1d1", + "0x182cb06a45a", + "0x2ba", + "0x182cb06a45a", + "0x0" + ] + }, + { + "pc": 642, + "op": "SWAP1", + "gas": 2947977, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cb06a45a", + "0x1d1", + "0x182cb06a45a", + "0x2ba", + "0x182cb06a45a", + "0x0", + "0x182cb06a45a" + ] + }, + { + "pc": 643, + "op": "POP", + "gas": 2947974, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cb06a45a", + "0x1d1", + "0x182cb06a45a", + "0x2ba", + "0x182cb06a45a", + "0x182cb06a45a", + "0x0" + ] + }, + { + "pc": 644, + "op": "SWAP2", + "gas": 2947972, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cb06a45a", + "0x1d1", + "0x182cb06a45a", + "0x2ba", + "0x182cb06a45a", + "0x182cb06a45a" + ] + }, + { + "pc": 645, + "op": "SWAP1", + "gas": 2947969, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cb06a45a", + "0x1d1", + "0x182cb06a45a", + "0x182cb06a45a", + "0x182cb06a45a", + "0x2ba" + ] + }, + { + "pc": 646, + "op": "POP", + "gas": 2947966, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cb06a45a", + "0x1d1", + "0x182cb06a45a", + "0x182cb06a45a", + "0x2ba", + "0x182cb06a45a" + ] + }, + { + "pc": 647, + "op": "JUMP", + "gas": 2947964, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cb06a45a", + "0x1d1", + "0x182cb06a45a", + "0x182cb06a45a", + "0x2ba" + ] + }, + { + "pc": 698, + "op": "JUMPDEST", + "gas": 2947956, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cb06a45a", + "0x1d1", + "0x182cb06a45a", + "0x182cb06a45a" + ] + }, + { + "pc": 699, + "op": "DUP2", + "gas": 2947955, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cb06a45a", + "0x1d1", + "0x182cb06a45a", + "0x182cb06a45a" + ] + }, + { + "pc": 700, + "op": "EQ", + "gas": 2947952, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cb06a45a", + "0x1d1", + "0x182cb06a45a", + "0x182cb06a45a", + "0x182cb06a45a" + ] + }, + { + "pc": 701, + "op": "PUSH2", + "gas": 2947949, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cb06a45a", + "0x1d1", + "0x182cb06a45a", + "0x1" + ] + }, + { + "pc": 704, + "op": "JUMPI", + "gas": 2947946, + "gasCost": 10, + "depth": 2, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cb06a45a", + "0x1d1", + "0x182cb06a45a", + "0x1", + "0x2c5" + ] + }, + { + "pc": 709, + "op": "JUMPDEST", + "gas": 2947936, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cb06a45a", + "0x1d1", + "0x182cb06a45a" + ] + }, + { + "pc": 710, + "op": "POP", + "gas": 2947935, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cb06a45a", + "0x1d1", + "0x182cb06a45a" + ] + }, + { + "pc": 711, + "op": "JUMP", + "gas": 2947933, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cb06a45a", + "0x1d1" + ] + }, + { + "pc": 465, + "op": "JUMPDEST", + "gas": 2947925, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cb06a45a" + ] + }, + { + "pc": 466, + "op": "SWAP3", + "gas": 2947924, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cb06a45a" + ] + }, + { + "pc": 467, + "op": "SWAP2", + "gas": 2947921, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x182cb06a45a", + "0x24", + "0x4", + "0x1f7" + ] + }, + { + "pc": 468, + "op": "POP", + "gas": 2947918, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x182cb06a45a", + "0x1f7", + "0x4", + "0x24" + ] + }, + { + "pc": 469, + "op": "POP", + "gas": 2947916, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x182cb06a45a", + "0x1f7", + "0x4" + ] + }, + { + "pc": 470, + "op": "JUMP", + "gas": 2947914, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x182cb06a45a", + "0x1f7" + ] + }, + { + "pc": 503, + "op": "JUMPDEST", + "gas": 2947906, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x182cb06a45a" + ] + }, + { + "pc": 504, + "op": "SWAP2", + "gas": 2947905, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x182cb06a45a" + ] + }, + { + "pc": 505, + "op": "POP", + "gas": 2947902, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x182cb06a45a", + "0x0", + "0x0" + ] + }, + { + "pc": 506, + "op": "POP", + "gas": 2947900, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x182cb06a45a", + "0x0" + ] + }, + { + "pc": 507, + "op": "SWAP3", + "gas": 2947898, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x182cb06a45a" + ] + }, + { + "pc": 508, + "op": "SWAP2", + "gas": 2947895, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x81", + "0x182cb06a45a", + "0x24", + "0x4", + "0x7c" + ] + }, + { + "pc": 509, + "op": "POP", + "gas": 2947892, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x21848c46", + "0x81", + "0x182cb06a45a", + "0x7c", + "0x4", + "0x24" + ] + }, + { + "pc": 510, + "op": "POP", + "gas": 2947890, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x21848c46", + "0x81", + "0x182cb06a45a", + "0x7c", + "0x4" + ] + }, + { + "pc": 511, + "op": "JUMP", + "gas": 2947888, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x21848c46", + "0x81", + "0x182cb06a45a", + "0x7c" + ] + }, + { + "pc": 124, + "op": "JUMPDEST", + "gas": 2947880, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x21848c46", + "0x81", + "0x182cb06a45a" + ] + }, + { + "pc": 125, + "op": "PUSH2", + "gas": 2947879, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x81", + "0x182cb06a45a" + ] + }, + { + "pc": 128, + "op": "JUMP", + "gas": 2947876, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x21848c46", + "0x81", + "0x182cb06a45a", + "0x13a" + ] + }, + { + "pc": 314, + "op": "JUMPDEST", + "gas": 2947868, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x21848c46", + "0x81", + "0x182cb06a45a" + ] + }, + { + "pc": 315, + "op": "DUP1", + "gas": 2947867, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x81", + "0x182cb06a45a" + ] + }, + { + "pc": 316, + "op": "PUSH1", + "gas": 2947864, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x81", + "0x182cb06a45a", + "0x182cb06a45a" + ] + }, + { + "pc": 318, + "op": "DUP2", + "gas": 2947861, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x81", + "0x182cb06a45a", + "0x182cb06a45a", + "0x0" + ] + }, + { + "pc": 319, + "op": "SWAP1", + "gas": 2947858, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x81", + "0x182cb06a45a", + "0x182cb06a45a", + "0x0", + "0x182cb06a45a" + ] + }, + { + "pc": 320, + "op": "SSTORE", + "gas": 2947855, + "gasCost": 5000, + "depth": 2, + "stack": [ + "0x21848c46", + "0x81", + "0x182cb06a45a", + "0x182cb06a45a", + "0x182cb06a45a", + "0x0" + ], + "storage": { + "0x0000000000000000000000000000000000000000000000000000000000000000": "0x00000000000000000000000000000000000000000000000000000182cb06a45a" + }, + "extraData": { + "proofList": [ + { + "address": "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "nonce": 1, + "balance": "0x0", + "codeHash": "0x4ee2afb169bef88abed9792edc0230c2cda9c19a48639d2db199479f1176928e", + "storage": { + "key": "0x0000000000000000000000000000000000000000000000000000000000000000", + "value": "0x00000000000000000000000000000000000000000000000000000182cae4f502" + } + } + ] + } + }, + { + "pc": 321, + "op": "POP", + "gas": 2942855, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x21848c46", + "0x81", + "0x182cb06a45a", + "0x182cb06a45a" + ] + }, + { + "pc": 322, + "op": "PUSH1", + "gas": 2942853, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x81", + "0x182cb06a45a" + ] + }, + { + "pc": 324, + "op": "PUSH2", + "gas": 2942850, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x81", + "0x182cb06a45a", + "0x0" + ] + }, + { + "pc": 327, + "op": "JUMPI", + "gas": 2942847, + "gasCost": 10, + "depth": 2, + "stack": [ + "0x21848c46", + "0x81", + "0x182cb06a45a", + "0x0", + "0x14c" + ] + }, + { + "pc": 328, + "op": "PUSH1", + "gas": 2942837, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x81", + "0x182cb06a45a" + ] + }, + { + "pc": 330, + "op": "DUP1", + "gas": 2942834, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x81", + "0x182cb06a45a", + "0x0" + ] + }, + { + "pc": 331, + "op": "REVERT", + "gas": 2942831, + "gasCost": 0, + "depth": 2, + "stack": [ + "0x21848c46", + "0x81", + "0x182cb06a45a", + "0x0", + "0x0" + ] + }, + { + "pc": 320, + "op": "SWAP3", + "gas": 2989628, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0xa4", + "0x0" + ] + }, + { + "pc": 321, + "op": "POP", + "gas": 2989625, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x0", + "0x21848c46", + "0xa4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4" + ] + }, + { + "pc": 322, + "op": "POP", + "gas": 2989623, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x0", + "0x21848c46", + "0xa4" + ] + }, + { + "pc": 323, + "op": "POP", + "gas": 2989621, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x0", + "0x21848c46" + ] + }, + { + "pc": 324, + "op": "DUP1", + "gas": 2989619, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x0" + ] + }, + { + "pc": 325, + "op": "ISZERO", + "gas": 2989616, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x0", + "0x0" + ] + }, + { + "pc": 326, + "op": "PUSH2", + "gas": 2989613, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x0", + "0x1" + ] + }, + { + "pc": 329, + "op": "JUMPI", + "gas": 2989610, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x0", + "0x1", + "0x14d" + ] + }, + { + "pc": 333, + "op": "JUMPDEST", + "gas": 2989600, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x0" + ] + }, + { + "pc": 334, + "op": "PUSH2", + "gas": 2989599, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x0" + ] + }, + { + "pc": 337, + "op": "JUMPI", + "gas": 2989596, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x0", + "0x156" + ] + }, + { + "pc": 338, + "op": "PUSH2", + "gas": 2989586, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4" + ] + }, + { + "pc": 341, + "op": "JUMP", + "gas": 2989583, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x157" + ] + }, + { + "pc": 343, + "op": "JUMPDEST", + "gas": 2989575, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4" + ] + }, + { + "pc": 344, + "op": "POP", + "gas": 2989574, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4" + ] + }, + { + "pc": 345, + "op": "POP", + "gas": 2989572, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a" + ] + }, + { + "pc": 346, + "op": "JUMP", + "gas": 2989570, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x21848c46", + "0x6b" + ] + }, + { + "pc": 107, + "op": "JUMPDEST", + "gas": 2989562, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x21848c46" + ] + }, + { + "pc": 108, + "op": "STOP", + "gas": 2989561, + "gasCost": 0, + "depth": 1, + "stack": [ + "0x21848c46" + ] + } + ] + }, + { + "gas": 60262, + "failed": true, + "returnValue": "08c379a00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000c64656c696265726174656c790000000000000000000000000000000000000000", + "from": { + "address": "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "nonce": 235, + "balance": "0x56bc75e2d630ffffffffffffffffffffffffffffffffffff334673bcaf3196", + "codeHash": "0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470" + }, + "to": { + "address": "0x9cb1b5b04b4dcd5c3ab9bafd2c0ad4fd8a9b3d29", + "nonce": 1, + "balance": "0x0", + "codeHash": "0xb058876f2963a74146d29465bbd582cbc6f2c03a2ec5adc6e6d74513470072a4" + }, + "accountAfter": [ + { + "address": "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "nonce": 236, + "balance": "0x56bc75e2d630ffffffffffffffffffffffffffffffffffff334673bbaf90d2", + "codeHash": "0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470" + }, + { + "address": "0x9cb1b5b04b4dcd5c3ab9bafd2c0ad4fd8a9b3d29", + "nonce": 1, + "balance": "0x0", + "codeHash": "0xb058876f2963a74146d29465bbd582cbc6f2c03a2ec5adc6e6d74513470072a4" + } + ], + "codeHash": "0xb058876f2963a74146d29465bbd582cbc6f2c03a2ec5adc6e6d74513470072a4", + "byteCode": "0x608060405234801561001057600080fd5b506004361061007d5760003560e01c80633e23ee431161005b5780633e23ee43146100d8578063651b4aa5146100f6578063a0a4868814610112578063cb4ec52e1461012e5761007d565b8063127017e114610082578063200d2ed21461009e57806336864b1b146100bc575b600080fd5b61009c6004803603810190610097919061050c565b61014a565b005b6100a66101e6565b6040516100b391906105b1565b60405180910390f35b6100d660048036038101906100d1919061050c565b6101f0565b005b6100e06102c3565b6040516100ed9190610576565b60405180910390f35b610110600480360381019061010b919061050c565b6102ec565b005b61012c6004803603810190610127919061050c565b610388565b005b6101486004803603810190610143919061050c565b61045b565b005b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663ed231420836040518263ffffffff1660e01b81526004016101a991906105b1565b600060405180830381600087803b1580156101c357600080fd5b505af11580156101d7573d6000803e3d6000fd5b50505050816001819055505050565b6000600154905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663b0f2b72a836040518263ffffffff1660e01b815260040161024f91906105b1565b600060405180830381600087803b15801561026957600080fd5b505af115801561027d573d6000803e3d6000fd5b50505050816001819055506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016102ba90610591565b60405180910390fd5b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff166321848c46836040518263ffffffff1660e01b815260040161034b91906105b1565b600060405180830381600087803b15801561036557600080fd5b505af1158015610379573d6000803e3d6000fd5b50505050816001819055505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff166321848c46836040518263ffffffff1660e01b81526004016103e791906105b1565b600060405180830381600087803b15801561040157600080fd5b505af1158015610415573d6000803e3d6000fd5b50505050816001819055506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161045290610591565b60405180910390fd5b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663b0f2b72a836040518263ffffffff1660e01b81526004016104ba91906105b1565b600060405180830381600087803b1580156104d457600080fd5b505af11580156104e8573d6000803e3d6000fd5b50505050816001819055505050565b60008135905061050681610642565b92915050565b60006020828403121561051e57600080fd5b600061052c848285016104f7565b91505092915050565b61053e816105dd565b82525050565b6000610551600c836105cc565b915061055c82610619565b602082019050919050565b6105708161060f565b82525050565b600060208201905061058b6000830184610535565b92915050565b600060208201905081810360008301526105aa81610544565b9050919050565b60006020820190506105c66000830184610567565b92915050565b600082825260208201905092915050565b60006105e8826105ef565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b7f64656c696265726174656c790000000000000000000000000000000000000000600082015250565b61064b8161060f565b811461065657600080fd5b5056fea2646970667358221220fc037ef9cac015a49b5d1fa3ef3193503e4aef8398dd3d8a477cd8726cb8d54a64736f6c63430008040033", + "structLogs": [ + { + "pc": 0, + "op": "PUSH1", + "gas": 3000520, + "gasCost": 3, + "depth": 1 + }, + { + "pc": 2, + "op": "PUSH1", + "gas": 3000517, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80" + ] + }, + { + "pc": 4, + "op": "MSTORE", + "gas": 3000514, + "gasCost": 12, + "depth": 1, + "stack": [ + "0x80", + "0x40" + ] + }, + { + "pc": 5, + "op": "CALLVALUE", + "gas": 3000502, + "gasCost": 2, + "depth": 1 + }, + { + "pc": 6, + "op": "DUP1", + "gas": 3000500, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 7, + "op": "ISZERO", + "gas": 3000497, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0", + "0x0" + ] + }, + { + "pc": 8, + "op": "PUSH2", + "gas": 3000494, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0", + "0x1" + ] + }, + { + "pc": 11, + "op": "JUMPI", + "gas": 3000491, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x0", + "0x1", + "0x10" + ] + }, + { + "pc": 16, + "op": "JUMPDEST", + "gas": 3000481, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 17, + "op": "POP", + "gas": 3000480, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 18, + "op": "PUSH1", + "gas": 3000478, + "gasCost": 3, + "depth": 1 + }, + { + "pc": 20, + "op": "CALLDATASIZE", + "gas": 3000475, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x4" + ] + }, + { + "pc": 21, + "op": "LT", + "gas": 3000473, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4", + "0x24" + ] + }, + { + "pc": 22, + "op": "PUSH2", + "gas": 3000470, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 25, + "op": "JUMPI", + "gas": 3000467, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x0", + "0x7d" + ] + }, + { + "pc": 26, + "op": "PUSH1", + "gas": 3000457, + "gasCost": 3, + "depth": 1 + }, + { + "pc": 28, + "op": "CALLDATALOAD", + "gas": 3000454, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 29, + "op": "PUSH1", + "gas": 3000451, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b00000000000000000000000000000000000000000000000000000182" + ] + }, + { + "pc": 31, + "op": "SHR", + "gas": 3000448, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b00000000000000000000000000000000000000000000000000000182", + "0xe0" + ] + }, + { + "pc": 32, + "op": "DUP1", + "gas": 3000445, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b" + ] + }, + { + "pc": 33, + "op": "PUSH4", + "gas": 3000442, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0x36864b1b" + ] + }, + { + "pc": 38, + "op": "GT", + "gas": 3000439, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0x36864b1b", + "0x3e23ee43" + ] + }, + { + "pc": 39, + "op": "PUSH2", + "gas": 3000436, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0x1" + ] + }, + { + "pc": 42, + "op": "JUMPI", + "gas": 3000433, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x36864b1b", + "0x1", + "0x5b" + ] + }, + { + "pc": 91, + "op": "JUMPDEST", + "gas": 3000423, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x36864b1b" + ] + }, + { + "pc": 92, + "op": "DUP1", + "gas": 3000422, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b" + ] + }, + { + "pc": 93, + "op": "PUSH4", + "gas": 3000419, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0x36864b1b" + ] + }, + { + "pc": 98, + "op": "EQ", + "gas": 3000416, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0x36864b1b", + "0x127017e1" + ] + }, + { + "pc": 99, + "op": "PUSH2", + "gas": 3000413, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0x0" + ] + }, + { + "pc": 102, + "op": "JUMPI", + "gas": 3000410, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x36864b1b", + "0x0", + "0x82" + ] + }, + { + "pc": 103, + "op": "DUP1", + "gas": 3000400, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b" + ] + }, + { + "pc": 104, + "op": "PUSH4", + "gas": 3000397, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0x36864b1b" + ] + }, + { + "pc": 109, + "op": "EQ", + "gas": 3000394, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0x36864b1b", + "0x200d2ed2" + ] + }, + { + "pc": 110, + "op": "PUSH2", + "gas": 3000391, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0x0" + ] + }, + { + "pc": 113, + "op": "JUMPI", + "gas": 3000388, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x36864b1b", + "0x0", + "0x9e" + ] + }, + { + "pc": 114, + "op": "DUP1", + "gas": 3000378, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b" + ] + }, + { + "pc": 115, + "op": "PUSH4", + "gas": 3000375, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0x36864b1b" + ] + }, + { + "pc": 120, + "op": "EQ", + "gas": 3000372, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0x36864b1b", + "0x36864b1b" + ] + }, + { + "pc": 121, + "op": "PUSH2", + "gas": 3000369, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0x1" + ] + }, + { + "pc": 124, + "op": "JUMPI", + "gas": 3000366, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x36864b1b", + "0x1", + "0xbc" + ] + }, + { + "pc": 188, + "op": "JUMPDEST", + "gas": 3000356, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x36864b1b" + ] + }, + { + "pc": 189, + "op": "PUSH2", + "gas": 3000355, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b" + ] + }, + { + "pc": 192, + "op": "PUSH1", + "gas": 3000352, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6" + ] + }, + { + "pc": 194, + "op": "DUP1", + "gas": 3000349, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x4" + ] + }, + { + "pc": 195, + "op": "CALLDATASIZE", + "gas": 3000346, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x4", + "0x4" + ] + }, + { + "pc": 196, + "op": "SUB", + "gas": 3000344, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x4", + "0x4", + "0x24" + ] + }, + { + "pc": 197, + "op": "DUP2", + "gas": 3000341, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x4", + "0x20" + ] + }, + { + "pc": 198, + "op": "ADD", + "gas": 3000338, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x4", + "0x20", + "0x4" + ] + }, + { + "pc": 199, + "op": "SWAP1", + "gas": 3000335, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x4", + "0x24" + ] + }, + { + "pc": 200, + "op": "PUSH2", + "gas": 3000332, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x24", + "0x4" + ] + }, + { + "pc": 203, + "op": "SWAP2", + "gas": 3000329, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x24", + "0x4", + "0xd1" + ] + }, + { + "pc": 204, + "op": "SWAP1", + "gas": 3000326, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0xd1", + "0x4", + "0x24" + ] + }, + { + "pc": 205, + "op": "PUSH2", + "gas": 3000323, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0xd1", + "0x24", + "0x4" + ] + }, + { + "pc": 208, + "op": "JUMP", + "gas": 3000320, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0xd1", + "0x24", + "0x4", + "0x50c" + ] + }, + { + "pc": 1292, + "op": "JUMPDEST", + "gas": 3000312, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0xd1", + "0x24", + "0x4" + ] + }, + { + "pc": 1293, + "op": "PUSH1", + "gas": 3000311, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0xd1", + "0x24", + "0x4" + ] + }, + { + "pc": 1295, + "op": "PUSH1", + "gas": 3000308, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0xd1", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 1297, + "op": "DUP3", + "gas": 3000305, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0xd1", + "0x24", + "0x4", + "0x0", + "0x20" + ] + }, + { + "pc": 1298, + "op": "DUP5", + "gas": 3000302, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0xd1", + "0x24", + "0x4", + "0x0", + "0x20", + "0x4" + ] + }, + { + "pc": 1299, + "op": "SUB", + "gas": 3000299, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0xd1", + "0x24", + "0x4", + "0x0", + "0x20", + "0x4", + "0x24" + ] + }, + { + "pc": 1300, + "op": "SLT", + "gas": 3000296, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0xd1", + "0x24", + "0x4", + "0x0", + "0x20", + "0x20" + ] + }, + { + "pc": 1301, + "op": "ISZERO", + "gas": 3000293, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0xd1", + "0x24", + "0x4", + "0x0", + "0x0" + ] + }, + { + "pc": 1302, + "op": "PUSH2", + "gas": 3000290, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0xd1", + "0x24", + "0x4", + "0x0", + "0x1" + ] + }, + { + "pc": 1305, + "op": "JUMPI", + "gas": 3000287, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0xd1", + "0x24", + "0x4", + "0x0", + "0x1", + "0x51e" + ] + }, + { + "pc": 1310, + "op": "JUMPDEST", + "gas": 3000277, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0xd1", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 1311, + "op": "PUSH1", + "gas": 3000276, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0xd1", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 1313, + "op": "PUSH2", + "gas": 3000273, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0xd1", + "0x24", + "0x4", + "0x0", + "0x0" + ] + }, + { + "pc": 1316, + "op": "DUP5", + "gas": 3000270, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0xd1", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c" + ] + }, + { + "pc": 1317, + "op": "DUP3", + "gas": 3000267, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0xd1", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24" + ] + }, + { + "pc": 1318, + "op": "DUP6", + "gas": 3000264, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0xd1", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x0" + ] + }, + { + "pc": 1319, + "op": "ADD", + "gas": 3000261, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0xd1", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x0", + "0x4" + ] + }, + { + "pc": 1320, + "op": "PUSH2", + "gas": 3000258, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0xd1", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4" + ] + }, + { + "pc": 1323, + "op": "JUMP", + "gas": 3000255, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0xd1", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x4f7" + ] + }, + { + "pc": 1271, + "op": "JUMPDEST", + "gas": 3000247, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0xd1", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4" + ] + }, + { + "pc": 1272, + "op": "PUSH1", + "gas": 3000246, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0xd1", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4" + ] + }, + { + "pc": 1274, + "op": "DUP2", + "gas": 3000243, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0xd1", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 1275, + "op": "CALLDATALOAD", + "gas": 3000240, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0xd1", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x0", + "0x4" + ] + }, + { + "pc": 1276, + "op": "SWAP1", + "gas": 3000237, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0xd1", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x0", + "0x182cb06a45a" + ] + }, + { + "pc": 1277, + "op": "POP", + "gas": 3000234, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0xd1", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x182cb06a45a", + "0x0" + ] + }, + { + "pc": 1278, + "op": "PUSH2", + "gas": 3000232, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0xd1", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x182cb06a45a" + ] + }, + { + "pc": 1281, + "op": "DUP2", + "gas": 3000229, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0xd1", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x182cb06a45a", + "0x506" + ] + }, + { + "pc": 1282, + "op": "PUSH2", + "gas": 3000226, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0xd1", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x182cb06a45a", + "0x506", + "0x182cb06a45a" + ] + }, + { + "pc": 1285, + "op": "JUMP", + "gas": 3000223, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0xd1", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x182cb06a45a", + "0x506", + "0x182cb06a45a", + "0x642" + ] + }, + { + "pc": 1602, + "op": "JUMPDEST", + "gas": 3000215, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0xd1", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x182cb06a45a", + "0x506", + "0x182cb06a45a" + ] + }, + { + "pc": 1603, + "op": "PUSH2", + "gas": 3000214, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0xd1", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x182cb06a45a", + "0x506", + "0x182cb06a45a" + ] + }, + { + "pc": 1606, + "op": "DUP2", + "gas": 3000211, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0xd1", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x182cb06a45a", + "0x506", + "0x182cb06a45a", + "0x64b" + ] + }, + { + "pc": 1607, + "op": "PUSH2", + "gas": 3000208, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0xd1", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x182cb06a45a", + "0x506", + "0x182cb06a45a", + "0x64b", + "0x182cb06a45a" + ] + }, + { + "pc": 1610, + "op": "JUMP", + "gas": 3000205, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0xd1", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x182cb06a45a", + "0x506", + "0x182cb06a45a", + "0x64b", + "0x182cb06a45a", + "0x60f" + ] + }, + { + "pc": 1551, + "op": "JUMPDEST", + "gas": 3000197, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0xd1", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x182cb06a45a", + "0x506", + "0x182cb06a45a", + "0x64b", + "0x182cb06a45a" + ] + }, + { + "pc": 1552, + "op": "PUSH1", + "gas": 3000196, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0xd1", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x182cb06a45a", + "0x506", + "0x182cb06a45a", + "0x64b", + "0x182cb06a45a" + ] + }, + { + "pc": 1554, + "op": "DUP2", + "gas": 3000193, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0xd1", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x182cb06a45a", + "0x506", + "0x182cb06a45a", + "0x64b", + "0x182cb06a45a", + "0x0" + ] + }, + { + "pc": 1555, + "op": "SWAP1", + "gas": 3000190, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0xd1", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x182cb06a45a", + "0x506", + "0x182cb06a45a", + "0x64b", + "0x182cb06a45a", + "0x0", + "0x182cb06a45a" + ] + }, + { + "pc": 1556, + "op": "POP", + "gas": 3000187, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0xd1", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x182cb06a45a", + "0x506", + "0x182cb06a45a", + "0x64b", + "0x182cb06a45a", + "0x182cb06a45a", + "0x0" + ] + }, + { + "pc": 1557, + "op": "SWAP2", + "gas": 3000185, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0xd1", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x182cb06a45a", + "0x506", + "0x182cb06a45a", + "0x64b", + "0x182cb06a45a", + "0x182cb06a45a" + ] + }, + { + "pc": 1558, + "op": "SWAP1", + "gas": 3000182, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0xd1", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x182cb06a45a", + "0x506", + "0x182cb06a45a", + "0x182cb06a45a", + "0x182cb06a45a", + "0x64b" + ] + }, + { + "pc": 1559, + "op": "POP", + "gas": 3000179, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0xd1", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x182cb06a45a", + "0x506", + "0x182cb06a45a", + "0x182cb06a45a", + "0x64b", + "0x182cb06a45a" + ] + }, + { + "pc": 1560, + "op": "JUMP", + "gas": 3000177, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0xd1", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x182cb06a45a", + "0x506", + "0x182cb06a45a", + "0x182cb06a45a", + "0x64b" + ] + }, + { + "pc": 1611, + "op": "JUMPDEST", + "gas": 3000169, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0xd1", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x182cb06a45a", + "0x506", + "0x182cb06a45a", + "0x182cb06a45a" + ] + }, + { + "pc": 1612, + "op": "DUP2", + "gas": 3000168, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0xd1", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x182cb06a45a", + "0x506", + "0x182cb06a45a", + "0x182cb06a45a" + ] + }, + { + "pc": 1613, + "op": "EQ", + "gas": 3000165, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0xd1", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x182cb06a45a", + "0x506", + "0x182cb06a45a", + "0x182cb06a45a", + "0x182cb06a45a" + ] + }, + { + "pc": 1614, + "op": "PUSH2", + "gas": 3000162, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0xd1", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x182cb06a45a", + "0x506", + "0x182cb06a45a", + "0x1" + ] + }, + { + "pc": 1617, + "op": "JUMPI", + "gas": 3000159, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0xd1", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x182cb06a45a", + "0x506", + "0x182cb06a45a", + "0x1", + "0x656" + ] + }, + { + "pc": 1622, + "op": "JUMPDEST", + "gas": 3000149, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0xd1", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x182cb06a45a", + "0x506", + "0x182cb06a45a" + ] + }, + { + "pc": 1623, + "op": "POP", + "gas": 3000148, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0xd1", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x182cb06a45a", + "0x506", + "0x182cb06a45a" + ] + }, + { + "pc": 1624, + "op": "JUMP", + "gas": 3000146, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0xd1", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x182cb06a45a", + "0x506" + ] + }, + { + "pc": 1286, + "op": "JUMPDEST", + "gas": 3000138, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0xd1", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x182cb06a45a" + ] + }, + { + "pc": 1287, + "op": "SWAP3", + "gas": 3000137, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0xd1", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x182cb06a45a" + ] + }, + { + "pc": 1288, + "op": "SWAP2", + "gas": 3000134, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0xd1", + "0x24", + "0x4", + "0x0", + "0x0", + "0x182cb06a45a", + "0x24", + "0x4", + "0x52c" + ] + }, + { + "pc": 1289, + "op": "POP", + "gas": 3000131, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0xd1", + "0x24", + "0x4", + "0x0", + "0x0", + "0x182cb06a45a", + "0x52c", + "0x4", + "0x24" + ] + }, + { + "pc": 1290, + "op": "POP", + "gas": 3000129, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0xd1", + "0x24", + "0x4", + "0x0", + "0x0", + "0x182cb06a45a", + "0x52c", + "0x4" + ] + }, + { + "pc": 1291, + "op": "JUMP", + "gas": 3000127, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0xd1", + "0x24", + "0x4", + "0x0", + "0x0", + "0x182cb06a45a", + "0x52c" + ] + }, + { + "pc": 1324, + "op": "JUMPDEST", + "gas": 3000119, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0xd1", + "0x24", + "0x4", + "0x0", + "0x0", + "0x182cb06a45a" + ] + }, + { + "pc": 1325, + "op": "SWAP2", + "gas": 3000118, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0xd1", + "0x24", + "0x4", + "0x0", + "0x0", + "0x182cb06a45a" + ] + }, + { + "pc": 1326, + "op": "POP", + "gas": 3000115, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0xd1", + "0x24", + "0x4", + "0x182cb06a45a", + "0x0", + "0x0" + ] + }, + { + "pc": 1327, + "op": "POP", + "gas": 3000113, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0xd1", + "0x24", + "0x4", + "0x182cb06a45a", + "0x0" + ] + }, + { + "pc": 1328, + "op": "SWAP3", + "gas": 3000111, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0xd1", + "0x24", + "0x4", + "0x182cb06a45a" + ] + }, + { + "pc": 1329, + "op": "SWAP2", + "gas": 3000108, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0x24", + "0x4", + "0xd1" + ] + }, + { + "pc": 1330, + "op": "POP", + "gas": 3000105, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xd1", + "0x4", + "0x24" + ] + }, + { + "pc": 1331, + "op": "POP", + "gas": 3000103, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xd1", + "0x4" + ] + }, + { + "pc": 1332, + "op": "JUMP", + "gas": 3000101, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xd1" + ] + }, + { + "pc": 209, + "op": "JUMPDEST", + "gas": 3000093, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a" + ] + }, + { + "pc": 210, + "op": "PUSH2", + "gas": 3000092, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a" + ] + }, + { + "pc": 213, + "op": "JUMP", + "gas": 3000089, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0x1f0" + ] + }, + { + "pc": 496, + "op": "JUMPDEST", + "gas": 3000081, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a" + ] + }, + { + "pc": 497, + "op": "PUSH1", + "gas": 3000080, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a" + ] + }, + { + "pc": 499, + "op": "DUP1", + "gas": 3000077, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0x0" + ] + }, + { + "pc": 500, + "op": "PUSH1", + "gas": 3000074, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0x0", + "0x0" + ] + }, + { + "pc": 502, + "op": "SWAP1", + "gas": 3000071, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 503, + "op": "SLOAD", + "gas": 3000068, + "gasCost": 2100, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0x0", + "0x0", + "0x0" + ], + "storage": { + "0x0000000000000000000000000000000000000000000000000000000000000000": "0x000000000000000000000000ed491d2c35f615cf1591bb6322486f1efcc9f6b5" + }, + "extraData": { + "proofList": [ + { + "address": "0x9cb1b5b04b4dcd5c3ab9bafd2c0ad4fd8a9b3d29", + "nonce": 1, + "balance": "0x0", + "codeHash": "0xb058876f2963a74146d29465bbd582cbc6f2c03a2ec5adc6e6d74513470072a4", + "storage": { + "key": "0x0000000000000000000000000000000000000000000000000000000000000000", + "value": "0x000000000000000000000000ed491d2c35f615cf1591bb6322486f1efcc9f6b5" + } + } + ] + } + }, + { + "pc": 504, + "op": "SWAP1", + "gas": 2997968, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0x0", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5" + ] + }, + { + "pc": 505, + "op": "PUSH2", + "gas": 2997965, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x0" + ] + }, + { + "pc": 508, + "op": "EXP", + "gas": 2997962, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x0", + "0x100" + ] + }, + { + "pc": 509, + "op": "SWAP1", + "gas": 2997952, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x1" + ] + }, + { + "pc": 510, + "op": "DIV", + "gas": 2997949, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0x0", + "0x1", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5" + ] + }, + { + "pc": 511, + "op": "PUSH20", + "gas": 2997944, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5" + ] + }, + { + "pc": 532, + "op": "AND", + "gas": 2997941, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 533, + "op": "SWAP1", + "gas": 2997938, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5" + ] + }, + { + "pc": 534, + "op": "POP", + "gas": 2997935, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x0" + ] + }, + { + "pc": 535, + "op": "DUP1", + "gas": 2997933, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5" + ] + }, + { + "pc": 536, + "op": "PUSH20", + "gas": 2997930, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5" + ] + }, + { + "pc": 557, + "op": "AND", + "gas": 2997927, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 558, + "op": "PUSH4", + "gas": 2997924, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5" + ] + }, + { + "pc": 563, + "op": "DUP4", + "gas": 2997921, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a" + ] + }, + { + "pc": 564, + "op": "PUSH1", + "gas": 2997918, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0x182cb06a45a" + ] + }, + { + "pc": 566, + "op": "MLOAD", + "gas": 2997915, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0x182cb06a45a", + "0x40" + ] + }, + { + "pc": 567, + "op": "DUP3", + "gas": 2997912, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0x182cb06a45a", + "0x80" + ] + }, + { + "pc": 568, + "op": "PUSH4", + "gas": 2997909, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0x182cb06a45a", + "0x80", + "0xb0f2b72a" + ] + }, + { + "pc": 573, + "op": "AND", + "gas": 2997906, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0x182cb06a45a", + "0x80", + "0xb0f2b72a", + "0xffffffff" + ] + }, + { + "pc": 574, + "op": "PUSH1", + "gas": 2997903, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0x182cb06a45a", + "0x80", + "0xb0f2b72a" + ] + }, + { + "pc": 576, + "op": "SHL", + "gas": 2997900, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0x182cb06a45a", + "0x80", + "0xb0f2b72a", + "0xe0" + ] + }, + { + "pc": 577, + "op": "DUP2", + "gas": 2997897, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0x182cb06a45a", + "0x80", + "0xb0f2b72a00000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 578, + "op": "MSTORE", + "gas": 2997894, + "gasCost": 9, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0x182cb06a45a", + "0x80", + "0xb0f2b72a00000000000000000000000000000000000000000000000000000000", + "0x80" + ] + }, + { + "pc": 579, + "op": "PUSH1", + "gas": 2997885, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0x182cb06a45a", + "0x80" + ] + }, + { + "pc": 581, + "op": "ADD", + "gas": 2997882, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0x182cb06a45a", + "0x80", + "0x4" + ] + }, + { + "pc": 582, + "op": "PUSH2", + "gas": 2997879, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0x182cb06a45a", + "0x84" + ] + }, + { + "pc": 585, + "op": "SWAP2", + "gas": 2997876, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0x182cb06a45a", + "0x84", + "0x24f" + ] + }, + { + "pc": 586, + "op": "SWAP1", + "gas": 2997873, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0x24f", + "0x84", + "0x182cb06a45a" + ] + }, + { + "pc": 587, + "op": "PUSH2", + "gas": 2997870, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0x24f", + "0x182cb06a45a", + "0x84" + ] + }, + { + "pc": 590, + "op": "JUMP", + "gas": 2997867, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0x24f", + "0x182cb06a45a", + "0x84", + "0x5b1" + ] + }, + { + "pc": 1457, + "op": "JUMPDEST", + "gas": 2997859, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0x24f", + "0x182cb06a45a", + "0x84" + ] + }, + { + "pc": 1458, + "op": "PUSH1", + "gas": 2997858, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0x24f", + "0x182cb06a45a", + "0x84" + ] + }, + { + "pc": 1460, + "op": "PUSH1", + "gas": 2997855, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0x24f", + "0x182cb06a45a", + "0x84", + "0x0" + ] + }, + { + "pc": 1462, + "op": "DUP3", + "gas": 2997852, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0x24f", + "0x182cb06a45a", + "0x84", + "0x0", + "0x20" + ] + }, + { + "pc": 1463, + "op": "ADD", + "gas": 2997849, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0x24f", + "0x182cb06a45a", + "0x84", + "0x0", + "0x20", + "0x84" + ] + }, + { + "pc": 1464, + "op": "SWAP1", + "gas": 2997846, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0x24f", + "0x182cb06a45a", + "0x84", + "0x0", + "0xa4" + ] + }, + { + "pc": 1465, + "op": "POP", + "gas": 2997843, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0x24f", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x0" + ] + }, + { + "pc": 1466, + "op": "PUSH2", + "gas": 2997841, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0x24f", + "0x182cb06a45a", + "0x84", + "0xa4" + ] + }, + { + "pc": 1469, + "op": "PUSH1", + "gas": 2997838, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0x24f", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x5c6" + ] + }, + { + "pc": 1471, + "op": "DUP4", + "gas": 2997835, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0x24f", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x5c6", + "0x0" + ] + }, + { + "pc": 1472, + "op": "ADD", + "gas": 2997832, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0x24f", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x5c6", + "0x0", + "0x84" + ] + }, + { + "pc": 1473, + "op": "DUP5", + "gas": 2997829, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0x24f", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x5c6", + "0x84" + ] + }, + { + "pc": 1474, + "op": "PUSH2", + "gas": 2997826, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0x24f", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x5c6", + "0x84", + "0x182cb06a45a" + ] + }, + { + "pc": 1477, + "op": "JUMP", + "gas": 2997823, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0x24f", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x5c6", + "0x84", + "0x182cb06a45a", + "0x567" + ] + }, + { + "pc": 1383, + "op": "JUMPDEST", + "gas": 2997815, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0x24f", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x5c6", + "0x84", + "0x182cb06a45a" + ] + }, + { + "pc": 1384, + "op": "PUSH2", + "gas": 2997814, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0x24f", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x5c6", + "0x84", + "0x182cb06a45a" + ] + }, + { + "pc": 1387, + "op": "DUP2", + "gas": 2997811, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0x24f", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x5c6", + "0x84", + "0x182cb06a45a", + "0x570" + ] + }, + { + "pc": 1388, + "op": "PUSH2", + "gas": 2997808, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0x24f", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x5c6", + "0x84", + "0x182cb06a45a", + "0x570", + "0x182cb06a45a" + ] + }, + { + "pc": 1391, + "op": "JUMP", + "gas": 2997805, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0x24f", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x5c6", + "0x84", + "0x182cb06a45a", + "0x570", + "0x182cb06a45a", + "0x60f" + ] + }, + { + "pc": 1551, + "op": "JUMPDEST", + "gas": 2997797, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0x24f", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x5c6", + "0x84", + "0x182cb06a45a", + "0x570", + "0x182cb06a45a" + ] + }, + { + "pc": 1552, + "op": "PUSH1", + "gas": 2997796, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0x24f", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x5c6", + "0x84", + "0x182cb06a45a", + "0x570", + "0x182cb06a45a" + ] + }, + { + "pc": 1554, + "op": "DUP2", + "gas": 2997793, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0x24f", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x5c6", + "0x84", + "0x182cb06a45a", + "0x570", + "0x182cb06a45a", + "0x0" + ] + }, + { + "pc": 1555, + "op": "SWAP1", + "gas": 2997790, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0x24f", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x5c6", + "0x84", + "0x182cb06a45a", + "0x570", + "0x182cb06a45a", + "0x0", + "0x182cb06a45a" + ] + }, + { + "pc": 1556, + "op": "POP", + "gas": 2997787, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0x24f", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x5c6", + "0x84", + "0x182cb06a45a", + "0x570", + "0x182cb06a45a", + "0x182cb06a45a", + "0x0" + ] + }, + { + "pc": 1557, + "op": "SWAP2", + "gas": 2997785, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0x24f", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x5c6", + "0x84", + "0x182cb06a45a", + "0x570", + "0x182cb06a45a", + "0x182cb06a45a" + ] + }, + { + "pc": 1558, + "op": "SWAP1", + "gas": 2997782, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0x24f", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x5c6", + "0x84", + "0x182cb06a45a", + "0x182cb06a45a", + "0x182cb06a45a", + "0x570" + ] + }, + { + "pc": 1559, + "op": "POP", + "gas": 2997779, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0x24f", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x5c6", + "0x84", + "0x182cb06a45a", + "0x182cb06a45a", + "0x570", + "0x182cb06a45a" + ] + }, + { + "pc": 1560, + "op": "JUMP", + "gas": 2997777, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0x24f", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x5c6", + "0x84", + "0x182cb06a45a", + "0x182cb06a45a", + "0x570" + ] + }, + { + "pc": 1392, + "op": "JUMPDEST", + "gas": 2997769, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0x24f", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x5c6", + "0x84", + "0x182cb06a45a", + "0x182cb06a45a" + ] + }, + { + "pc": 1393, + "op": "DUP3", + "gas": 2997768, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0x24f", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x5c6", + "0x84", + "0x182cb06a45a", + "0x182cb06a45a" + ] + }, + { + "pc": 1394, + "op": "MSTORE", + "gas": 2997765, + "gasCost": 6, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0x24f", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x5c6", + "0x84", + "0x182cb06a45a", + "0x182cb06a45a", + "0x84" + ] + }, + { + "pc": 1395, + "op": "POP", + "gas": 2997759, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0x24f", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x5c6", + "0x84", + "0x182cb06a45a" + ] + }, + { + "pc": 1396, + "op": "POP", + "gas": 2997757, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0x24f", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x5c6", + "0x84" + ] + }, + { + "pc": 1397, + "op": "JUMP", + "gas": 2997755, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0x24f", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x5c6" + ] + }, + { + "pc": 1478, + "op": "JUMPDEST", + "gas": 2997747, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0x24f", + "0x182cb06a45a", + "0x84", + "0xa4" + ] + }, + { + "pc": 1479, + "op": "SWAP3", + "gas": 2997746, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0x24f", + "0x182cb06a45a", + "0x84", + "0xa4" + ] + }, + { + "pc": 1480, + "op": "SWAP2", + "gas": 2997743, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0xa4", + "0x182cb06a45a", + "0x84", + "0x24f" + ] + }, + { + "pc": 1481, + "op": "POP", + "gas": 2997740, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0xa4", + "0x24f", + "0x84", + "0x182cb06a45a" + ] + }, + { + "pc": 1482, + "op": "POP", + "gas": 2997738, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0xa4", + "0x24f", + "0x84" + ] + }, + { + "pc": 1483, + "op": "JUMP", + "gas": 2997736, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0xa4", + "0x24f" + ] + }, + { + "pc": 591, + "op": "JUMPDEST", + "gas": 2997728, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0xa4" + ] + }, + { + "pc": 592, + "op": "PUSH1", + "gas": 2997727, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0xa4" + ] + }, + { + "pc": 594, + "op": "PUSH1", + "gas": 2997724, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0xa4", + "0x0" + ] + }, + { + "pc": 596, + "op": "MLOAD", + "gas": 2997721, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0xa4", + "0x0", + "0x40" + ] + }, + { + "pc": 597, + "op": "DUP1", + "gas": 2997718, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0xa4", + "0x0", + "0x80" + ] + }, + { + "pc": 598, + "op": "DUP4", + "gas": 2997715, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0xa4", + "0x0", + "0x80", + "0x80" + ] + }, + { + "pc": 599, + "op": "SUB", + "gas": 2997712, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0xa4", + "0x0", + "0x80", + "0x80", + "0xa4" + ] + }, + { + "pc": 600, + "op": "DUP2", + "gas": 2997709, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0xa4", + "0x0", + "0x80", + "0x24" + ] + }, + { + "pc": 601, + "op": "PUSH1", + "gas": 2997706, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80" + ] + }, + { + "pc": 603, + "op": "DUP8", + "gas": 2997703, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0" + ] + }, + { + "pc": 604, + "op": "DUP1", + "gas": 2997700, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5" + ] + }, + { + "pc": 605, + "op": "EXTCODESIZE", + "gas": 2997697, + "gasCost": 2600, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5" + ], + "extraData": { + "codeList": [ + "0x608060405234801561001057600080fd5b506004361061004c5760003560e01c806321848c46146100515780633e23ee431461006d578063b0f2b72a1461008b578063ed231420146100a7575b600080fd5b61006b6004803603810190610066919061038a565b6100c3565b005b61007561015b565b604051610082919061040a565b60405180910390f35b6100a560048036038101906100a0919061038a565b610184565b005b6100c160048036038101906100bc919061038a565b610219565b005b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff166321848c46836040518263ffffffff1660e01b81526004016101229190610447565b600060405180830381600087803b15801561013c57600080fd5b505af192505050801561014d575060015b61015657610157565b5b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663b0f2b72a836040518263ffffffff1660e01b81526004016101e39190610447565b600060405180830381600087803b1580156101fd57600080fd5b505af1158015610211573d6000803e3d6000fd5b505050505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663e5223f886064846040518363ffffffff1660e01b815260040161027a9190610447565b6000604051808303818588803b15801561029357600080fd5b505af1935050505080156102a5575060015b6102ae576102af565b5b5050565b610349816040516024016102c79190610425565b6040516020818303038152906040527f41304fac000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff838183161783525050505061034c565b50565b60008151905060006a636f6e736f6c652e6c6f679050602083016000808483855afa5050505050565b600081359050610384816104fe565b92915050565b60006020828403121561039c57600080fd5b60006103aa84828501610375565b91505092915050565b6103bc8161047e565b82525050565b60006103cd82610462565b6103d7818561046d565b93506103e78185602086016104ba565b6103f0816104ed565b840191505092915050565b610404816104b0565b82525050565b600060208201905061041f60008301846103b3565b92915050565b6000602082019050818103600083015261043f81846103c2565b905092915050565b600060208201905061045c60008301846103fb565b92915050565b600081519050919050565b600082825260208201905092915050565b600061048982610490565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b838110156104d85780820151818401526020810190506104bd565b838111156104e7576000848401525b50505050565b6000601f19601f8301169050919050565b610507816104b0565b811461051257600080fd5b5056fea2646970667358221220f5cc0a3497437233916ec484eed596fa82d20198cc5e4e12a1bc76d6907526b864736f6c63430008040033" + ] + } + }, + { + "pc": 606, + "op": "ISZERO", + "gas": 2995097, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x54b" + ] + }, + { + "pc": 607, + "op": "DUP1", + "gas": 2995094, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x0" + ] + }, + { + "pc": 608, + "op": "ISZERO", + "gas": 2995091, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x0", + "0x0" + ] + }, + { + "pc": 609, + "op": "PUSH2", + "gas": 2995088, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x0", + "0x1" + ] + }, + { + "pc": 612, + "op": "JUMPI", + "gas": 2995085, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x0", + "0x1", + "0x269" + ] + }, + { + "pc": 617, + "op": "JUMPDEST", + "gas": 2995075, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x0" + ] + }, + { + "pc": 618, + "op": "POP", + "gas": 2995074, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x0" + ] + }, + { + "pc": 619, + "op": "GAS", + "gas": 2995072, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5" + ] + }, + { + "pc": 620, + "op": "CALL", + "gas": 2995070, + "gasCost": 2948274, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x2db37e" + ], + "extraData": { + "codeList": [ + "0x608060405234801561001057600080fd5b506004361061007d5760003560e01c80633e23ee431161005b5780633e23ee43146100d8578063651b4aa5146100f6578063a0a4868814610112578063cb4ec52e1461012e5761007d565b8063127017e114610082578063200d2ed21461009e57806336864b1b146100bc575b600080fd5b61009c6004803603810190610097919061050c565b61014a565b005b6100a66101e6565b6040516100b391906105b1565b60405180910390f35b6100d660048036038101906100d1919061050c565b6101f0565b005b6100e06102c3565b6040516100ed9190610576565b60405180910390f35b610110600480360381019061010b919061050c565b6102ec565b005b61012c6004803603810190610127919061050c565b610388565b005b6101486004803603810190610143919061050c565b61045b565b005b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663ed231420836040518263ffffffff1660e01b81526004016101a991906105b1565b600060405180830381600087803b1580156101c357600080fd5b505af11580156101d7573d6000803e3d6000fd5b50505050816001819055505050565b6000600154905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663b0f2b72a836040518263ffffffff1660e01b815260040161024f91906105b1565b600060405180830381600087803b15801561026957600080fd5b505af115801561027d573d6000803e3d6000fd5b50505050816001819055506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016102ba90610591565b60405180910390fd5b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff166321848c46836040518263ffffffff1660e01b815260040161034b91906105b1565b600060405180830381600087803b15801561036557600080fd5b505af1158015610379573d6000803e3d6000fd5b50505050816001819055505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff166321848c46836040518263ffffffff1660e01b81526004016103e791906105b1565b600060405180830381600087803b15801561040157600080fd5b505af1158015610415573d6000803e3d6000fd5b50505050816001819055506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161045290610591565b60405180910390fd5b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663b0f2b72a836040518263ffffffff1660e01b81526004016104ba91906105b1565b600060405180830381600087803b1580156104d457600080fd5b505af11580156104e8573d6000803e3d6000fd5b50505050816001819055505050565b60008135905061050681610642565b92915050565b60006020828403121561051e57600080fd5b600061052c848285016104f7565b91505092915050565b61053e816105dd565b82525050565b6000610551600c836105cc565b915061055c82610619565b602082019050919050565b6105708161060f565b82525050565b600060208201905061058b6000830184610535565b92915050565b600060208201905081810360008301526105aa81610544565b9050919050565b60006020820190506105c66000830184610567565b92915050565b600082825260208201905092915050565b60006105e8826105ef565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b7f64656c696265726174656c790000000000000000000000000000000000000000600082015250565b61064b8161060f565b811461065657600080fd5b5056fea2646970667358221220fc037ef9cac015a49b5d1fa3ef3193503e4aef8398dd3d8a477cd8726cb8d54a64736f6c63430008040033", + "0x608060405234801561001057600080fd5b506004361061004c5760003560e01c806321848c46146100515780633e23ee431461006d578063b0f2b72a1461008b578063ed231420146100a7575b600080fd5b61006b6004803603810190610066919061038a565b6100c3565b005b61007561015b565b604051610082919061040a565b60405180910390f35b6100a560048036038101906100a0919061038a565b610184565b005b6100c160048036038101906100bc919061038a565b610219565b005b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff166321848c46836040518263ffffffff1660e01b81526004016101229190610447565b600060405180830381600087803b15801561013c57600080fd5b505af192505050801561014d575060015b61015657610157565b5b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663b0f2b72a836040518263ffffffff1660e01b81526004016101e39190610447565b600060405180830381600087803b1580156101fd57600080fd5b505af1158015610211573d6000803e3d6000fd5b505050505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663e5223f886064846040518363ffffffff1660e01b815260040161027a9190610447565b6000604051808303818588803b15801561029357600080fd5b505af1935050505080156102a5575060015b6102ae576102af565b5b5050565b610349816040516024016102c79190610425565b6040516020818303038152906040527f41304fac000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff838183161783525050505061034c565b50565b60008151905060006a636f6e736f6c652e6c6f679050602083016000808483855afa5050505050565b600081359050610384816104fe565b92915050565b60006020828403121561039c57600080fd5b60006103aa84828501610375565b91505092915050565b6103bc8161047e565b82525050565b60006103cd82610462565b6103d7818561046d565b93506103e78185602086016104ba565b6103f0816104ed565b840191505092915050565b610404816104b0565b82525050565b600060208201905061041f60008301846103b3565b92915050565b6000602082019050818103600083015261043f81846103c2565b905092915050565b600060208201905061045c60008301846103fb565b92915050565b600081519050919050565b600082825260208201905092915050565b600061048982610490565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b838110156104d85780820151818401526020810190506104bd565b838111156104e7576000848401525b50505050565b6000601f19601f8301169050919050565b610507816104b0565b811461051257600080fd5b5056fea2646970667358221220f5cc0a3497437233916ec484eed596fa82d20198cc5e4e12a1bc76d6907526b864736f6c63430008040033" + ], + "proofList": [ + { + "address": "0x9cb1b5b04b4dcd5c3ab9bafd2c0ad4fd8a9b3d29", + "nonce": 1, + "balance": "0x0", + "codeHash": "0xb058876f2963a74146d29465bbd582cbc6f2c03a2ec5adc6e6d74513470072a4" + }, + { + "address": "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "nonce": 1, + "balance": "0x0", + "codeHash": "0x5a58c210f99d8c05214f392685ce9711a7538fb5ed7bcd81fba60e035e56f163" + }, + { + "address": "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "nonce": 1, + "balance": "0x0", + "codeHash": "0x5a58c210f99d8c05214f392685ce9711a7538fb5ed7bcd81fba60e035e56f163" + } + ], + "caller": [ + { + "address": "0x9cb1b5b04b4dcd5c3ab9bafd2c0ad4fd8a9b3d29", + "nonce": 1, + "balance": "0x0", + "codeHash": "0xb058876f2963a74146d29465bbd582cbc6f2c03a2ec5adc6e6d74513470072a4" + }, + { + "address": "0x9cb1b5b04b4dcd5c3ab9bafd2c0ad4fd8a9b3d29", + "nonce": 1, + "balance": "0x0", + "codeHash": "0xb058876f2963a74146d29465bbd582cbc6f2c03a2ec5adc6e6d74513470072a4" + } + ] + } + }, + { + "pc": 0, + "op": "PUSH1", + "gas": 2948174, + "gasCost": 3, + "depth": 2 + }, + { + "pc": 2, + "op": "PUSH1", + "gas": 2948171, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x80" + ] + }, + { + "pc": 4, + "op": "MSTORE", + "gas": 2948168, + "gasCost": 12, + "depth": 2, + "stack": [ + "0x80", + "0x40" + ] + }, + { + "pc": 5, + "op": "CALLVALUE", + "gas": 2948156, + "gasCost": 2, + "depth": 2 + }, + { + "pc": 6, + "op": "DUP1", + "gas": 2948154, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x0" + ] + }, + { + "pc": 7, + "op": "ISZERO", + "gas": 2948151, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x0", + "0x0" + ] + }, + { + "pc": 8, + "op": "PUSH2", + "gas": 2948148, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x0", + "0x1" + ] + }, + { + "pc": 11, + "op": "JUMPI", + "gas": 2948145, + "gasCost": 10, + "depth": 2, + "stack": [ + "0x0", + "0x1", + "0x10" + ] + }, + { + "pc": 16, + "op": "JUMPDEST", + "gas": 2948135, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x0" + ] + }, + { + "pc": 17, + "op": "POP", + "gas": 2948134, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x0" + ] + }, + { + "pc": 18, + "op": "PUSH1", + "gas": 2948132, + "gasCost": 3, + "depth": 2 + }, + { + "pc": 20, + "op": "CALLDATASIZE", + "gas": 2948129, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x4" + ] + }, + { + "pc": 21, + "op": "LT", + "gas": 2948127, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x4", + "0x24" + ] + }, + { + "pc": 22, + "op": "PUSH2", + "gas": 2948124, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x0" + ] + }, + { + "pc": 25, + "op": "JUMPI", + "gas": 2948121, + "gasCost": 10, + "depth": 2, + "stack": [ + "0x0", + "0x4c" + ] + }, + { + "pc": 26, + "op": "PUSH1", + "gas": 2948111, + "gasCost": 3, + "depth": 2 + }, + { + "pc": 28, + "op": "CALLDATALOAD", + "gas": 2948108, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x0" + ] + }, + { + "pc": 29, + "op": "PUSH1", + "gas": 2948105, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a00000000000000000000000000000000000000000000000000000182" + ] + }, + { + "pc": 31, + "op": "SHR", + "gas": 2948102, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a00000000000000000000000000000000000000000000000000000182", + "0xe0" + ] + }, + { + "pc": 32, + "op": "DUP1", + "gas": 2948099, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a" + ] + }, + { + "pc": 33, + "op": "PUSH4", + "gas": 2948096, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xb0f2b72a" + ] + }, + { + "pc": 38, + "op": "EQ", + "gas": 2948093, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xb0f2b72a", + "0x21848c46" + ] + }, + { + "pc": 39, + "op": "PUSH2", + "gas": 2948090, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0x0" + ] + }, + { + "pc": 42, + "op": "JUMPI", + "gas": 2948087, + "gasCost": 10, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0x0", + "0x51" + ] + }, + { + "pc": 43, + "op": "DUP1", + "gas": 2948077, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a" + ] + }, + { + "pc": 44, + "op": "PUSH4", + "gas": 2948074, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xb0f2b72a" + ] + }, + { + "pc": 49, + "op": "EQ", + "gas": 2948071, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xb0f2b72a", + "0x3e23ee43" + ] + }, + { + "pc": 50, + "op": "PUSH2", + "gas": 2948068, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0x0" + ] + }, + { + "pc": 53, + "op": "JUMPI", + "gas": 2948065, + "gasCost": 10, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0x0", + "0x6d" + ] + }, + { + "pc": 54, + "op": "DUP1", + "gas": 2948055, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a" + ] + }, + { + "pc": 55, + "op": "PUSH4", + "gas": 2948052, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xb0f2b72a" + ] + }, + { + "pc": 60, + "op": "EQ", + "gas": 2948049, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xb0f2b72a", + "0xb0f2b72a" + ] + }, + { + "pc": 61, + "op": "PUSH2", + "gas": 2948046, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0x1" + ] + }, + { + "pc": 64, + "op": "JUMPI", + "gas": 2948043, + "gasCost": 10, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0x1", + "0x8b" + ] + }, + { + "pc": 139, + "op": "JUMPDEST", + "gas": 2948033, + "gasCost": 1, + "depth": 2, + "stack": [ + "0xb0f2b72a" + ] + }, + { + "pc": 140, + "op": "PUSH2", + "gas": 2948032, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a" + ] + }, + { + "pc": 143, + "op": "PUSH1", + "gas": 2948029, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5" + ] + }, + { + "pc": 145, + "op": "DUP1", + "gas": 2948026, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x4" + ] + }, + { + "pc": 146, + "op": "CALLDATASIZE", + "gas": 2948023, + "gasCost": 2, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x4", + "0x4" + ] + }, + { + "pc": 147, + "op": "SUB", + "gas": 2948021, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x4", + "0x4", + "0x24" + ] + }, + { + "pc": 148, + "op": "DUP2", + "gas": 2948018, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x4", + "0x20" + ] + }, + { + "pc": 149, + "op": "ADD", + "gas": 2948015, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x4", + "0x20", + "0x4" + ] + }, + { + "pc": 150, + "op": "SWAP1", + "gas": 2948012, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x4", + "0x24" + ] + }, + { + "pc": 151, + "op": "PUSH2", + "gas": 2948009, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x24", + "0x4" + ] + }, + { + "pc": 154, + "op": "SWAP2", + "gas": 2948006, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x24", + "0x4", + "0xa0" + ] + }, + { + "pc": 155, + "op": "SWAP1", + "gas": 2948003, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x4", + "0x24" + ] + }, + { + "pc": 156, + "op": "PUSH2", + "gas": 2948000, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4" + ] + }, + { + "pc": 159, + "op": "JUMP", + "gas": 2947997, + "gasCost": 8, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x38a" + ] + }, + { + "pc": 906, + "op": "JUMPDEST", + "gas": 2947989, + "gasCost": 1, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4" + ] + }, + { + "pc": 907, + "op": "PUSH1", + "gas": 2947988, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4" + ] + }, + { + "pc": 909, + "op": "PUSH1", + "gas": 2947985, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 911, + "op": "DUP3", + "gas": 2947982, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x20" + ] + }, + { + "pc": 912, + "op": "DUP5", + "gas": 2947979, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x20", + "0x4" + ] + }, + { + "pc": 913, + "op": "SUB", + "gas": 2947976, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x20", + "0x4", + "0x24" + ] + }, + { + "pc": 914, + "op": "SLT", + "gas": 2947973, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x20", + "0x20" + ] + }, + { + "pc": 915, + "op": "ISZERO", + "gas": 2947970, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0" + ] + }, + { + "pc": 916, + "op": "PUSH2", + "gas": 2947967, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x1" + ] + }, + { + "pc": 919, + "op": "JUMPI", + "gas": 2947964, + "gasCost": 10, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x1", + "0x39c" + ] + }, + { + "pc": 924, + "op": "JUMPDEST", + "gas": 2947954, + "gasCost": 1, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 925, + "op": "PUSH1", + "gas": 2947953, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 927, + "op": "PUSH2", + "gas": 2947950, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0" + ] + }, + { + "pc": 930, + "op": "DUP5", + "gas": 2947947, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa" + ] + }, + { + "pc": 931, + "op": "DUP3", + "gas": 2947944, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24" + ] + }, + { + "pc": 932, + "op": "DUP6", + "gas": 2947941, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x0" + ] + }, + { + "pc": 933, + "op": "ADD", + "gas": 2947938, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x0", + "0x4" + ] + }, + { + "pc": 934, + "op": "PUSH2", + "gas": 2947935, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4" + ] + }, + { + "pc": 937, + "op": "JUMP", + "gas": 2947932, + "gasCost": 8, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x375" + ] + }, + { + "pc": 885, + "op": "JUMPDEST", + "gas": 2947924, + "gasCost": 1, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4" + ] + }, + { + "pc": 886, + "op": "PUSH1", + "gas": 2947923, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4" + ] + }, + { + "pc": 888, + "op": "DUP2", + "gas": 2947920, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 889, + "op": "CALLDATALOAD", + "gas": 2947917, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x0", + "0x4" + ] + }, + { + "pc": 890, + "op": "SWAP1", + "gas": 2947914, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x0", + "0x182cb06a45a" + ] + }, + { + "pc": 891, + "op": "POP", + "gas": 2947911, + "gasCost": 2, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cb06a45a", + "0x0" + ] + }, + { + "pc": 892, + "op": "PUSH2", + "gas": 2947909, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cb06a45a" + ] + }, + { + "pc": 895, + "op": "DUP2", + "gas": 2947906, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cb06a45a", + "0x384" + ] + }, + { + "pc": 896, + "op": "PUSH2", + "gas": 2947903, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cb06a45a", + "0x384", + "0x182cb06a45a" + ] + }, + { + "pc": 899, + "op": "JUMP", + "gas": 2947900, + "gasCost": 8, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cb06a45a", + "0x384", + "0x182cb06a45a", + "0x4fe" + ] + }, + { + "pc": 1278, + "op": "JUMPDEST", + "gas": 2947892, + "gasCost": 1, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cb06a45a", + "0x384", + "0x182cb06a45a" + ] + }, + { + "pc": 1279, + "op": "PUSH2", + "gas": 2947891, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cb06a45a", + "0x384", + "0x182cb06a45a" + ] + }, + { + "pc": 1282, + "op": "DUP2", + "gas": 2947888, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cb06a45a", + "0x384", + "0x182cb06a45a", + "0x507" + ] + }, + { + "pc": 1283, + "op": "PUSH2", + "gas": 2947885, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cb06a45a", + "0x384", + "0x182cb06a45a", + "0x507", + "0x182cb06a45a" + ] + }, + { + "pc": 1286, + "op": "JUMP", + "gas": 2947882, + "gasCost": 8, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cb06a45a", + "0x384", + "0x182cb06a45a", + "0x507", + "0x182cb06a45a", + "0x4b0" + ] + }, + { + "pc": 1200, + "op": "JUMPDEST", + "gas": 2947874, + "gasCost": 1, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cb06a45a", + "0x384", + "0x182cb06a45a", + "0x507", + "0x182cb06a45a" + ] + }, + { + "pc": 1201, + "op": "PUSH1", + "gas": 2947873, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cb06a45a", + "0x384", + "0x182cb06a45a", + "0x507", + "0x182cb06a45a" + ] + }, + { + "pc": 1203, + "op": "DUP2", + "gas": 2947870, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cb06a45a", + "0x384", + "0x182cb06a45a", + "0x507", + "0x182cb06a45a", + "0x0" + ] + }, + { + "pc": 1204, + "op": "SWAP1", + "gas": 2947867, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cb06a45a", + "0x384", + "0x182cb06a45a", + "0x507", + "0x182cb06a45a", + "0x0", + "0x182cb06a45a" + ] + }, + { + "pc": 1205, + "op": "POP", + "gas": 2947864, + "gasCost": 2, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cb06a45a", + "0x384", + "0x182cb06a45a", + "0x507", + "0x182cb06a45a", + "0x182cb06a45a", + "0x0" + ] + }, + { + "pc": 1206, + "op": "SWAP2", + "gas": 2947862, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cb06a45a", + "0x384", + "0x182cb06a45a", + "0x507", + "0x182cb06a45a", + "0x182cb06a45a" + ] + }, + { + "pc": 1207, + "op": "SWAP1", + "gas": 2947859, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cb06a45a", + "0x384", + "0x182cb06a45a", + "0x182cb06a45a", + "0x182cb06a45a", + "0x507" + ] + }, + { + "pc": 1208, + "op": "POP", + "gas": 2947856, + "gasCost": 2, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cb06a45a", + "0x384", + "0x182cb06a45a", + "0x182cb06a45a", + "0x507", + "0x182cb06a45a" + ] + }, + { + "pc": 1209, + "op": "JUMP", + "gas": 2947854, + "gasCost": 8, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cb06a45a", + "0x384", + "0x182cb06a45a", + "0x182cb06a45a", + "0x507" + ] + }, + { + "pc": 1287, + "op": "JUMPDEST", + "gas": 2947846, + "gasCost": 1, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cb06a45a", + "0x384", + "0x182cb06a45a", + "0x182cb06a45a" + ] + }, + { + "pc": 1288, + "op": "DUP2", + "gas": 2947845, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cb06a45a", + "0x384", + "0x182cb06a45a", + "0x182cb06a45a" + ] + }, + { + "pc": 1289, + "op": "EQ", + "gas": 2947842, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cb06a45a", + "0x384", + "0x182cb06a45a", + "0x182cb06a45a", + "0x182cb06a45a" + ] + }, + { + "pc": 1290, + "op": "PUSH2", + "gas": 2947839, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cb06a45a", + "0x384", + "0x182cb06a45a", + "0x1" + ] + }, + { + "pc": 1293, + "op": "JUMPI", + "gas": 2947836, + "gasCost": 10, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cb06a45a", + "0x384", + "0x182cb06a45a", + "0x1", + "0x512" + ] + }, + { + "pc": 1298, + "op": "JUMPDEST", + "gas": 2947826, + "gasCost": 1, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cb06a45a", + "0x384", + "0x182cb06a45a" + ] + }, + { + "pc": 1299, + "op": "POP", + "gas": 2947825, + "gasCost": 2, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cb06a45a", + "0x384", + "0x182cb06a45a" + ] + }, + { + "pc": 1300, + "op": "JUMP", + "gas": 2947823, + "gasCost": 8, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cb06a45a", + "0x384" + ] + }, + { + "pc": 900, + "op": "JUMPDEST", + "gas": 2947815, + "gasCost": 1, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cb06a45a" + ] + }, + { + "pc": 901, + "op": "SWAP3", + "gas": 2947814, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cb06a45a" + ] + }, + { + "pc": 902, + "op": "SWAP2", + "gas": 2947811, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x182cb06a45a", + "0x24", + "0x4", + "0x3aa" + ] + }, + { + "pc": 903, + "op": "POP", + "gas": 2947808, + "gasCost": 2, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x182cb06a45a", + "0x3aa", + "0x4", + "0x24" + ] + }, + { + "pc": 904, + "op": "POP", + "gas": 2947806, + "gasCost": 2, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x182cb06a45a", + "0x3aa", + "0x4" + ] + }, + { + "pc": 905, + "op": "JUMP", + "gas": 2947804, + "gasCost": 8, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x182cb06a45a", + "0x3aa" + ] + }, + { + "pc": 938, + "op": "JUMPDEST", + "gas": 2947796, + "gasCost": 1, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x182cb06a45a" + ] + }, + { + "pc": 939, + "op": "SWAP2", + "gas": 2947795, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x182cb06a45a" + ] + }, + { + "pc": 940, + "op": "POP", + "gas": 2947792, + "gasCost": 2, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x182cb06a45a", + "0x0", + "0x0" + ] + }, + { + "pc": 941, + "op": "POP", + "gas": 2947790, + "gasCost": 2, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x182cb06a45a", + "0x0" + ] + }, + { + "pc": 942, + "op": "SWAP3", + "gas": 2947788, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0xa0", + "0x24", + "0x4", + "0x182cb06a45a" + ] + }, + { + "pc": 943, + "op": "SWAP2", + "gas": 2947785, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cb06a45a", + "0x24", + "0x4", + "0xa0" + ] + }, + { + "pc": 944, + "op": "POP", + "gas": 2947782, + "gasCost": 2, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cb06a45a", + "0xa0", + "0x4", + "0x24" + ] + }, + { + "pc": 945, + "op": "POP", + "gas": 2947780, + "gasCost": 2, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cb06a45a", + "0xa0", + "0x4" + ] + }, + { + "pc": 946, + "op": "JUMP", + "gas": 2947778, + "gasCost": 8, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cb06a45a", + "0xa0" + ] + }, + { + "pc": 160, + "op": "JUMPDEST", + "gas": 2947770, + "gasCost": 1, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cb06a45a" + ] + }, + { + "pc": 161, + "op": "PUSH2", + "gas": 2947769, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cb06a45a" + ] + }, + { + "pc": 164, + "op": "JUMP", + "gas": 2947766, + "gasCost": 8, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cb06a45a", + "0x184" + ] + }, + { + "pc": 388, + "op": "JUMPDEST", + "gas": 2947758, + "gasCost": 1, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cb06a45a" + ] + }, + { + "pc": 389, + "op": "PUSH1", + "gas": 2947757, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cb06a45a" + ] + }, + { + "pc": 391, + "op": "DUP1", + "gas": 2947754, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cb06a45a", + "0x0" + ] + }, + { + "pc": 392, + "op": "PUSH1", + "gas": 2947751, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cb06a45a", + "0x0", + "0x0" + ] + }, + { + "pc": 394, + "op": "SWAP1", + "gas": 2947748, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cb06a45a", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 395, + "op": "SLOAD", + "gas": 2947745, + "gasCost": 2100, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cb06a45a", + "0x0", + "0x0", + "0x0" + ], + "storage": { + "0x0000000000000000000000000000000000000000000000000000000000000000": "0x0000000000000000000000007db8ae361a8746cb1346d3390b00d7122e3286e4" + }, + "extraData": { + "proofList": [ + { + "address": "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "nonce": 1, + "balance": "0x0", + "codeHash": "0x5a58c210f99d8c05214f392685ce9711a7538fb5ed7bcd81fba60e035e56f163", + "storage": { + "key": "0x0000000000000000000000000000000000000000000000000000000000000000", + "value": "0x0000000000000000000000007db8ae361a8746cb1346d3390b00d7122e3286e4" + } + } + ] + } + }, + { + "pc": 396, + "op": "SWAP1", + "gas": 2945645, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cb06a45a", + "0x0", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4" + ] + }, + { + "pc": 397, + "op": "PUSH2", + "gas": 2945642, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cb06a45a", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x0" + ] + }, + { + "pc": 400, + "op": "EXP", + "gas": 2945639, + "gasCost": 10, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cb06a45a", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x0", + "0x100" + ] + }, + { + "pc": 401, + "op": "SWAP1", + "gas": 2945629, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cb06a45a", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x1" + ] + }, + { + "pc": 402, + "op": "DIV", + "gas": 2945626, + "gasCost": 5, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cb06a45a", + "0x0", + "0x1", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4" + ] + }, + { + "pc": 403, + "op": "PUSH20", + "gas": 2945621, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cb06a45a", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4" + ] + }, + { + "pc": 424, + "op": "AND", + "gas": 2945618, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cb06a45a", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 425, + "op": "SWAP1", + "gas": 2945615, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cb06a45a", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4" + ] + }, + { + "pc": 426, + "op": "POP", + "gas": 2945612, + "gasCost": 2, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x0" + ] + }, + { + "pc": 427, + "op": "DUP1", + "gas": 2945610, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4" + ] + }, + { + "pc": 428, + "op": "PUSH20", + "gas": 2945607, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4" + ] + }, + { + "pc": 449, + "op": "AND", + "gas": 2945604, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 450, + "op": "PUSH4", + "gas": 2945601, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4" + ] + }, + { + "pc": 455, + "op": "DUP4", + "gas": 2945598, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a" + ] + }, + { + "pc": 456, + "op": "PUSH1", + "gas": 2945595, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x182cb06a45a" + ] + }, + { + "pc": 458, + "op": "MLOAD", + "gas": 2945592, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x182cb06a45a", + "0x40" + ] + }, + { + "pc": 459, + "op": "DUP3", + "gas": 2945589, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x182cb06a45a", + "0x80" + ] + }, + { + "pc": 460, + "op": "PUSH4", + "gas": 2945586, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x182cb06a45a", + "0x80", + "0xb0f2b72a" + ] + }, + { + "pc": 465, + "op": "AND", + "gas": 2945583, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x182cb06a45a", + "0x80", + "0xb0f2b72a", + "0xffffffff" + ] + }, + { + "pc": 466, + "op": "PUSH1", + "gas": 2945580, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x182cb06a45a", + "0x80", + "0xb0f2b72a" + ] + }, + { + "pc": 468, + "op": "SHL", + "gas": 2945577, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x182cb06a45a", + "0x80", + "0xb0f2b72a", + "0xe0" + ] + }, + { + "pc": 469, + "op": "DUP2", + "gas": 2945574, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x182cb06a45a", + "0x80", + "0xb0f2b72a00000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 470, + "op": "MSTORE", + "gas": 2945571, + "gasCost": 9, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x182cb06a45a", + "0x80", + "0xb0f2b72a00000000000000000000000000000000000000000000000000000000", + "0x80" + ] + }, + { + "pc": 471, + "op": "PUSH1", + "gas": 2945562, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x182cb06a45a", + "0x80" + ] + }, + { + "pc": 473, + "op": "ADD", + "gas": 2945559, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x182cb06a45a", + "0x80", + "0x4" + ] + }, + { + "pc": 474, + "op": "PUSH2", + "gas": 2945556, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x182cb06a45a", + "0x84" + ] + }, + { + "pc": 477, + "op": "SWAP2", + "gas": 2945553, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x182cb06a45a", + "0x84", + "0x1e3" + ] + }, + { + "pc": 478, + "op": "SWAP1", + "gas": 2945550, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x1e3", + "0x84", + "0x182cb06a45a" + ] + }, + { + "pc": 479, + "op": "PUSH2", + "gas": 2945547, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x1e3", + "0x182cb06a45a", + "0x84" + ] + }, + { + "pc": 482, + "op": "JUMP", + "gas": 2945544, + "gasCost": 8, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x1e3", + "0x182cb06a45a", + "0x84", + "0x447" + ] + }, + { + "pc": 1095, + "op": "JUMPDEST", + "gas": 2945536, + "gasCost": 1, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x1e3", + "0x182cb06a45a", + "0x84" + ] + }, + { + "pc": 1096, + "op": "PUSH1", + "gas": 2945535, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x1e3", + "0x182cb06a45a", + "0x84" + ] + }, + { + "pc": 1098, + "op": "PUSH1", + "gas": 2945532, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x1e3", + "0x182cb06a45a", + "0x84", + "0x0" + ] + }, + { + "pc": 1100, + "op": "DUP3", + "gas": 2945529, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x1e3", + "0x182cb06a45a", + "0x84", + "0x0", + "0x20" + ] + }, + { + "pc": 1101, + "op": "ADD", + "gas": 2945526, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x1e3", + "0x182cb06a45a", + "0x84", + "0x0", + "0x20", + "0x84" + ] + }, + { + "pc": 1102, + "op": "SWAP1", + "gas": 2945523, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x1e3", + "0x182cb06a45a", + "0x84", + "0x0", + "0xa4" + ] + }, + { + "pc": 1103, + "op": "POP", + "gas": 2945520, + "gasCost": 2, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x1e3", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x0" + ] + }, + { + "pc": 1104, + "op": "PUSH2", + "gas": 2945518, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x1e3", + "0x182cb06a45a", + "0x84", + "0xa4" + ] + }, + { + "pc": 1107, + "op": "PUSH1", + "gas": 2945515, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x1e3", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x45c" + ] + }, + { + "pc": 1109, + "op": "DUP4", + "gas": 2945512, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x1e3", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x45c", + "0x0" + ] + }, + { + "pc": 1110, + "op": "ADD", + "gas": 2945509, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x1e3", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x45c", + "0x0", + "0x84" + ] + }, + { + "pc": 1111, + "op": "DUP5", + "gas": 2945506, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x1e3", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x45c", + "0x84" + ] + }, + { + "pc": 1112, + "op": "PUSH2", + "gas": 2945503, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x1e3", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x182cb06a45a" + ] + }, + { + "pc": 1115, + "op": "JUMP", + "gas": 2945500, + "gasCost": 8, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x1e3", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x182cb06a45a", + "0x3fb" + ] + }, + { + "pc": 1019, + "op": "JUMPDEST", + "gas": 2945492, + "gasCost": 1, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x1e3", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x182cb06a45a" + ] + }, + { + "pc": 1020, + "op": "PUSH2", + "gas": 2945491, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x1e3", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x182cb06a45a" + ] + }, + { + "pc": 1023, + "op": "DUP2", + "gas": 2945488, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x1e3", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x182cb06a45a", + "0x404" + ] + }, + { + "pc": 1024, + "op": "PUSH2", + "gas": 2945485, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x1e3", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x182cb06a45a", + "0x404", + "0x182cb06a45a" + ] + }, + { + "pc": 1027, + "op": "JUMP", + "gas": 2945482, + "gasCost": 8, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x1e3", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x182cb06a45a", + "0x404", + "0x182cb06a45a", + "0x4b0" + ] + }, + { + "pc": 1200, + "op": "JUMPDEST", + "gas": 2945474, + "gasCost": 1, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x1e3", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x182cb06a45a", + "0x404", + "0x182cb06a45a" + ] + }, + { + "pc": 1201, + "op": "PUSH1", + "gas": 2945473, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x1e3", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x182cb06a45a", + "0x404", + "0x182cb06a45a" + ] + }, + { + "pc": 1203, + "op": "DUP2", + "gas": 2945470, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x1e3", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x182cb06a45a", + "0x404", + "0x182cb06a45a", + "0x0" + ] + }, + { + "pc": 1204, + "op": "SWAP1", + "gas": 2945467, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x1e3", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x182cb06a45a", + "0x404", + "0x182cb06a45a", + "0x0", + "0x182cb06a45a" + ] + }, + { + "pc": 1205, + "op": "POP", + "gas": 2945464, + "gasCost": 2, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x1e3", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x182cb06a45a", + "0x404", + "0x182cb06a45a", + "0x182cb06a45a", + "0x0" + ] + }, + { + "pc": 1206, + "op": "SWAP2", + "gas": 2945462, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x1e3", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x182cb06a45a", + "0x404", + "0x182cb06a45a", + "0x182cb06a45a" + ] + }, + { + "pc": 1207, + "op": "SWAP1", + "gas": 2945459, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x1e3", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x182cb06a45a", + "0x182cb06a45a", + "0x182cb06a45a", + "0x404" + ] + }, + { + "pc": 1208, + "op": "POP", + "gas": 2945456, + "gasCost": 2, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x1e3", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x182cb06a45a", + "0x182cb06a45a", + "0x404", + "0x182cb06a45a" + ] + }, + { + "pc": 1209, + "op": "JUMP", + "gas": 2945454, + "gasCost": 8, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x1e3", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x182cb06a45a", + "0x182cb06a45a", + "0x404" + ] + }, + { + "pc": 1028, + "op": "JUMPDEST", + "gas": 2945446, + "gasCost": 1, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x1e3", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x182cb06a45a", + "0x182cb06a45a" + ] + }, + { + "pc": 1029, + "op": "DUP3", + "gas": 2945445, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x1e3", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x182cb06a45a", + "0x182cb06a45a" + ] + }, + { + "pc": 1030, + "op": "MSTORE", + "gas": 2945442, + "gasCost": 6, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x1e3", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x182cb06a45a", + "0x182cb06a45a", + "0x84" + ] + }, + { + "pc": 1031, + "op": "POP", + "gas": 2945436, + "gasCost": 2, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x1e3", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x182cb06a45a" + ] + }, + { + "pc": 1032, + "op": "POP", + "gas": 2945434, + "gasCost": 2, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x1e3", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x45c", + "0x84" + ] + }, + { + "pc": 1033, + "op": "JUMP", + "gas": 2945432, + "gasCost": 8, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x1e3", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x45c" + ] + }, + { + "pc": 1116, + "op": "JUMPDEST", + "gas": 2945424, + "gasCost": 1, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x1e3", + "0x182cb06a45a", + "0x84", + "0xa4" + ] + }, + { + "pc": 1117, + "op": "SWAP3", + "gas": 2945423, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0x1e3", + "0x182cb06a45a", + "0x84", + "0xa4" + ] + }, + { + "pc": 1118, + "op": "SWAP2", + "gas": 2945420, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0xa4", + "0x182cb06a45a", + "0x84", + "0x1e3" + ] + }, + { + "pc": 1119, + "op": "POP", + "gas": 2945417, + "gasCost": 2, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0xa4", + "0x1e3", + "0x84", + "0x182cb06a45a" + ] + }, + { + "pc": 1120, + "op": "POP", + "gas": 2945415, + "gasCost": 2, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0xa4", + "0x1e3", + "0x84" + ] + }, + { + "pc": 1121, + "op": "JUMP", + "gas": 2945413, + "gasCost": 8, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0xa4", + "0x1e3" + ] + }, + { + "pc": 483, + "op": "JUMPDEST", + "gas": 2945405, + "gasCost": 1, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0xa4" + ] + }, + { + "pc": 484, + "op": "PUSH1", + "gas": 2945404, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0xa4" + ] + }, + { + "pc": 486, + "op": "PUSH1", + "gas": 2945401, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0xa4", + "0x0" + ] + }, + { + "pc": 488, + "op": "MLOAD", + "gas": 2945398, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0xa4", + "0x0", + "0x40" + ] + }, + { + "pc": 489, + "op": "DUP1", + "gas": 2945395, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0xa4", + "0x0", + "0x80" + ] + }, + { + "pc": 490, + "op": "DUP4", + "gas": 2945392, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0xa4", + "0x0", + "0x80", + "0x80" + ] + }, + { + "pc": 491, + "op": "SUB", + "gas": 2945389, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0xa4", + "0x0", + "0x80", + "0x80", + "0xa4" + ] + }, + { + "pc": 492, + "op": "DUP2", + "gas": 2945386, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0xa4", + "0x0", + "0x80", + "0x24" + ] + }, + { + "pc": 493, + "op": "PUSH1", + "gas": 2945383, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80" + ] + }, + { + "pc": 495, + "op": "DUP8", + "gas": 2945380, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0" + ] + }, + { + "pc": 496, + "op": "DUP1", + "gas": 2945377, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4" + ] + }, + { + "pc": 497, + "op": "EXTCODESIZE", + "gas": 2945374, + "gasCost": 2600, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4" + ], + "extraData": { + "codeList": [ + "0x6080604052600436106100555760003560e01c806321848c461461005a5780632e64cec114610083578063b0f2b72a146100ae578063c4e96ec0146100d7578063e5223f88146100f3578063f34176731461010f575b600080fd5b34801561006657600080fd5b50610081600480360381019061007c91906101d7565b61013a565b005b34801561008f57600080fd5b5061009861014f565b6040516100a59190610252565b60405180910390f35b3480156100ba57600080fd5b506100d560048036038101906100d091906101d7565b610158565b005b6100f160048036038101906100ec91906101d7565b610162565b005b61010d600480360381019061010891906101d7565b6101a4565b005b34801561011b57600080fd5b506101246101ae565b6040516101319190610252565b60405180910390f35b80600081905550600061014c57600080fd5b50565b60008054905090565b8060008190555050565b806000819055506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161019b90610232565b60405180910390fd5b8060008190555050565b6000806101ba57600080fd5b600054905090565b6000813590506101d1816102b1565b92915050565b6000602082840312156101e957600080fd5b60006101f7848285016101c2565b91505092915050565b600061020d600c8361026d565b915061021882610288565b602082019050919050565b61022c8161027e565b82525050565b6000602082019050818103600083015261024b81610200565b9050919050565b60006020820190506102676000830184610223565b92915050565b600082825260208201905092915050565b6000819050919050565b7f64656c696265726174656c790000000000000000000000000000000000000000600082015250565b6102ba8161027e565b81146102c557600080fd5b5056fea26469706673582212206fa6988b66dece47dc22658a0058d7f113ce303b23abdbfb3e29ee300a66489464736f6c63430008040033" + ] + } + }, + { + "pc": 498, + "op": "ISZERO", + "gas": 2942774, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x2fe" + ] + }, + { + "pc": 499, + "op": "DUP1", + "gas": 2942771, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x0" + ] + }, + { + "pc": 500, + "op": "ISZERO", + "gas": 2942768, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x0", + "0x0" + ] + }, + { + "pc": 501, + "op": "PUSH2", + "gas": 2942765, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x0", + "0x1" + ] + }, + { + "pc": 504, + "op": "JUMPI", + "gas": 2942762, + "gasCost": 10, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x0", + "0x1", + "0x1fd" + ] + }, + { + "pc": 509, + "op": "JUMPDEST", + "gas": 2942752, + "gasCost": 1, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x0" + ] + }, + { + "pc": 510, + "op": "POP", + "gas": 2942751, + "gasCost": 2, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x0" + ] + }, + { + "pc": 511, + "op": "GAS", + "gas": 2942749, + "gasCost": 2, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4" + ] + }, + { + "pc": 512, + "op": "CALL", + "gas": 2942747, + "gasCost": 2896769, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x2ce71b" + ], + "extraData": { + "codeList": [ + "0x608060405234801561001057600080fd5b506004361061007d5760003560e01c80633e23ee431161005b5780633e23ee43146100d8578063651b4aa5146100f6578063a0a4868814610112578063cb4ec52e1461012e5761007d565b8063127017e114610082578063200d2ed21461009e57806336864b1b146100bc575b600080fd5b61009c6004803603810190610097919061050c565b61014a565b005b6100a66101e6565b6040516100b391906105b1565b60405180910390f35b6100d660048036038101906100d1919061050c565b6101f0565b005b6100e06102c3565b6040516100ed9190610576565b60405180910390f35b610110600480360381019061010b919061050c565b6102ec565b005b61012c6004803603810190610127919061050c565b610388565b005b6101486004803603810190610143919061050c565b61045b565b005b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663ed231420836040518263ffffffff1660e01b81526004016101a991906105b1565b600060405180830381600087803b1580156101c357600080fd5b505af11580156101d7573d6000803e3d6000fd5b50505050816001819055505050565b6000600154905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663b0f2b72a836040518263ffffffff1660e01b815260040161024f91906105b1565b600060405180830381600087803b15801561026957600080fd5b505af115801561027d573d6000803e3d6000fd5b50505050816001819055506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016102ba90610591565b60405180910390fd5b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff166321848c46836040518263ffffffff1660e01b815260040161034b91906105b1565b600060405180830381600087803b15801561036557600080fd5b505af1158015610379573d6000803e3d6000fd5b50505050816001819055505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff166321848c46836040518263ffffffff1660e01b81526004016103e791906105b1565b600060405180830381600087803b15801561040157600080fd5b505af1158015610415573d6000803e3d6000fd5b50505050816001819055506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161045290610591565b60405180910390fd5b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663b0f2b72a836040518263ffffffff1660e01b81526004016104ba91906105b1565b600060405180830381600087803b1580156104d457600080fd5b505af11580156104e8573d6000803e3d6000fd5b50505050816001819055505050565b60008135905061050681610642565b92915050565b60006020828403121561051e57600080fd5b600061052c848285016104f7565b91505092915050565b61053e816105dd565b82525050565b6000610551600c836105cc565b915061055c82610619565b602082019050919050565b6105708161060f565b82525050565b600060208201905061058b6000830184610535565b92915050565b600060208201905081810360008301526105aa81610544565b9050919050565b60006020820190506105c66000830184610567565b92915050565b600082825260208201905092915050565b60006105e8826105ef565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b7f64656c696265726174656c790000000000000000000000000000000000000000600082015250565b61064b8161060f565b811461065657600080fd5b5056fea2646970667358221220fc037ef9cac015a49b5d1fa3ef3193503e4aef8398dd3d8a477cd8726cb8d54a64736f6c63430008040033", + "0x6080604052600436106100555760003560e01c806321848c461461005a5780632e64cec114610083578063b0f2b72a146100ae578063c4e96ec0146100d7578063e5223f88146100f3578063f34176731461010f575b600080fd5b34801561006657600080fd5b50610081600480360381019061007c91906101d7565b61013a565b005b34801561008f57600080fd5b5061009861014f565b6040516100a59190610252565b60405180910390f35b3480156100ba57600080fd5b506100d560048036038101906100d091906101d7565b610158565b005b6100f160048036038101906100ec91906101d7565b610162565b005b61010d600480360381019061010891906101d7565b6101a4565b005b34801561011b57600080fd5b506101246101ae565b6040516101319190610252565b60405180910390f35b80600081905550600061014c57600080fd5b50565b60008054905090565b8060008190555050565b806000819055506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161019b90610232565b60405180910390fd5b8060008190555050565b6000806101ba57600080fd5b600054905090565b6000813590506101d1816102b1565b92915050565b6000602082840312156101e957600080fd5b60006101f7848285016101c2565b91505092915050565b600061020d600c8361026d565b915061021882610288565b602082019050919050565b61022c8161027e565b82525050565b6000602082019050818103600083015261024b81610200565b9050919050565b60006020820190506102676000830184610223565b92915050565b600082825260208201905092915050565b6000819050919050565b7f64656c696265726174656c790000000000000000000000000000000000000000600082015250565b6102ba8161027e565b81146102c557600080fd5b5056fea26469706673582212206fa6988b66dece47dc22658a0058d7f113ce303b23abdbfb3e29ee300a66489464736f6c63430008040033" + ], + "proofList": [ + { + "address": "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "nonce": 1, + "balance": "0x0", + "codeHash": "0x5a58c210f99d8c05214f392685ce9711a7538fb5ed7bcd81fba60e035e56f163" + }, + { + "address": "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "nonce": 1, + "balance": "0x0", + "codeHash": "0x4ee2afb169bef88abed9792edc0230c2cda9c19a48639d2db199479f1176928e" + }, + { + "address": "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "nonce": 1, + "balance": "0x0", + "codeHash": "0x4ee2afb169bef88abed9792edc0230c2cda9c19a48639d2db199479f1176928e" + } + ], + "caller": [ + { + "address": "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "nonce": 1, + "balance": "0x0", + "codeHash": "0x5a58c210f99d8c05214f392685ce9711a7538fb5ed7bcd81fba60e035e56f163" + }, + { + "address": "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "nonce": 1, + "balance": "0x0", + "codeHash": "0x5a58c210f99d8c05214f392685ce9711a7538fb5ed7bcd81fba60e035e56f163" + } + ] + } + }, + { + "pc": 0, + "op": "PUSH1", + "gas": 2896669, + "gasCost": 3, + "depth": 3 + }, + { + "pc": 2, + "op": "PUSH1", + "gas": 2896666, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x80" + ] + }, + { + "pc": 4, + "op": "MSTORE", + "gas": 2896663, + "gasCost": 12, + "depth": 3, + "stack": [ + "0x80", + "0x40" + ] + }, + { + "pc": 5, + "op": "PUSH1", + "gas": 2896651, + "gasCost": 3, + "depth": 3 + }, + { + "pc": 7, + "op": "CALLDATASIZE", + "gas": 2896648, + "gasCost": 2, + "depth": 3, + "stack": [ + "0x4" + ] + }, + { + "pc": 8, + "op": "LT", + "gas": 2896646, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x4", + "0x24" + ] + }, + { + "pc": 9, + "op": "PUSH2", + "gas": 2896643, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x0" + ] + }, + { + "pc": 12, + "op": "JUMPI", + "gas": 2896640, + "gasCost": 10, + "depth": 3, + "stack": [ + "0x0", + "0x55" + ] + }, + { + "pc": 13, + "op": "PUSH1", + "gas": 2896630, + "gasCost": 3, + "depth": 3 + }, + { + "pc": 15, + "op": "CALLDATALOAD", + "gas": 2896627, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x0" + ] + }, + { + "pc": 16, + "op": "PUSH1", + "gas": 2896624, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a00000000000000000000000000000000000000000000000000000182" + ] + }, + { + "pc": 18, + "op": "SHR", + "gas": 2896621, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a00000000000000000000000000000000000000000000000000000182", + "0xe0" + ] + }, + { + "pc": 19, + "op": "DUP1", + "gas": 2896618, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a" + ] + }, + { + "pc": 20, + "op": "PUSH4", + "gas": 2896615, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xb0f2b72a" + ] + }, + { + "pc": 25, + "op": "EQ", + "gas": 2896612, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xb0f2b72a", + "0x21848c46" + ] + }, + { + "pc": 26, + "op": "PUSH2", + "gas": 2896609, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0x0" + ] + }, + { + "pc": 29, + "op": "JUMPI", + "gas": 2896606, + "gasCost": 10, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0x0", + "0x5a" + ] + }, + { + "pc": 30, + "op": "DUP1", + "gas": 2896596, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a" + ] + }, + { + "pc": 31, + "op": "PUSH4", + "gas": 2896593, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xb0f2b72a" + ] + }, + { + "pc": 36, + "op": "EQ", + "gas": 2896590, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xb0f2b72a", + "0x2e64cec1" + ] + }, + { + "pc": 37, + "op": "PUSH2", + "gas": 2896587, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0x0" + ] + }, + { + "pc": 40, + "op": "JUMPI", + "gas": 2896584, + "gasCost": 10, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0x0", + "0x83" + ] + }, + { + "pc": 41, + "op": "DUP1", + "gas": 2896574, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a" + ] + }, + { + "pc": 42, + "op": "PUSH4", + "gas": 2896571, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xb0f2b72a" + ] + }, + { + "pc": 47, + "op": "EQ", + "gas": 2896568, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xb0f2b72a", + "0xb0f2b72a" + ] + }, + { + "pc": 48, + "op": "PUSH2", + "gas": 2896565, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0x1" + ] + }, + { + "pc": 51, + "op": "JUMPI", + "gas": 2896562, + "gasCost": 10, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0x1", + "0xae" + ] + }, + { + "pc": 174, + "op": "JUMPDEST", + "gas": 2896552, + "gasCost": 1, + "depth": 3, + "stack": [ + "0xb0f2b72a" + ] + }, + { + "pc": 175, + "op": "CALLVALUE", + "gas": 2896551, + "gasCost": 2, + "depth": 3, + "stack": [ + "0xb0f2b72a" + ] + }, + { + "pc": 176, + "op": "DUP1", + "gas": 2896549, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0x0" + ] + }, + { + "pc": 177, + "op": "ISZERO", + "gas": 2896546, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0x0", + "0x0" + ] + }, + { + "pc": 178, + "op": "PUSH2", + "gas": 2896543, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0x0", + "0x1" + ] + }, + { + "pc": 181, + "op": "JUMPI", + "gas": 2896540, + "gasCost": 10, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0x0", + "0x1", + "0xba" + ] + }, + { + "pc": 186, + "op": "JUMPDEST", + "gas": 2896530, + "gasCost": 1, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0x0" + ] + }, + { + "pc": 187, + "op": "POP", + "gas": 2896529, + "gasCost": 2, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0x0" + ] + }, + { + "pc": 188, + "op": "PUSH2", + "gas": 2896527, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a" + ] + }, + { + "pc": 191, + "op": "PUSH1", + "gas": 2896524, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5" + ] + }, + { + "pc": 193, + "op": "DUP1", + "gas": 2896521, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0x4" + ] + }, + { + "pc": 194, + "op": "CALLDATASIZE", + "gas": 2896518, + "gasCost": 2, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0x4", + "0x4" + ] + }, + { + "pc": 195, + "op": "SUB", + "gas": 2896516, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0x4", + "0x4", + "0x24" + ] + }, + { + "pc": 196, + "op": "DUP2", + "gas": 2896513, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0x4", + "0x20" + ] + }, + { + "pc": 197, + "op": "ADD", + "gas": 2896510, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0x4", + "0x20", + "0x4" + ] + }, + { + "pc": 198, + "op": "SWAP1", + "gas": 2896507, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0x4", + "0x24" + ] + }, + { + "pc": 199, + "op": "PUSH2", + "gas": 2896504, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0x24", + "0x4" + ] + }, + { + "pc": 202, + "op": "SWAP2", + "gas": 2896501, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0x24", + "0x4", + "0xd0" + ] + }, + { + "pc": 203, + "op": "SWAP1", + "gas": 2896498, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x4", + "0x24" + ] + }, + { + "pc": 204, + "op": "PUSH2", + "gas": 2896495, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4" + ] + }, + { + "pc": 207, + "op": "JUMP", + "gas": 2896492, + "gasCost": 8, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x1d7" + ] + }, + { + "pc": 471, + "op": "JUMPDEST", + "gas": 2896484, + "gasCost": 1, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4" + ] + }, + { + "pc": 472, + "op": "PUSH1", + "gas": 2896483, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4" + ] + }, + { + "pc": 474, + "op": "PUSH1", + "gas": 2896480, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 476, + "op": "DUP3", + "gas": 2896477, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x20" + ] + }, + { + "pc": 477, + "op": "DUP5", + "gas": 2896474, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x20", + "0x4" + ] + }, + { + "pc": 478, + "op": "SUB", + "gas": 2896471, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x20", + "0x4", + "0x24" + ] + }, + { + "pc": 479, + "op": "SLT", + "gas": 2896468, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x20", + "0x20" + ] + }, + { + "pc": 480, + "op": "ISZERO", + "gas": 2896465, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0" + ] + }, + { + "pc": 481, + "op": "PUSH2", + "gas": 2896462, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x1" + ] + }, + { + "pc": 484, + "op": "JUMPI", + "gas": 2896459, + "gasCost": 10, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x1", + "0x1e9" + ] + }, + { + "pc": 489, + "op": "JUMPDEST", + "gas": 2896449, + "gasCost": 1, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 490, + "op": "PUSH1", + "gas": 2896448, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 492, + "op": "PUSH2", + "gas": 2896445, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0" + ] + }, + { + "pc": 495, + "op": "DUP5", + "gas": 2896442, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7" + ] + }, + { + "pc": 496, + "op": "DUP3", + "gas": 2896439, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24" + ] + }, + { + "pc": 497, + "op": "DUP6", + "gas": 2896436, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x0" + ] + }, + { + "pc": 498, + "op": "ADD", + "gas": 2896433, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x0", + "0x4" + ] + }, + { + "pc": 499, + "op": "PUSH2", + "gas": 2896430, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4" + ] + }, + { + "pc": 502, + "op": "JUMP", + "gas": 2896427, + "gasCost": 8, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x1c2" + ] + }, + { + "pc": 450, + "op": "JUMPDEST", + "gas": 2896419, + "gasCost": 1, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4" + ] + }, + { + "pc": 451, + "op": "PUSH1", + "gas": 2896418, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4" + ] + }, + { + "pc": 453, + "op": "DUP2", + "gas": 2896415, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 454, + "op": "CALLDATALOAD", + "gas": 2896412, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x0", + "0x4" + ] + }, + { + "pc": 455, + "op": "SWAP1", + "gas": 2896409, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x0", + "0x182cb06a45a" + ] + }, + { + "pc": 456, + "op": "POP", + "gas": 2896406, + "gasCost": 2, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cb06a45a", + "0x0" + ] + }, + { + "pc": 457, + "op": "PUSH2", + "gas": 2896404, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cb06a45a" + ] + }, + { + "pc": 460, + "op": "DUP2", + "gas": 2896401, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cb06a45a", + "0x1d1" + ] + }, + { + "pc": 461, + "op": "PUSH2", + "gas": 2896398, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cb06a45a", + "0x1d1", + "0x182cb06a45a" + ] + }, + { + "pc": 464, + "op": "JUMP", + "gas": 2896395, + "gasCost": 8, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cb06a45a", + "0x1d1", + "0x182cb06a45a", + "0x2b1" + ] + }, + { + "pc": 689, + "op": "JUMPDEST", + "gas": 2896387, + "gasCost": 1, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cb06a45a", + "0x1d1", + "0x182cb06a45a" + ] + }, + { + "pc": 690, + "op": "PUSH2", + "gas": 2896386, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cb06a45a", + "0x1d1", + "0x182cb06a45a" + ] + }, + { + "pc": 693, + "op": "DUP2", + "gas": 2896383, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cb06a45a", + "0x1d1", + "0x182cb06a45a", + "0x2ba" + ] + }, + { + "pc": 694, + "op": "PUSH2", + "gas": 2896380, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cb06a45a", + "0x1d1", + "0x182cb06a45a", + "0x2ba", + "0x182cb06a45a" + ] + }, + { + "pc": 697, + "op": "JUMP", + "gas": 2896377, + "gasCost": 8, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cb06a45a", + "0x1d1", + "0x182cb06a45a", + "0x2ba", + "0x182cb06a45a", + "0x27e" + ] + }, + { + "pc": 638, + "op": "JUMPDEST", + "gas": 2896369, + "gasCost": 1, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cb06a45a", + "0x1d1", + "0x182cb06a45a", + "0x2ba", + "0x182cb06a45a" + ] + }, + { + "pc": 639, + "op": "PUSH1", + "gas": 2896368, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cb06a45a", + "0x1d1", + "0x182cb06a45a", + "0x2ba", + "0x182cb06a45a" + ] + }, + { + "pc": 641, + "op": "DUP2", + "gas": 2896365, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cb06a45a", + "0x1d1", + "0x182cb06a45a", + "0x2ba", + "0x182cb06a45a", + "0x0" + ] + }, + { + "pc": 642, + "op": "SWAP1", + "gas": 2896362, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cb06a45a", + "0x1d1", + "0x182cb06a45a", + "0x2ba", + "0x182cb06a45a", + "0x0", + "0x182cb06a45a" + ] + }, + { + "pc": 643, + "op": "POP", + "gas": 2896359, + "gasCost": 2, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cb06a45a", + "0x1d1", + "0x182cb06a45a", + "0x2ba", + "0x182cb06a45a", + "0x182cb06a45a", + "0x0" + ] + }, + { + "pc": 644, + "op": "SWAP2", + "gas": 2896357, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cb06a45a", + "0x1d1", + "0x182cb06a45a", + "0x2ba", + "0x182cb06a45a", + "0x182cb06a45a" + ] + }, + { + "pc": 645, + "op": "SWAP1", + "gas": 2896354, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cb06a45a", + "0x1d1", + "0x182cb06a45a", + "0x182cb06a45a", + "0x182cb06a45a", + "0x2ba" + ] + }, + { + "pc": 646, + "op": "POP", + "gas": 2896351, + "gasCost": 2, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cb06a45a", + "0x1d1", + "0x182cb06a45a", + "0x182cb06a45a", + "0x2ba", + "0x182cb06a45a" + ] + }, + { + "pc": 647, + "op": "JUMP", + "gas": 2896349, + "gasCost": 8, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cb06a45a", + "0x1d1", + "0x182cb06a45a", + "0x182cb06a45a", + "0x2ba" + ] + }, + { + "pc": 698, + "op": "JUMPDEST", + "gas": 2896341, + "gasCost": 1, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cb06a45a", + "0x1d1", + "0x182cb06a45a", + "0x182cb06a45a" + ] + }, + { + "pc": 699, + "op": "DUP2", + "gas": 2896340, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cb06a45a", + "0x1d1", + "0x182cb06a45a", + "0x182cb06a45a" + ] + }, + { + "pc": 700, + "op": "EQ", + "gas": 2896337, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cb06a45a", + "0x1d1", + "0x182cb06a45a", + "0x182cb06a45a", + "0x182cb06a45a" + ] + }, + { + "pc": 701, + "op": "PUSH2", + "gas": 2896334, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cb06a45a", + "0x1d1", + "0x182cb06a45a", + "0x1" + ] + }, + { + "pc": 704, + "op": "JUMPI", + "gas": 2896331, + "gasCost": 10, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cb06a45a", + "0x1d1", + "0x182cb06a45a", + "0x1", + "0x2c5" + ] + }, + { + "pc": 709, + "op": "JUMPDEST", + "gas": 2896321, + "gasCost": 1, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cb06a45a", + "0x1d1", + "0x182cb06a45a" + ] + }, + { + "pc": 710, + "op": "POP", + "gas": 2896320, + "gasCost": 2, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cb06a45a", + "0x1d1", + "0x182cb06a45a" + ] + }, + { + "pc": 711, + "op": "JUMP", + "gas": 2896318, + "gasCost": 8, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cb06a45a", + "0x1d1" + ] + }, + { + "pc": 465, + "op": "JUMPDEST", + "gas": 2896310, + "gasCost": 1, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cb06a45a" + ] + }, + { + "pc": 466, + "op": "SWAP3", + "gas": 2896309, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cb06a45a" + ] + }, + { + "pc": 467, + "op": "SWAP2", + "gas": 2896306, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x182cb06a45a", + "0x24", + "0x4", + "0x1f7" + ] + }, + { + "pc": 468, + "op": "POP", + "gas": 2896303, + "gasCost": 2, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x182cb06a45a", + "0x1f7", + "0x4", + "0x24" + ] + }, + { + "pc": 469, + "op": "POP", + "gas": 2896301, + "gasCost": 2, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x182cb06a45a", + "0x1f7", + "0x4" + ] + }, + { + "pc": 470, + "op": "JUMP", + "gas": 2896299, + "gasCost": 8, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x182cb06a45a", + "0x1f7" + ] + }, + { + "pc": 503, + "op": "JUMPDEST", + "gas": 2896291, + "gasCost": 1, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x182cb06a45a" + ] + }, + { + "pc": 504, + "op": "SWAP2", + "gas": 2896290, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x0", + "0x0", + "0x182cb06a45a" + ] + }, + { + "pc": 505, + "op": "POP", + "gas": 2896287, + "gasCost": 2, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x182cb06a45a", + "0x0", + "0x0" + ] + }, + { + "pc": 506, + "op": "POP", + "gas": 2896285, + "gasCost": 2, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x182cb06a45a", + "0x0" + ] + }, + { + "pc": 507, + "op": "SWAP3", + "gas": 2896283, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0xd0", + "0x24", + "0x4", + "0x182cb06a45a" + ] + }, + { + "pc": 508, + "op": "SWAP2", + "gas": 2896280, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0x182cb06a45a", + "0x24", + "0x4", + "0xd0" + ] + }, + { + "pc": 509, + "op": "POP", + "gas": 2896277, + "gasCost": 2, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0x182cb06a45a", + "0xd0", + "0x4", + "0x24" + ] + }, + { + "pc": 510, + "op": "POP", + "gas": 2896275, + "gasCost": 2, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0x182cb06a45a", + "0xd0", + "0x4" + ] + }, + { + "pc": 511, + "op": "JUMP", + "gas": 2896273, + "gasCost": 8, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0x182cb06a45a", + "0xd0" + ] + }, + { + "pc": 208, + "op": "JUMPDEST", + "gas": 2896265, + "gasCost": 1, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0x182cb06a45a" + ] + }, + { + "pc": 209, + "op": "PUSH2", + "gas": 2896264, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0x182cb06a45a" + ] + }, + { + "pc": 212, + "op": "JUMP", + "gas": 2896261, + "gasCost": 8, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0x182cb06a45a", + "0x158" + ] + }, + { + "pc": 344, + "op": "JUMPDEST", + "gas": 2896253, + "gasCost": 1, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0x182cb06a45a" + ] + }, + { + "pc": 345, + "op": "DUP1", + "gas": 2896252, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0x182cb06a45a" + ] + }, + { + "pc": 346, + "op": "PUSH1", + "gas": 2896249, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0x182cb06a45a", + "0x182cb06a45a" + ] + }, + { + "pc": 348, + "op": "DUP2", + "gas": 2896246, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0x182cb06a45a", + "0x182cb06a45a", + "0x0" + ] + }, + { + "pc": 349, + "op": "SWAP1", + "gas": 2896243, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0x182cb06a45a", + "0x182cb06a45a", + "0x0", + "0x182cb06a45a" + ] + }, + { + "pc": 350, + "op": "SSTORE", + "gas": 2896240, + "gasCost": 5000, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0x182cb06a45a", + "0x182cb06a45a", + "0x182cb06a45a", + "0x0" + ], + "storage": { + "0x0000000000000000000000000000000000000000000000000000000000000000": "0x00000000000000000000000000000000000000000000000000000182cb06a45a" + }, + "extraData": { + "proofList": [ + { + "address": "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "nonce": 1, + "balance": "0x0", + "codeHash": "0x4ee2afb169bef88abed9792edc0230c2cda9c19a48639d2db199479f1176928e", + "storage": { + "key": "0x0000000000000000000000000000000000000000000000000000000000000000", + "value": "0x00000000000000000000000000000000000000000000000000000182cae4f502" + } + } + ] + } + }, + { + "pc": 351, + "op": "POP", + "gas": 2891240, + "gasCost": 2, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0x182cb06a45a", + "0x182cb06a45a" + ] + }, + { + "pc": 352, + "op": "POP", + "gas": 2891238, + "gasCost": 2, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5", + "0x182cb06a45a" + ] + }, + { + "pc": 353, + "op": "JUMP", + "gas": 2891236, + "gasCost": 8, + "depth": 3, + "stack": [ + "0xb0f2b72a", + "0xd5" + ] + }, + { + "pc": 213, + "op": "JUMPDEST", + "gas": 2891228, + "gasCost": 1, + "depth": 3, + "stack": [ + "0xb0f2b72a" + ] + }, + { + "pc": 214, + "op": "STOP", + "gas": 2891227, + "gasCost": 0, + "depth": 3, + "stack": [ + "0xb0f2b72a" + ] + }, + { + "pc": 513, + "op": "ISZERO", + "gas": 2937205, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0xa4", + "0x1" + ] + }, + { + "pc": 514, + "op": "DUP1", + "gas": 2937202, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0xa4", + "0x0" + ] + }, + { + "pc": 515, + "op": "ISZERO", + "gas": 2937199, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0xa4", + "0x0", + "0x0" + ] + }, + { + "pc": 516, + "op": "PUSH2", + "gas": 2937196, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0xa4", + "0x0", + "0x1" + ] + }, + { + "pc": 519, + "op": "JUMPI", + "gas": 2937193, + "gasCost": 10, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0xa4", + "0x0", + "0x1", + "0x211" + ] + }, + { + "pc": 529, + "op": "JUMPDEST", + "gas": 2937183, + "gasCost": 1, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0xa4", + "0x0" + ] + }, + { + "pc": 530, + "op": "POP", + "gas": 2937182, + "gasCost": 2, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0xa4", + "0x0" + ] + }, + { + "pc": 531, + "op": "POP", + "gas": 2937180, + "gasCost": 2, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a", + "0xa4" + ] + }, + { + "pc": 532, + "op": "POP", + "gas": 2937178, + "gasCost": 2, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xb0f2b72a" + ] + }, + { + "pc": 533, + "op": "POP", + "gas": 2937176, + "gasCost": 2, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4" + ] + }, + { + "pc": 534, + "op": "POP", + "gas": 2937174, + "gasCost": 2, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4" + ] + }, + { + "pc": 535, + "op": "POP", + "gas": 2937172, + "gasCost": 2, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5", + "0x182cb06a45a" + ] + }, + { + "pc": 536, + "op": "JUMP", + "gas": 2937170, + "gasCost": 8, + "depth": 2, + "stack": [ + "0xb0f2b72a", + "0xa5" + ] + }, + { + "pc": 165, + "op": "JUMPDEST", + "gas": 2937162, + "gasCost": 1, + "depth": 2, + "stack": [ + "0xb0f2b72a" + ] + }, + { + "pc": 166, + "op": "STOP", + "gas": 2937161, + "gasCost": 0, + "depth": 2, + "stack": [ + "0xb0f2b72a" + ] + }, + { + "pc": 621, + "op": "ISZERO", + "gas": 2983957, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0xa4", + "0x1" + ] + }, + { + "pc": 622, + "op": "DUP1", + "gas": 2983954, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0xa4", + "0x0" + ] + }, + { + "pc": 623, + "op": "ISZERO", + "gas": 2983951, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0xa4", + "0x0", + "0x0" + ] + }, + { + "pc": 624, + "op": "PUSH2", + "gas": 2983948, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0xa4", + "0x0", + "0x1" + ] + }, + { + "pc": 627, + "op": "JUMPI", + "gas": 2983945, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0xa4", + "0x0", + "0x1", + "0x27d" + ] + }, + { + "pc": 637, + "op": "JUMPDEST", + "gas": 2983935, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0xa4", + "0x0" + ] + }, + { + "pc": 638, + "op": "POP", + "gas": 2983934, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0xa4", + "0x0" + ] + }, + { + "pc": 639, + "op": "POP", + "gas": 2983932, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a", + "0xa4" + ] + }, + { + "pc": 640, + "op": "POP", + "gas": 2983930, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xb0f2b72a" + ] + }, + { + "pc": 641, + "op": "POP", + "gas": 2983928, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5" + ] + }, + { + "pc": 642, + "op": "DUP2", + "gas": 2983926, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5" + ] + }, + { + "pc": 643, + "op": "PUSH1", + "gas": 2983923, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x182cb06a45a" + ] + }, + { + "pc": 645, + "op": "DUP2", + "gas": 2983920, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x182cb06a45a", + "0x1" + ] + }, + { + "pc": 646, + "op": "SWAP1", + "gas": 2983917, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x182cb06a45a", + "0x1", + "0x182cb06a45a" + ] + }, + { + "pc": 647, + "op": "SSTORE", + "gas": 2983914, + "gasCost": 22100, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x182cb06a45a", + "0x182cb06a45a", + "0x1" + ], + "storage": { + "0x0000000000000000000000000000000000000000000000000000000000000000": "0x000000000000000000000000ed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x0000000000000000000000000000000000000000000000000000000000000001": "0x00000000000000000000000000000000000000000000000000000182cb06a45a" + }, + "extraData": { + "proofList": [ + { + "address": "0x9cb1b5b04b4dcd5c3ab9bafd2c0ad4fd8a9b3d29", + "nonce": 1, + "balance": "0x0", + "codeHash": "0xb058876f2963a74146d29465bbd582cbc6f2c03a2ec5adc6e6d74513470072a4", + "storage": { + "key": "0x0000000000000000000000000000000000000000000000000000000000000001", + "value": "0x0000000000000000000000000000000000000000000000000000000000000000" + } + } + ] + } + }, + { + "pc": 648, + "op": "POP", + "gas": 2961814, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x182cb06a45a" + ] + }, + { + "pc": 649, + "op": "PUSH1", + "gas": 2961812, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5" + ] + }, + { + "pc": 651, + "op": "MLOAD", + "gas": 2961809, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x40" + ] + }, + { + "pc": 652, + "op": "PUSH32", + "gas": 2961806, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x80" + ] + }, + { + "pc": 685, + "op": "DUP2", + "gas": 2961803, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x80", + "0x8c379a000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 686, + "op": "MSTORE", + "gas": 2961800, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x80", + "0x8c379a000000000000000000000000000000000000000000000000000000000", + "0x80" + ] + }, + { + "pc": 687, + "op": "PUSH1", + "gas": 2961797, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x80" + ] + }, + { + "pc": 689, + "op": "ADD", + "gas": 2961794, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x80", + "0x4" + ] + }, + { + "pc": 690, + "op": "PUSH2", + "gas": 2961791, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x84" + ] + }, + { + "pc": 693, + "op": "SWAP1", + "gas": 2961788, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x84", + "0x2ba" + ] + }, + { + "pc": 694, + "op": "PUSH2", + "gas": 2961785, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x2ba", + "0x84" + ] + }, + { + "pc": 697, + "op": "JUMP", + "gas": 2961782, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x2ba", + "0x84", + "0x591" + ] + }, + { + "pc": 1425, + "op": "JUMPDEST", + "gas": 2961774, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x2ba", + "0x84" + ] + }, + { + "pc": 1426, + "op": "PUSH1", + "gas": 2961773, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x2ba", + "0x84" + ] + }, + { + "pc": 1428, + "op": "PUSH1", + "gas": 2961770, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x2ba", + "0x84", + "0x0" + ] + }, + { + "pc": 1430, + "op": "DUP3", + "gas": 2961767, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x2ba", + "0x84", + "0x0", + "0x20" + ] + }, + { + "pc": 1431, + "op": "ADD", + "gas": 2961764, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x2ba", + "0x84", + "0x0", + "0x20", + "0x84" + ] + }, + { + "pc": 1432, + "op": "SWAP1", + "gas": 2961761, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x2ba", + "0x84", + "0x0", + "0xa4" + ] + }, + { + "pc": 1433, + "op": "POP", + "gas": 2961758, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x2ba", + "0x84", + "0xa4", + "0x0" + ] + }, + { + "pc": 1434, + "op": "DUP2", + "gas": 2961756, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x2ba", + "0x84", + "0xa4" + ] + }, + { + "pc": 1435, + "op": "DUP2", + "gas": 2961753, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x2ba", + "0x84", + "0xa4", + "0x84" + ] + }, + { + "pc": 1436, + "op": "SUB", + "gas": 2961750, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x2ba", + "0x84", + "0xa4", + "0x84", + "0xa4" + ] + }, + { + "pc": 1437, + "op": "PUSH1", + "gas": 2961747, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x2ba", + "0x84", + "0xa4", + "0x20" + ] + }, + { + "pc": 1439, + "op": "DUP4", + "gas": 2961744, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x2ba", + "0x84", + "0xa4", + "0x20", + "0x0" + ] + }, + { + "pc": 1440, + "op": "ADD", + "gas": 2961741, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x2ba", + "0x84", + "0xa4", + "0x20", + "0x0", + "0x84" + ] + }, + { + "pc": 1441, + "op": "MSTORE", + "gas": 2961738, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x2ba", + "0x84", + "0xa4", + "0x20", + "0x84" + ] + }, + { + "pc": 1442, + "op": "PUSH2", + "gas": 2961735, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x2ba", + "0x84", + "0xa4" + ] + }, + { + "pc": 1445, + "op": "DUP2", + "gas": 2961732, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x2ba", + "0x84", + "0xa4", + "0x5aa" + ] + }, + { + "pc": 1446, + "op": "PUSH2", + "gas": 2961729, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x2ba", + "0x84", + "0xa4", + "0x5aa", + "0xa4" + ] + }, + { + "pc": 1449, + "op": "JUMP", + "gas": 2961726, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x2ba", + "0x84", + "0xa4", + "0x5aa", + "0xa4", + "0x544" + ] + }, + { + "pc": 1348, + "op": "JUMPDEST", + "gas": 2961718, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x2ba", + "0x84", + "0xa4", + "0x5aa", + "0xa4" + ] + }, + { + "pc": 1349, + "op": "PUSH1", + "gas": 2961717, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x2ba", + "0x84", + "0xa4", + "0x5aa", + "0xa4" + ] + }, + { + "pc": 1351, + "op": "PUSH2", + "gas": 2961714, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x2ba", + "0x84", + "0xa4", + "0x5aa", + "0xa4", + "0x0" + ] + }, + { + "pc": 1354, + "op": "PUSH1", + "gas": 2961711, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x2ba", + "0x84", + "0xa4", + "0x5aa", + "0xa4", + "0x0", + "0x551" + ] + }, + { + "pc": 1356, + "op": "DUP4", + "gas": 2961708, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x2ba", + "0x84", + "0xa4", + "0x5aa", + "0xa4", + "0x0", + "0x551", + "0xc" + ] + }, + { + "pc": 1357, + "op": "PUSH2", + "gas": 2961705, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x2ba", + "0x84", + "0xa4", + "0x5aa", + "0xa4", + "0x0", + "0x551", + "0xc", + "0xa4" + ] + }, + { + "pc": 1360, + "op": "JUMP", + "gas": 2961702, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x2ba", + "0x84", + "0xa4", + "0x5aa", + "0xa4", + "0x0", + "0x551", + "0xc", + "0xa4", + "0x5cc" + ] + }, + { + "pc": 1484, + "op": "JUMPDEST", + "gas": 2961694, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x2ba", + "0x84", + "0xa4", + "0x5aa", + "0xa4", + "0x0", + "0x551", + "0xc", + "0xa4" + ] + }, + { + "pc": 1485, + "op": "PUSH1", + "gas": 2961693, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x2ba", + "0x84", + "0xa4", + "0x5aa", + "0xa4", + "0x0", + "0x551", + "0xc", + "0xa4" + ] + }, + { + "pc": 1487, + "op": "DUP3", + "gas": 2961690, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x2ba", + "0x84", + "0xa4", + "0x5aa", + "0xa4", + "0x0", + "0x551", + "0xc", + "0xa4", + "0x0" + ] + }, + { + "pc": 1488, + "op": "DUP3", + "gas": 2961687, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x2ba", + "0x84", + "0xa4", + "0x5aa", + "0xa4", + "0x0", + "0x551", + "0xc", + "0xa4", + "0x0", + "0xc" + ] + }, + { + "pc": 1489, + "op": "MSTORE", + "gas": 2961684, + "gasCost": 6, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x2ba", + "0x84", + "0xa4", + "0x5aa", + "0xa4", + "0x0", + "0x551", + "0xc", + "0xa4", + "0x0", + "0xc", + "0xa4" + ] + }, + { + "pc": 1490, + "op": "PUSH1", + "gas": 2961678, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x2ba", + "0x84", + "0xa4", + "0x5aa", + "0xa4", + "0x0", + "0x551", + "0xc", + "0xa4", + "0x0" + ] + }, + { + "pc": 1492, + "op": "DUP3", + "gas": 2961675, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x2ba", + "0x84", + "0xa4", + "0x5aa", + "0xa4", + "0x0", + "0x551", + "0xc", + "0xa4", + "0x0", + "0x20" + ] + }, + { + "pc": 1493, + "op": "ADD", + "gas": 2961672, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x2ba", + "0x84", + "0xa4", + "0x5aa", + "0xa4", + "0x0", + "0x551", + "0xc", + "0xa4", + "0x0", + "0x20", + "0xa4" + ] + }, + { + "pc": 1494, + "op": "SWAP1", + "gas": 2961669, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x2ba", + "0x84", + "0xa4", + "0x5aa", + "0xa4", + "0x0", + "0x551", + "0xc", + "0xa4", + "0x0", + "0xc4" + ] + }, + { + "pc": 1495, + "op": "POP", + "gas": 2961666, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x2ba", + "0x84", + "0xa4", + "0x5aa", + "0xa4", + "0x0", + "0x551", + "0xc", + "0xa4", + "0xc4", + "0x0" + ] + }, + { + "pc": 1496, + "op": "SWAP3", + "gas": 2961664, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x2ba", + "0x84", + "0xa4", + "0x5aa", + "0xa4", + "0x0", + "0x551", + "0xc", + "0xa4", + "0xc4" + ] + }, + { + "pc": 1497, + "op": "SWAP2", + "gas": 2961661, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x2ba", + "0x84", + "0xa4", + "0x5aa", + "0xa4", + "0x0", + "0xc4", + "0xc", + "0xa4", + "0x551" + ] + }, + { + "pc": 1498, + "op": "POP", + "gas": 2961658, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x2ba", + "0x84", + "0xa4", + "0x5aa", + "0xa4", + "0x0", + "0xc4", + "0x551", + "0xa4", + "0xc" + ] + }, + { + "pc": 1499, + "op": "POP", + "gas": 2961656, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x2ba", + "0x84", + "0xa4", + "0x5aa", + "0xa4", + "0x0", + "0xc4", + "0x551", + "0xa4" + ] + }, + { + "pc": 1500, + "op": "JUMP", + "gas": 2961654, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x2ba", + "0x84", + "0xa4", + "0x5aa", + "0xa4", + "0x0", + "0xc4", + "0x551" + ] + }, + { + "pc": 1361, + "op": "JUMPDEST", + "gas": 2961646, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x2ba", + "0x84", + "0xa4", + "0x5aa", + "0xa4", + "0x0", + "0xc4" + ] + }, + { + "pc": 1362, + "op": "SWAP2", + "gas": 2961645, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x2ba", + "0x84", + "0xa4", + "0x5aa", + "0xa4", + "0x0", + "0xc4" + ] + }, + { + "pc": 1363, + "op": "POP", + "gas": 2961642, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x2ba", + "0x84", + "0xa4", + "0x5aa", + "0xc4", + "0x0", + "0xa4" + ] + }, + { + "pc": 1364, + "op": "PUSH2", + "gas": 2961640, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x2ba", + "0x84", + "0xa4", + "0x5aa", + "0xc4", + "0x0" + ] + }, + { + "pc": 1367, + "op": "DUP3", + "gas": 2961637, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x2ba", + "0x84", + "0xa4", + "0x5aa", + "0xc4", + "0x0", + "0x55c" + ] + }, + { + "pc": 1368, + "op": "PUSH2", + "gas": 2961634, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x2ba", + "0x84", + "0xa4", + "0x5aa", + "0xc4", + "0x0", + "0x55c", + "0xc4" + ] + }, + { + "pc": 1371, + "op": "JUMP", + "gas": 2961631, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x2ba", + "0x84", + "0xa4", + "0x5aa", + "0xc4", + "0x0", + "0x55c", + "0xc4", + "0x619" + ] + }, + { + "pc": 1561, + "op": "JUMPDEST", + "gas": 2961623, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x2ba", + "0x84", + "0xa4", + "0x5aa", + "0xc4", + "0x0", + "0x55c", + "0xc4" + ] + }, + { + "pc": 1562, + "op": "PUSH32", + "gas": 2961622, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x2ba", + "0x84", + "0xa4", + "0x5aa", + "0xc4", + "0x0", + "0x55c", + "0xc4" + ] + }, + { + "pc": 1595, + "op": "PUSH1", + "gas": 2961619, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x2ba", + "0x84", + "0xa4", + "0x5aa", + "0xc4", + "0x0", + "0x55c", + "0xc4", + "0x64656c696265726174656c790000000000000000000000000000000000000000" + ] + }, + { + "pc": 1597, + "op": "DUP3", + "gas": 2961616, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x2ba", + "0x84", + "0xa4", + "0x5aa", + "0xc4", + "0x0", + "0x55c", + "0xc4", + "0x64656c696265726174656c790000000000000000000000000000000000000000", + "0x0" + ] + }, + { + "pc": 1598, + "op": "ADD", + "gas": 2961613, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x2ba", + "0x84", + "0xa4", + "0x5aa", + "0xc4", + "0x0", + "0x55c", + "0xc4", + "0x64656c696265726174656c790000000000000000000000000000000000000000", + "0x0", + "0xc4" + ] + }, + { + "pc": 1599, + "op": "MSTORE", + "gas": 2961610, + "gasCost": 6, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x2ba", + "0x84", + "0xa4", + "0x5aa", + "0xc4", + "0x0", + "0x55c", + "0xc4", + "0x64656c696265726174656c790000000000000000000000000000000000000000", + "0xc4" + ] + }, + { + "pc": 1600, + "op": "POP", + "gas": 2961604, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x2ba", + "0x84", + "0xa4", + "0x5aa", + "0xc4", + "0x0", + "0x55c", + "0xc4" + ] + }, + { + "pc": 1601, + "op": "JUMP", + "gas": 2961602, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x2ba", + "0x84", + "0xa4", + "0x5aa", + "0xc4", + "0x0", + "0x55c" + ] + }, + { + "pc": 1372, + "op": "JUMPDEST", + "gas": 2961594, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x2ba", + "0x84", + "0xa4", + "0x5aa", + "0xc4", + "0x0" + ] + }, + { + "pc": 1373, + "op": "PUSH1", + "gas": 2961593, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x2ba", + "0x84", + "0xa4", + "0x5aa", + "0xc4", + "0x0" + ] + }, + { + "pc": 1375, + "op": "DUP3", + "gas": 2961590, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x2ba", + "0x84", + "0xa4", + "0x5aa", + "0xc4", + "0x0", + "0x20" + ] + }, + { + "pc": 1376, + "op": "ADD", + "gas": 2961587, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x2ba", + "0x84", + "0xa4", + "0x5aa", + "0xc4", + "0x0", + "0x20", + "0xc4" + ] + }, + { + "pc": 1377, + "op": "SWAP1", + "gas": 2961584, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x2ba", + "0x84", + "0xa4", + "0x5aa", + "0xc4", + "0x0", + "0xe4" + ] + }, + { + "pc": 1378, + "op": "POP", + "gas": 2961581, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x2ba", + "0x84", + "0xa4", + "0x5aa", + "0xc4", + "0xe4", + "0x0" + ] + }, + { + "pc": 1379, + "op": "SWAP2", + "gas": 2961579, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x2ba", + "0x84", + "0xa4", + "0x5aa", + "0xc4", + "0xe4" + ] + }, + { + "pc": 1380, + "op": "SWAP1", + "gas": 2961576, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x2ba", + "0x84", + "0xa4", + "0xe4", + "0xc4", + "0x5aa" + ] + }, + { + "pc": 1381, + "op": "POP", + "gas": 2961573, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x2ba", + "0x84", + "0xa4", + "0xe4", + "0x5aa", + "0xc4" + ] + }, + { + "pc": 1382, + "op": "JUMP", + "gas": 2961571, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x2ba", + "0x84", + "0xa4", + "0xe4", + "0x5aa" + ] + }, + { + "pc": 1450, + "op": "JUMPDEST", + "gas": 2961563, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x2ba", + "0x84", + "0xa4", + "0xe4" + ] + }, + { + "pc": 1451, + "op": "SWAP1", + "gas": 2961562, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x2ba", + "0x84", + "0xa4", + "0xe4" + ] + }, + { + "pc": 1452, + "op": "POP", + "gas": 2961559, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x2ba", + "0x84", + "0xe4", + "0xa4" + ] + }, + { + "pc": 1453, + "op": "SWAP2", + "gas": 2961557, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x2ba", + "0x84", + "0xe4" + ] + }, + { + "pc": 1454, + "op": "SWAP1", + "gas": 2961554, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xe4", + "0x84", + "0x2ba" + ] + }, + { + "pc": 1455, + "op": "POP", + "gas": 2961551, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xe4", + "0x2ba", + "0x84" + ] + }, + { + "pc": 1456, + "op": "JUMP", + "gas": 2961549, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xe4", + "0x2ba" + ] + }, + { + "pc": 698, + "op": "JUMPDEST", + "gas": 2961541, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xe4" + ] + }, + { + "pc": 699, + "op": "PUSH1", + "gas": 2961540, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xe4" + ] + }, + { + "pc": 701, + "op": "MLOAD", + "gas": 2961537, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xe4", + "0x40" + ] + }, + { + "pc": 702, + "op": "DUP1", + "gas": 2961534, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xe4", + "0x80" + ] + }, + { + "pc": 703, + "op": "SWAP2", + "gas": 2961531, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xe4", + "0x80", + "0x80" + ] + }, + { + "pc": 704, + "op": "SUB", + "gas": 2961528, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x80", + "0x80", + "0xe4" + ] + }, + { + "pc": 705, + "op": "SWAP1", + "gas": 2961525, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x80", + "0x64" + ] + }, + { + "pc": 706, + "op": "REVERT", + "gas": 2961522, + "gasCost": 0, + "depth": 1, + "stack": [ + "0x36864b1b", + "0xd6", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x64", + "0x80" + ] + } + ] + }, + { + "gas": 60207, + "failed": true, + "returnValue": "08c379a00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000c64656c696265726174656c790000000000000000000000000000000000000000", + "from": { + "address": "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "nonce": 236, + "balance": "0x56bc75e2d630ffffffffffffffffffffffffffffffffffff334673bbaf90d2", + "codeHash": "0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470" + }, + "to": { + "address": "0x9cb1b5b04b4dcd5c3ab9bafd2c0ad4fd8a9b3d29", + "nonce": 1, + "balance": "0x0", + "codeHash": "0xb058876f2963a74146d29465bbd582cbc6f2c03a2ec5adc6e6d74513470072a4" + }, + "accountAfter": [ + { + "address": "0x9cb1b5b04b4dcd5c3ab9bafd2c0ad4fd8a9b3d29", + "nonce": 1, + "balance": "0x0", + "codeHash": "0xb058876f2963a74146d29465bbd582cbc6f2c03a2ec5adc6e6d74513470072a4" + }, + { + "address": "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "nonce": 237, + "balance": "0x56bc75e2d630ffffffffffffffffffffffffffffffffffff334673bab02bc8", + "codeHash": "0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470" + } + ], + "codeHash": "0xb058876f2963a74146d29465bbd582cbc6f2c03a2ec5adc6e6d74513470072a4", + "byteCode": "0x608060405234801561001057600080fd5b506004361061007d5760003560e01c80633e23ee431161005b5780633e23ee43146100d8578063651b4aa5146100f6578063a0a4868814610112578063cb4ec52e1461012e5761007d565b8063127017e114610082578063200d2ed21461009e57806336864b1b146100bc575b600080fd5b61009c6004803603810190610097919061050c565b61014a565b005b6100a66101e6565b6040516100b391906105b1565b60405180910390f35b6100d660048036038101906100d1919061050c565b6101f0565b005b6100e06102c3565b6040516100ed9190610576565b60405180910390f35b610110600480360381019061010b919061050c565b6102ec565b005b61012c6004803603810190610127919061050c565b610388565b005b6101486004803603810190610143919061050c565b61045b565b005b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663ed231420836040518263ffffffff1660e01b81526004016101a991906105b1565b600060405180830381600087803b1580156101c357600080fd5b505af11580156101d7573d6000803e3d6000fd5b50505050816001819055505050565b6000600154905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663b0f2b72a836040518263ffffffff1660e01b815260040161024f91906105b1565b600060405180830381600087803b15801561026957600080fd5b505af115801561027d573d6000803e3d6000fd5b50505050816001819055506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016102ba90610591565b60405180910390fd5b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff166321848c46836040518263ffffffff1660e01b815260040161034b91906105b1565b600060405180830381600087803b15801561036557600080fd5b505af1158015610379573d6000803e3d6000fd5b50505050816001819055505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff166321848c46836040518263ffffffff1660e01b81526004016103e791906105b1565b600060405180830381600087803b15801561040157600080fd5b505af1158015610415573d6000803e3d6000fd5b50505050816001819055506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161045290610591565b60405180910390fd5b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663b0f2b72a836040518263ffffffff1660e01b81526004016104ba91906105b1565b600060405180830381600087803b1580156104d457600080fd5b505af11580156104e8573d6000803e3d6000fd5b50505050816001819055505050565b60008135905061050681610642565b92915050565b60006020828403121561051e57600080fd5b600061052c848285016104f7565b91505092915050565b61053e816105dd565b82525050565b6000610551600c836105cc565b915061055c82610619565b602082019050919050565b6105708161060f565b82525050565b600060208201905061058b6000830184610535565b92915050565b600060208201905081810360008301526105aa81610544565b9050919050565b60006020820190506105c66000830184610567565b92915050565b600082825260208201905092915050565b60006105e8826105ef565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b7f64656c696265726174656c790000000000000000000000000000000000000000600082015250565b61064b8161060f565b811461065657600080fd5b5056fea2646970667358221220fc037ef9cac015a49b5d1fa3ef3193503e4aef8398dd3d8a477cd8726cb8d54a64736f6c63430008040033", + "structLogs": [ + { + "pc": 0, + "op": "PUSH1", + "gas": 3000520, + "gasCost": 3, + "depth": 1 + }, + { + "pc": 2, + "op": "PUSH1", + "gas": 3000517, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80" + ] + }, + { + "pc": 4, + "op": "MSTORE", + "gas": 3000514, + "gasCost": 12, + "depth": 1, + "stack": [ + "0x80", + "0x40" + ] + }, + { + "pc": 5, + "op": "CALLVALUE", + "gas": 3000502, + "gasCost": 2, + "depth": 1 + }, + { + "pc": 6, + "op": "DUP1", + "gas": 3000500, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 7, + "op": "ISZERO", + "gas": 3000497, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0", + "0x0" + ] + }, + { + "pc": 8, + "op": "PUSH2", + "gas": 3000494, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0", + "0x1" + ] + }, + { + "pc": 11, + "op": "JUMPI", + "gas": 3000491, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x0", + "0x1", + "0x10" + ] + }, + { + "pc": 16, + "op": "JUMPDEST", + "gas": 3000481, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 17, + "op": "POP", + "gas": 3000480, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 18, + "op": "PUSH1", + "gas": 3000478, + "gasCost": 3, + "depth": 1 + }, + { + "pc": 20, + "op": "CALLDATASIZE", + "gas": 3000475, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x4" + ] + }, + { + "pc": 21, + "op": "LT", + "gas": 3000473, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4", + "0x24" + ] + }, + { + "pc": 22, + "op": "PUSH2", + "gas": 3000470, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 25, + "op": "JUMPI", + "gas": 3000467, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x0", + "0x7d" + ] + }, + { + "pc": 26, + "op": "PUSH1", + "gas": 3000457, + "gasCost": 3, + "depth": 1 + }, + { + "pc": 28, + "op": "CALLDATALOAD", + "gas": 3000454, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 29, + "op": "PUSH1", + "gas": 3000451, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a4868800000000000000000000000000000000000000000000000000000182" + ] + }, + { + "pc": 31, + "op": "SHR", + "gas": 3000448, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a4868800000000000000000000000000000000000000000000000000000182", + "0xe0" + ] + }, + { + "pc": 32, + "op": "DUP1", + "gas": 3000445, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688" + ] + }, + { + "pc": 33, + "op": "PUSH4", + "gas": 3000442, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0xa0a48688" + ] + }, + { + "pc": 38, + "op": "GT", + "gas": 3000439, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0xa0a48688", + "0x3e23ee43" + ] + }, + { + "pc": 39, + "op": "PUSH2", + "gas": 3000436, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x0" + ] + }, + { + "pc": 42, + "op": "JUMPI", + "gas": 3000433, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x0", + "0x5b" + ] + }, + { + "pc": 43, + "op": "DUP1", + "gas": 3000423, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688" + ] + }, + { + "pc": 44, + "op": "PUSH4", + "gas": 3000420, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0xa0a48688" + ] + }, + { + "pc": 49, + "op": "EQ", + "gas": 3000417, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0xa0a48688", + "0x3e23ee43" + ] + }, + { + "pc": 50, + "op": "PUSH2", + "gas": 3000414, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x0" + ] + }, + { + "pc": 53, + "op": "JUMPI", + "gas": 3000411, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x0", + "0xd8" + ] + }, + { + "pc": 54, + "op": "DUP1", + "gas": 3000401, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688" + ] + }, + { + "pc": 55, + "op": "PUSH4", + "gas": 3000398, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0xa0a48688" + ] + }, + { + "pc": 60, + "op": "EQ", + "gas": 3000395, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0xa0a48688", + "0x651b4aa5" + ] + }, + { + "pc": 61, + "op": "PUSH2", + "gas": 3000392, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x0" + ] + }, + { + "pc": 64, + "op": "JUMPI", + "gas": 3000389, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x0", + "0xf6" + ] + }, + { + "pc": 65, + "op": "DUP1", + "gas": 3000379, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688" + ] + }, + { + "pc": 66, + "op": "PUSH4", + "gas": 3000376, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0xa0a48688" + ] + }, + { + "pc": 71, + "op": "EQ", + "gas": 3000373, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0xa0a48688", + "0xa0a48688" + ] + }, + { + "pc": 72, + "op": "PUSH2", + "gas": 3000370, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x1" + ] + }, + { + "pc": 75, + "op": "JUMPI", + "gas": 3000367, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x1", + "0x112" + ] + }, + { + "pc": 274, + "op": "JUMPDEST", + "gas": 3000357, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa0a48688" + ] + }, + { + "pc": 275, + "op": "PUSH2", + "gas": 3000356, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688" + ] + }, + { + "pc": 278, + "op": "PUSH1", + "gas": 3000353, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c" + ] + }, + { + "pc": 280, + "op": "DUP1", + "gas": 3000350, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x4" + ] + }, + { + "pc": 281, + "op": "CALLDATASIZE", + "gas": 3000347, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x4", + "0x4" + ] + }, + { + "pc": 282, + "op": "SUB", + "gas": 3000345, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x4", + "0x4", + "0x24" + ] + }, + { + "pc": 283, + "op": "DUP2", + "gas": 3000342, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x4", + "0x20" + ] + }, + { + "pc": 284, + "op": "ADD", + "gas": 3000339, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x4", + "0x20", + "0x4" + ] + }, + { + "pc": 285, + "op": "SWAP1", + "gas": 3000336, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x4", + "0x24" + ] + }, + { + "pc": 286, + "op": "PUSH2", + "gas": 3000333, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x24", + "0x4" + ] + }, + { + "pc": 289, + "op": "SWAP2", + "gas": 3000330, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x24", + "0x4", + "0x127" + ] + }, + { + "pc": 290, + "op": "SWAP1", + "gas": 3000327, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x127", + "0x4", + "0x24" + ] + }, + { + "pc": 291, + "op": "PUSH2", + "gas": 3000324, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x127", + "0x24", + "0x4" + ] + }, + { + "pc": 294, + "op": "JUMP", + "gas": 3000321, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x127", + "0x24", + "0x4", + "0x50c" + ] + }, + { + "pc": 1292, + "op": "JUMPDEST", + "gas": 3000313, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x127", + "0x24", + "0x4" + ] + }, + { + "pc": 1293, + "op": "PUSH1", + "gas": 3000312, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x127", + "0x24", + "0x4" + ] + }, + { + "pc": 1295, + "op": "PUSH1", + "gas": 3000309, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x127", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 1297, + "op": "DUP3", + "gas": 3000306, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x127", + "0x24", + "0x4", + "0x0", + "0x20" + ] + }, + { + "pc": 1298, + "op": "DUP5", + "gas": 3000303, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x127", + "0x24", + "0x4", + "0x0", + "0x20", + "0x4" + ] + }, + { + "pc": 1299, + "op": "SUB", + "gas": 3000300, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x127", + "0x24", + "0x4", + "0x0", + "0x20", + "0x4", + "0x24" + ] + }, + { + "pc": 1300, + "op": "SLT", + "gas": 3000297, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x127", + "0x24", + "0x4", + "0x0", + "0x20", + "0x20" + ] + }, + { + "pc": 1301, + "op": "ISZERO", + "gas": 3000294, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x127", + "0x24", + "0x4", + "0x0", + "0x0" + ] + }, + { + "pc": 1302, + "op": "PUSH2", + "gas": 3000291, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x127", + "0x24", + "0x4", + "0x0", + "0x1" + ] + }, + { + "pc": 1305, + "op": "JUMPI", + "gas": 3000288, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x127", + "0x24", + "0x4", + "0x0", + "0x1", + "0x51e" + ] + }, + { + "pc": 1310, + "op": "JUMPDEST", + "gas": 3000278, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x127", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 1311, + "op": "PUSH1", + "gas": 3000277, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x127", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 1313, + "op": "PUSH2", + "gas": 3000274, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x127", + "0x24", + "0x4", + "0x0", + "0x0" + ] + }, + { + "pc": 1316, + "op": "DUP5", + "gas": 3000271, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x127", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c" + ] + }, + { + "pc": 1317, + "op": "DUP3", + "gas": 3000268, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x127", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24" + ] + }, + { + "pc": 1318, + "op": "DUP6", + "gas": 3000265, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x127", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x0" + ] + }, + { + "pc": 1319, + "op": "ADD", + "gas": 3000262, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x127", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x0", + "0x4" + ] + }, + { + "pc": 1320, + "op": "PUSH2", + "gas": 3000259, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x127", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4" + ] + }, + { + "pc": 1323, + "op": "JUMP", + "gas": 3000256, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x127", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x4f7" + ] + }, + { + "pc": 1271, + "op": "JUMPDEST", + "gas": 3000248, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x127", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4" + ] + }, + { + "pc": 1272, + "op": "PUSH1", + "gas": 3000247, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x127", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4" + ] + }, + { + "pc": 1274, + "op": "DUP2", + "gas": 3000244, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x127", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 1275, + "op": "CALLDATALOAD", + "gas": 3000241, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x127", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x0", + "0x4" + ] + }, + { + "pc": 1276, + "op": "SWAP1", + "gas": 3000238, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x127", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x0", + "0x182cb06a45a" + ] + }, + { + "pc": 1277, + "op": "POP", + "gas": 3000235, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x127", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x182cb06a45a", + "0x0" + ] + }, + { + "pc": 1278, + "op": "PUSH2", + "gas": 3000233, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x127", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x182cb06a45a" + ] + }, + { + "pc": 1281, + "op": "DUP2", + "gas": 3000230, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x127", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x182cb06a45a", + "0x506" + ] + }, + { + "pc": 1282, + "op": "PUSH2", + "gas": 3000227, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x127", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x182cb06a45a", + "0x506", + "0x182cb06a45a" + ] + }, + { + "pc": 1285, + "op": "JUMP", + "gas": 3000224, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x127", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x182cb06a45a", + "0x506", + "0x182cb06a45a", + "0x642" + ] + }, + { + "pc": 1602, + "op": "JUMPDEST", + "gas": 3000216, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x127", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x182cb06a45a", + "0x506", + "0x182cb06a45a" + ] + }, + { + "pc": 1603, + "op": "PUSH2", + "gas": 3000215, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x127", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x182cb06a45a", + "0x506", + "0x182cb06a45a" + ] + }, + { + "pc": 1606, + "op": "DUP2", + "gas": 3000212, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x127", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x182cb06a45a", + "0x506", + "0x182cb06a45a", + "0x64b" + ] + }, + { + "pc": 1607, + "op": "PUSH2", + "gas": 3000209, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x127", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x182cb06a45a", + "0x506", + "0x182cb06a45a", + "0x64b", + "0x182cb06a45a" + ] + }, + { + "pc": 1610, + "op": "JUMP", + "gas": 3000206, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x127", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x182cb06a45a", + "0x506", + "0x182cb06a45a", + "0x64b", + "0x182cb06a45a", + "0x60f" + ] + }, + { + "pc": 1551, + "op": "JUMPDEST", + "gas": 3000198, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x127", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x182cb06a45a", + "0x506", + "0x182cb06a45a", + "0x64b", + "0x182cb06a45a" + ] + }, + { + "pc": 1552, + "op": "PUSH1", + "gas": 3000197, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x127", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x182cb06a45a", + "0x506", + "0x182cb06a45a", + "0x64b", + "0x182cb06a45a" + ] + }, + { + "pc": 1554, + "op": "DUP2", + "gas": 3000194, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x127", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x182cb06a45a", + "0x506", + "0x182cb06a45a", + "0x64b", + "0x182cb06a45a", + "0x0" + ] + }, + { + "pc": 1555, + "op": "SWAP1", + "gas": 3000191, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x127", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x182cb06a45a", + "0x506", + "0x182cb06a45a", + "0x64b", + "0x182cb06a45a", + "0x0", + "0x182cb06a45a" + ] + }, + { + "pc": 1556, + "op": "POP", + "gas": 3000188, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x127", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x182cb06a45a", + "0x506", + "0x182cb06a45a", + "0x64b", + "0x182cb06a45a", + "0x182cb06a45a", + "0x0" + ] + }, + { + "pc": 1557, + "op": "SWAP2", + "gas": 3000186, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x127", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x182cb06a45a", + "0x506", + "0x182cb06a45a", + "0x64b", + "0x182cb06a45a", + "0x182cb06a45a" + ] + }, + { + "pc": 1558, + "op": "SWAP1", + "gas": 3000183, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x127", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x182cb06a45a", + "0x506", + "0x182cb06a45a", + "0x182cb06a45a", + "0x182cb06a45a", + "0x64b" + ] + }, + { + "pc": 1559, + "op": "POP", + "gas": 3000180, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x127", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x182cb06a45a", + "0x506", + "0x182cb06a45a", + "0x182cb06a45a", + "0x64b", + "0x182cb06a45a" + ] + }, + { + "pc": 1560, + "op": "JUMP", + "gas": 3000178, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x127", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x182cb06a45a", + "0x506", + "0x182cb06a45a", + "0x182cb06a45a", + "0x64b" + ] + }, + { + "pc": 1611, + "op": "JUMPDEST", + "gas": 3000170, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x127", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x182cb06a45a", + "0x506", + "0x182cb06a45a", + "0x182cb06a45a" + ] + }, + { + "pc": 1612, + "op": "DUP2", + "gas": 3000169, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x127", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x182cb06a45a", + "0x506", + "0x182cb06a45a", + "0x182cb06a45a" + ] + }, + { + "pc": 1613, + "op": "EQ", + "gas": 3000166, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x127", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x182cb06a45a", + "0x506", + "0x182cb06a45a", + "0x182cb06a45a", + "0x182cb06a45a" + ] + }, + { + "pc": 1614, + "op": "PUSH2", + "gas": 3000163, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x127", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x182cb06a45a", + "0x506", + "0x182cb06a45a", + "0x1" + ] + }, + { + "pc": 1617, + "op": "JUMPI", + "gas": 3000160, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x127", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x182cb06a45a", + "0x506", + "0x182cb06a45a", + "0x1", + "0x656" + ] + }, + { + "pc": 1622, + "op": "JUMPDEST", + "gas": 3000150, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x127", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x182cb06a45a", + "0x506", + "0x182cb06a45a" + ] + }, + { + "pc": 1623, + "op": "POP", + "gas": 3000149, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x127", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x182cb06a45a", + "0x506", + "0x182cb06a45a" + ] + }, + { + "pc": 1624, + "op": "JUMP", + "gas": 3000147, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x127", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x182cb06a45a", + "0x506" + ] + }, + { + "pc": 1286, + "op": "JUMPDEST", + "gas": 3000139, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x127", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x182cb06a45a" + ] + }, + { + "pc": 1287, + "op": "SWAP3", + "gas": 3000138, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x127", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x182cb06a45a" + ] + }, + { + "pc": 1288, + "op": "SWAP2", + "gas": 3000135, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x127", + "0x24", + "0x4", + "0x0", + "0x0", + "0x182cb06a45a", + "0x24", + "0x4", + "0x52c" + ] + }, + { + "pc": 1289, + "op": "POP", + "gas": 3000132, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x127", + "0x24", + "0x4", + "0x0", + "0x0", + "0x182cb06a45a", + "0x52c", + "0x4", + "0x24" + ] + }, + { + "pc": 1290, + "op": "POP", + "gas": 3000130, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x127", + "0x24", + "0x4", + "0x0", + "0x0", + "0x182cb06a45a", + "0x52c", + "0x4" + ] + }, + { + "pc": 1291, + "op": "JUMP", + "gas": 3000128, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x127", + "0x24", + "0x4", + "0x0", + "0x0", + "0x182cb06a45a", + "0x52c" + ] + }, + { + "pc": 1324, + "op": "JUMPDEST", + "gas": 3000120, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x127", + "0x24", + "0x4", + "0x0", + "0x0", + "0x182cb06a45a" + ] + }, + { + "pc": 1325, + "op": "SWAP2", + "gas": 3000119, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x127", + "0x24", + "0x4", + "0x0", + "0x0", + "0x182cb06a45a" + ] + }, + { + "pc": 1326, + "op": "POP", + "gas": 3000116, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x127", + "0x24", + "0x4", + "0x182cb06a45a", + "0x0", + "0x0" + ] + }, + { + "pc": 1327, + "op": "POP", + "gas": 3000114, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x127", + "0x24", + "0x4", + "0x182cb06a45a", + "0x0" + ] + }, + { + "pc": 1328, + "op": "SWAP3", + "gas": 3000112, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x127", + "0x24", + "0x4", + "0x182cb06a45a" + ] + }, + { + "pc": 1329, + "op": "SWAP2", + "gas": 3000109, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0x24", + "0x4", + "0x127" + ] + }, + { + "pc": 1330, + "op": "POP", + "gas": 3000106, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0x127", + "0x4", + "0x24" + ] + }, + { + "pc": 1331, + "op": "POP", + "gas": 3000104, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0x127", + "0x4" + ] + }, + { + "pc": 1332, + "op": "JUMP", + "gas": 3000102, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0x127" + ] + }, + { + "pc": 295, + "op": "JUMPDEST", + "gas": 3000094, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a" + ] + }, + { + "pc": 296, + "op": "PUSH2", + "gas": 3000093, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a" + ] + }, + { + "pc": 299, + "op": "JUMP", + "gas": 3000090, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0x388" + ] + }, + { + "pc": 904, + "op": "JUMPDEST", + "gas": 3000082, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a" + ] + }, + { + "pc": 905, + "op": "PUSH1", + "gas": 3000081, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a" + ] + }, + { + "pc": 907, + "op": "DUP1", + "gas": 3000078, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0x0" + ] + }, + { + "pc": 908, + "op": "PUSH1", + "gas": 3000075, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0x0", + "0x0" + ] + }, + { + "pc": 910, + "op": "SWAP1", + "gas": 3000072, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 911, + "op": "SLOAD", + "gas": 3000069, + "gasCost": 2100, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0x0", + "0x0", + "0x0" + ], + "storage": { + "0x0000000000000000000000000000000000000000000000000000000000000000": "0x000000000000000000000000ed491d2c35f615cf1591bb6322486f1efcc9f6b5" + }, + "extraData": { + "proofList": [ + { + "address": "0x9cb1b5b04b4dcd5c3ab9bafd2c0ad4fd8a9b3d29", + "nonce": 1, + "balance": "0x0", + "codeHash": "0xb058876f2963a74146d29465bbd582cbc6f2c03a2ec5adc6e6d74513470072a4", + "storage": { + "key": "0x0000000000000000000000000000000000000000000000000000000000000000", + "value": "0x000000000000000000000000ed491d2c35f615cf1591bb6322486f1efcc9f6b5" + } + } + ] + } + }, + { + "pc": 912, + "op": "SWAP1", + "gas": 2997969, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0x0", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5" + ] + }, + { + "pc": 913, + "op": "PUSH2", + "gas": 2997966, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x0" + ] + }, + { + "pc": 916, + "op": "EXP", + "gas": 2997963, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x0", + "0x100" + ] + }, + { + "pc": 917, + "op": "SWAP1", + "gas": 2997953, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x1" + ] + }, + { + "pc": 918, + "op": "DIV", + "gas": 2997950, + "gasCost": 5, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0x0", + "0x1", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5" + ] + }, + { + "pc": 919, + "op": "PUSH20", + "gas": 2997945, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5" + ] + }, + { + "pc": 940, + "op": "AND", + "gas": 2997942, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 941, + "op": "SWAP1", + "gas": 2997939, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5" + ] + }, + { + "pc": 942, + "op": "POP", + "gas": 2997936, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x0" + ] + }, + { + "pc": 943, + "op": "DUP1", + "gas": 2997934, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5" + ] + }, + { + "pc": 944, + "op": "PUSH20", + "gas": 2997931, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5" + ] + }, + { + "pc": 965, + "op": "AND", + "gas": 2997928, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 966, + "op": "PUSH4", + "gas": 2997925, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5" + ] + }, + { + "pc": 971, + "op": "DUP4", + "gas": 2997922, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46" + ] + }, + { + "pc": 972, + "op": "PUSH1", + "gas": 2997919, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0x182cb06a45a" + ] + }, + { + "pc": 974, + "op": "MLOAD", + "gas": 2997916, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0x182cb06a45a", + "0x40" + ] + }, + { + "pc": 975, + "op": "DUP3", + "gas": 2997913, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0x182cb06a45a", + "0x80" + ] + }, + { + "pc": 976, + "op": "PUSH4", + "gas": 2997910, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0x182cb06a45a", + "0x80", + "0x21848c46" + ] + }, + { + "pc": 981, + "op": "AND", + "gas": 2997907, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0x182cb06a45a", + "0x80", + "0x21848c46", + "0xffffffff" + ] + }, + { + "pc": 982, + "op": "PUSH1", + "gas": 2997904, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0x182cb06a45a", + "0x80", + "0x21848c46" + ] + }, + { + "pc": 984, + "op": "SHL", + "gas": 2997901, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0x182cb06a45a", + "0x80", + "0x21848c46", + "0xe0" + ] + }, + { + "pc": 985, + "op": "DUP2", + "gas": 2997898, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0x182cb06a45a", + "0x80", + "0x21848c4600000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 986, + "op": "MSTORE", + "gas": 2997895, + "gasCost": 9, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0x182cb06a45a", + "0x80", + "0x21848c4600000000000000000000000000000000000000000000000000000000", + "0x80" + ] + }, + { + "pc": 987, + "op": "PUSH1", + "gas": 2997886, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0x182cb06a45a", + "0x80" + ] + }, + { + "pc": 989, + "op": "ADD", + "gas": 2997883, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0x182cb06a45a", + "0x80", + "0x4" + ] + }, + { + "pc": 990, + "op": "PUSH2", + "gas": 2997880, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0x182cb06a45a", + "0x84" + ] + }, + { + "pc": 993, + "op": "SWAP2", + "gas": 2997877, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0x182cb06a45a", + "0x84", + "0x3e7" + ] + }, + { + "pc": 994, + "op": "SWAP1", + "gas": 2997874, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0x3e7", + "0x84", + "0x182cb06a45a" + ] + }, + { + "pc": 995, + "op": "PUSH2", + "gas": 2997871, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0x3e7", + "0x182cb06a45a", + "0x84" + ] + }, + { + "pc": 998, + "op": "JUMP", + "gas": 2997868, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0x3e7", + "0x182cb06a45a", + "0x84", + "0x5b1" + ] + }, + { + "pc": 1457, + "op": "JUMPDEST", + "gas": 2997860, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0x3e7", + "0x182cb06a45a", + "0x84" + ] + }, + { + "pc": 1458, + "op": "PUSH1", + "gas": 2997859, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0x3e7", + "0x182cb06a45a", + "0x84" + ] + }, + { + "pc": 1460, + "op": "PUSH1", + "gas": 2997856, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0x3e7", + "0x182cb06a45a", + "0x84", + "0x0" + ] + }, + { + "pc": 1462, + "op": "DUP3", + "gas": 2997853, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0x3e7", + "0x182cb06a45a", + "0x84", + "0x0", + "0x20" + ] + }, + { + "pc": 1463, + "op": "ADD", + "gas": 2997850, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0x3e7", + "0x182cb06a45a", + "0x84", + "0x0", + "0x20", + "0x84" + ] + }, + { + "pc": 1464, + "op": "SWAP1", + "gas": 2997847, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0x3e7", + "0x182cb06a45a", + "0x84", + "0x0", + "0xa4" + ] + }, + { + "pc": 1465, + "op": "POP", + "gas": 2997844, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0x3e7", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x0" + ] + }, + { + "pc": 1466, + "op": "PUSH2", + "gas": 2997842, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0x3e7", + "0x182cb06a45a", + "0x84", + "0xa4" + ] + }, + { + "pc": 1469, + "op": "PUSH1", + "gas": 2997839, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0x3e7", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x5c6" + ] + }, + { + "pc": 1471, + "op": "DUP4", + "gas": 2997836, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0x3e7", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x5c6", + "0x0" + ] + }, + { + "pc": 1472, + "op": "ADD", + "gas": 2997833, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0x3e7", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x5c6", + "0x0", + "0x84" + ] + }, + { + "pc": 1473, + "op": "DUP5", + "gas": 2997830, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0x3e7", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x5c6", + "0x84" + ] + }, + { + "pc": 1474, + "op": "PUSH2", + "gas": 2997827, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0x3e7", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x5c6", + "0x84", + "0x182cb06a45a" + ] + }, + { + "pc": 1477, + "op": "JUMP", + "gas": 2997824, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0x3e7", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x5c6", + "0x84", + "0x182cb06a45a", + "0x567" + ] + }, + { + "pc": 1383, + "op": "JUMPDEST", + "gas": 2997816, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0x3e7", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x5c6", + "0x84", + "0x182cb06a45a" + ] + }, + { + "pc": 1384, + "op": "PUSH2", + "gas": 2997815, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0x3e7", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x5c6", + "0x84", + "0x182cb06a45a" + ] + }, + { + "pc": 1387, + "op": "DUP2", + "gas": 2997812, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0x3e7", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x5c6", + "0x84", + "0x182cb06a45a", + "0x570" + ] + }, + { + "pc": 1388, + "op": "PUSH2", + "gas": 2997809, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0x3e7", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x5c6", + "0x84", + "0x182cb06a45a", + "0x570", + "0x182cb06a45a" + ] + }, + { + "pc": 1391, + "op": "JUMP", + "gas": 2997806, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0x3e7", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x5c6", + "0x84", + "0x182cb06a45a", + "0x570", + "0x182cb06a45a", + "0x60f" + ] + }, + { + "pc": 1551, + "op": "JUMPDEST", + "gas": 2997798, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0x3e7", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x5c6", + "0x84", + "0x182cb06a45a", + "0x570", + "0x182cb06a45a" + ] + }, + { + "pc": 1552, + "op": "PUSH1", + "gas": 2997797, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0x3e7", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x5c6", + "0x84", + "0x182cb06a45a", + "0x570", + "0x182cb06a45a" + ] + }, + { + "pc": 1554, + "op": "DUP2", + "gas": 2997794, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0x3e7", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x5c6", + "0x84", + "0x182cb06a45a", + "0x570", + "0x182cb06a45a", + "0x0" + ] + }, + { + "pc": 1555, + "op": "SWAP1", + "gas": 2997791, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0x3e7", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x5c6", + "0x84", + "0x182cb06a45a", + "0x570", + "0x182cb06a45a", + "0x0", + "0x182cb06a45a" + ] + }, + { + "pc": 1556, + "op": "POP", + "gas": 2997788, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0x3e7", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x5c6", + "0x84", + "0x182cb06a45a", + "0x570", + "0x182cb06a45a", + "0x182cb06a45a", + "0x0" + ] + }, + { + "pc": 1557, + "op": "SWAP2", + "gas": 2997786, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0x3e7", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x5c6", + "0x84", + "0x182cb06a45a", + "0x570", + "0x182cb06a45a", + "0x182cb06a45a" + ] + }, + { + "pc": 1558, + "op": "SWAP1", + "gas": 2997783, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0x3e7", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x5c6", + "0x84", + "0x182cb06a45a", + "0x182cb06a45a", + "0x182cb06a45a", + "0x570" + ] + }, + { + "pc": 1559, + "op": "POP", + "gas": 2997780, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0x3e7", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x5c6", + "0x84", + "0x182cb06a45a", + "0x182cb06a45a", + "0x570", + "0x182cb06a45a" + ] + }, + { + "pc": 1560, + "op": "JUMP", + "gas": 2997778, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0x3e7", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x5c6", + "0x84", + "0x182cb06a45a", + "0x182cb06a45a", + "0x570" + ] + }, + { + "pc": 1392, + "op": "JUMPDEST", + "gas": 2997770, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0x3e7", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x5c6", + "0x84", + "0x182cb06a45a", + "0x182cb06a45a" + ] + }, + { + "pc": 1393, + "op": "DUP3", + "gas": 2997769, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0x3e7", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x5c6", + "0x84", + "0x182cb06a45a", + "0x182cb06a45a" + ] + }, + { + "pc": 1394, + "op": "MSTORE", + "gas": 2997766, + "gasCost": 6, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0x3e7", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x5c6", + "0x84", + "0x182cb06a45a", + "0x182cb06a45a", + "0x84" + ] + }, + { + "pc": 1395, + "op": "POP", + "gas": 2997760, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0x3e7", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x5c6", + "0x84", + "0x182cb06a45a" + ] + }, + { + "pc": 1396, + "op": "POP", + "gas": 2997758, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0x3e7", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x5c6", + "0x84" + ] + }, + { + "pc": 1397, + "op": "JUMP", + "gas": 2997756, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0x3e7", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x5c6" + ] + }, + { + "pc": 1478, + "op": "JUMPDEST", + "gas": 2997748, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0x3e7", + "0x182cb06a45a", + "0x84", + "0xa4" + ] + }, + { + "pc": 1479, + "op": "SWAP3", + "gas": 2997747, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0x3e7", + "0x182cb06a45a", + "0x84", + "0xa4" + ] + }, + { + "pc": 1480, + "op": "SWAP2", + "gas": 2997744, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0xa4", + "0x182cb06a45a", + "0x84", + "0x3e7" + ] + }, + { + "pc": 1481, + "op": "POP", + "gas": 2997741, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0xa4", + "0x3e7", + "0x84", + "0x182cb06a45a" + ] + }, + { + "pc": 1482, + "op": "POP", + "gas": 2997739, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0xa4", + "0x3e7", + "0x84" + ] + }, + { + "pc": 1483, + "op": "JUMP", + "gas": 2997737, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0xa4", + "0x3e7" + ] + }, + { + "pc": 999, + "op": "JUMPDEST", + "gas": 2997729, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0xa4" + ] + }, + { + "pc": 1000, + "op": "PUSH1", + "gas": 2997728, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0xa4" + ] + }, + { + "pc": 1002, + "op": "PUSH1", + "gas": 2997725, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0xa4", + "0x0" + ] + }, + { + "pc": 1004, + "op": "MLOAD", + "gas": 2997722, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0xa4", + "0x0", + "0x40" + ] + }, + { + "pc": 1005, + "op": "DUP1", + "gas": 2997719, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0xa4", + "0x0", + "0x80" + ] + }, + { + "pc": 1006, + "op": "DUP4", + "gas": 2997716, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0xa4", + "0x0", + "0x80", + "0x80" + ] + }, + { + "pc": 1007, + "op": "SUB", + "gas": 2997713, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0xa4", + "0x0", + "0x80", + "0x80", + "0xa4" + ] + }, + { + "pc": 1008, + "op": "DUP2", + "gas": 2997710, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0xa4", + "0x0", + "0x80", + "0x24" + ] + }, + { + "pc": 1009, + "op": "PUSH1", + "gas": 2997707, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80" + ] + }, + { + "pc": 1011, + "op": "DUP8", + "gas": 2997704, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0" + ] + }, + { + "pc": 1012, + "op": "DUP1", + "gas": 2997701, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5" + ] + }, + { + "pc": 1013, + "op": "EXTCODESIZE", + "gas": 2997698, + "gasCost": 2600, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5" + ], + "extraData": { + "codeList": [ + "0x608060405234801561001057600080fd5b506004361061004c5760003560e01c806321848c46146100515780633e23ee431461006d578063b0f2b72a1461008b578063ed231420146100a7575b600080fd5b61006b6004803603810190610066919061038a565b6100c3565b005b61007561015b565b604051610082919061040a565b60405180910390f35b6100a560048036038101906100a0919061038a565b610184565b005b6100c160048036038101906100bc919061038a565b610219565b005b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff166321848c46836040518263ffffffff1660e01b81526004016101229190610447565b600060405180830381600087803b15801561013c57600080fd5b505af192505050801561014d575060015b61015657610157565b5b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663b0f2b72a836040518263ffffffff1660e01b81526004016101e39190610447565b600060405180830381600087803b1580156101fd57600080fd5b505af1158015610211573d6000803e3d6000fd5b505050505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663e5223f886064846040518363ffffffff1660e01b815260040161027a9190610447565b6000604051808303818588803b15801561029357600080fd5b505af1935050505080156102a5575060015b6102ae576102af565b5b5050565b610349816040516024016102c79190610425565b6040516020818303038152906040527f41304fac000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff838183161783525050505061034c565b50565b60008151905060006a636f6e736f6c652e6c6f679050602083016000808483855afa5050505050565b600081359050610384816104fe565b92915050565b60006020828403121561039c57600080fd5b60006103aa84828501610375565b91505092915050565b6103bc8161047e565b82525050565b60006103cd82610462565b6103d7818561046d565b93506103e78185602086016104ba565b6103f0816104ed565b840191505092915050565b610404816104b0565b82525050565b600060208201905061041f60008301846103b3565b92915050565b6000602082019050818103600083015261043f81846103c2565b905092915050565b600060208201905061045c60008301846103fb565b92915050565b600081519050919050565b600082825260208201905092915050565b600061048982610490565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b838110156104d85780820151818401526020810190506104bd565b838111156104e7576000848401525b50505050565b6000601f19601f8301169050919050565b610507816104b0565b811461051257600080fd5b5056fea2646970667358221220f5cc0a3497437233916ec484eed596fa82d20198cc5e4e12a1bc76d6907526b864736f6c63430008040033" + ] + } + }, + { + "pc": 1014, + "op": "ISZERO", + "gas": 2995098, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x54b" + ] + }, + { + "pc": 1015, + "op": "DUP1", + "gas": 2995095, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x0" + ] + }, + { + "pc": 1016, + "op": "ISZERO", + "gas": 2995092, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x0", + "0x0" + ] + }, + { + "pc": 1017, + "op": "PUSH2", + "gas": 2995089, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x0", + "0x1" + ] + }, + { + "pc": 1020, + "op": "JUMPI", + "gas": 2995086, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x0", + "0x1", + "0x401" + ] + }, + { + "pc": 1025, + "op": "JUMPDEST", + "gas": 2995076, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x0" + ] + }, + { + "pc": 1026, + "op": "POP", + "gas": 2995075, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x0" + ] + }, + { + "pc": 1027, + "op": "GAS", + "gas": 2995073, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5" + ] + }, + { + "pc": 1028, + "op": "CALL", + "gas": 2995071, + "gasCost": 2948275, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x2db37f" + ], + "extraData": { + "codeList": [ + "0x608060405234801561001057600080fd5b506004361061007d5760003560e01c80633e23ee431161005b5780633e23ee43146100d8578063651b4aa5146100f6578063a0a4868814610112578063cb4ec52e1461012e5761007d565b8063127017e114610082578063200d2ed21461009e57806336864b1b146100bc575b600080fd5b61009c6004803603810190610097919061050c565b61014a565b005b6100a66101e6565b6040516100b391906105b1565b60405180910390f35b6100d660048036038101906100d1919061050c565b6101f0565b005b6100e06102c3565b6040516100ed9190610576565b60405180910390f35b610110600480360381019061010b919061050c565b6102ec565b005b61012c6004803603810190610127919061050c565b610388565b005b6101486004803603810190610143919061050c565b61045b565b005b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663ed231420836040518263ffffffff1660e01b81526004016101a991906105b1565b600060405180830381600087803b1580156101c357600080fd5b505af11580156101d7573d6000803e3d6000fd5b50505050816001819055505050565b6000600154905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663b0f2b72a836040518263ffffffff1660e01b815260040161024f91906105b1565b600060405180830381600087803b15801561026957600080fd5b505af115801561027d573d6000803e3d6000fd5b50505050816001819055506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016102ba90610591565b60405180910390fd5b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff166321848c46836040518263ffffffff1660e01b815260040161034b91906105b1565b600060405180830381600087803b15801561036557600080fd5b505af1158015610379573d6000803e3d6000fd5b50505050816001819055505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff166321848c46836040518263ffffffff1660e01b81526004016103e791906105b1565b600060405180830381600087803b15801561040157600080fd5b505af1158015610415573d6000803e3d6000fd5b50505050816001819055506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161045290610591565b60405180910390fd5b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663b0f2b72a836040518263ffffffff1660e01b81526004016104ba91906105b1565b600060405180830381600087803b1580156104d457600080fd5b505af11580156104e8573d6000803e3d6000fd5b50505050816001819055505050565b60008135905061050681610642565b92915050565b60006020828403121561051e57600080fd5b600061052c848285016104f7565b91505092915050565b61053e816105dd565b82525050565b6000610551600c836105cc565b915061055c82610619565b602082019050919050565b6105708161060f565b82525050565b600060208201905061058b6000830184610535565b92915050565b600060208201905081810360008301526105aa81610544565b9050919050565b60006020820190506105c66000830184610567565b92915050565b600082825260208201905092915050565b60006105e8826105ef565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b7f64656c696265726174656c790000000000000000000000000000000000000000600082015250565b61064b8161060f565b811461065657600080fd5b5056fea2646970667358221220fc037ef9cac015a49b5d1fa3ef3193503e4aef8398dd3d8a477cd8726cb8d54a64736f6c63430008040033", + "0x608060405234801561001057600080fd5b506004361061004c5760003560e01c806321848c46146100515780633e23ee431461006d578063b0f2b72a1461008b578063ed231420146100a7575b600080fd5b61006b6004803603810190610066919061038a565b6100c3565b005b61007561015b565b604051610082919061040a565b60405180910390f35b6100a560048036038101906100a0919061038a565b610184565b005b6100c160048036038101906100bc919061038a565b610219565b005b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff166321848c46836040518263ffffffff1660e01b81526004016101229190610447565b600060405180830381600087803b15801561013c57600080fd5b505af192505050801561014d575060015b61015657610157565b5b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663b0f2b72a836040518263ffffffff1660e01b81526004016101e39190610447565b600060405180830381600087803b1580156101fd57600080fd5b505af1158015610211573d6000803e3d6000fd5b505050505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663e5223f886064846040518363ffffffff1660e01b815260040161027a9190610447565b6000604051808303818588803b15801561029357600080fd5b505af1935050505080156102a5575060015b6102ae576102af565b5b5050565b610349816040516024016102c79190610425565b6040516020818303038152906040527f41304fac000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff838183161783525050505061034c565b50565b60008151905060006a636f6e736f6c652e6c6f679050602083016000808483855afa5050505050565b600081359050610384816104fe565b92915050565b60006020828403121561039c57600080fd5b60006103aa84828501610375565b91505092915050565b6103bc8161047e565b82525050565b60006103cd82610462565b6103d7818561046d565b93506103e78185602086016104ba565b6103f0816104ed565b840191505092915050565b610404816104b0565b82525050565b600060208201905061041f60008301846103b3565b92915050565b6000602082019050818103600083015261043f81846103c2565b905092915050565b600060208201905061045c60008301846103fb565b92915050565b600081519050919050565b600082825260208201905092915050565b600061048982610490565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b838110156104d85780820151818401526020810190506104bd565b838111156104e7576000848401525b50505050565b6000601f19601f8301169050919050565b610507816104b0565b811461051257600080fd5b5056fea2646970667358221220f5cc0a3497437233916ec484eed596fa82d20198cc5e4e12a1bc76d6907526b864736f6c63430008040033" + ], + "proofList": [ + { + "address": "0x9cb1b5b04b4dcd5c3ab9bafd2c0ad4fd8a9b3d29", + "nonce": 1, + "balance": "0x0", + "codeHash": "0xb058876f2963a74146d29465bbd582cbc6f2c03a2ec5adc6e6d74513470072a4" + }, + { + "address": "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "nonce": 1, + "balance": "0x0", + "codeHash": "0x5a58c210f99d8c05214f392685ce9711a7538fb5ed7bcd81fba60e035e56f163" + }, + { + "address": "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "nonce": 1, + "balance": "0x0", + "codeHash": "0x5a58c210f99d8c05214f392685ce9711a7538fb5ed7bcd81fba60e035e56f163" + } + ], + "caller": [ + { + "address": "0x9cb1b5b04b4dcd5c3ab9bafd2c0ad4fd8a9b3d29", + "nonce": 1, + "balance": "0x0", + "codeHash": "0xb058876f2963a74146d29465bbd582cbc6f2c03a2ec5adc6e6d74513470072a4" + }, + { + "address": "0x9cb1b5b04b4dcd5c3ab9bafd2c0ad4fd8a9b3d29", + "nonce": 1, + "balance": "0x0", + "codeHash": "0xb058876f2963a74146d29465bbd582cbc6f2c03a2ec5adc6e6d74513470072a4" + } + ] + } + }, + { + "pc": 0, + "op": "PUSH1", + "gas": 2948175, + "gasCost": 3, + "depth": 2 + }, + { + "pc": 2, + "op": "PUSH1", + "gas": 2948172, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x80" + ] + }, + { + "pc": 4, + "op": "MSTORE", + "gas": 2948169, + "gasCost": 12, + "depth": 2, + "stack": [ + "0x80", + "0x40" + ] + }, + { + "pc": 5, + "op": "CALLVALUE", + "gas": 2948157, + "gasCost": 2, + "depth": 2 + }, + { + "pc": 6, + "op": "DUP1", + "gas": 2948155, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x0" + ] + }, + { + "pc": 7, + "op": "ISZERO", + "gas": 2948152, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x0", + "0x0" + ] + }, + { + "pc": 8, + "op": "PUSH2", + "gas": 2948149, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x0", + "0x1" + ] + }, + { + "pc": 11, + "op": "JUMPI", + "gas": 2948146, + "gasCost": 10, + "depth": 2, + "stack": [ + "0x0", + "0x1", + "0x10" + ] + }, + { + "pc": 16, + "op": "JUMPDEST", + "gas": 2948136, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x0" + ] + }, + { + "pc": 17, + "op": "POP", + "gas": 2948135, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x0" + ] + }, + { + "pc": 18, + "op": "PUSH1", + "gas": 2948133, + "gasCost": 3, + "depth": 2 + }, + { + "pc": 20, + "op": "CALLDATASIZE", + "gas": 2948130, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x4" + ] + }, + { + "pc": 21, + "op": "LT", + "gas": 2948128, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x4", + "0x24" + ] + }, + { + "pc": 22, + "op": "PUSH2", + "gas": 2948125, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x0" + ] + }, + { + "pc": 25, + "op": "JUMPI", + "gas": 2948122, + "gasCost": 10, + "depth": 2, + "stack": [ + "0x0", + "0x4c" + ] + }, + { + "pc": 26, + "op": "PUSH1", + "gas": 2948112, + "gasCost": 3, + "depth": 2 + }, + { + "pc": 28, + "op": "CALLDATALOAD", + "gas": 2948109, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x0" + ] + }, + { + "pc": 29, + "op": "PUSH1", + "gas": 2948106, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c4600000000000000000000000000000000000000000000000000000182" + ] + }, + { + "pc": 31, + "op": "SHR", + "gas": 2948103, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c4600000000000000000000000000000000000000000000000000000182", + "0xe0" + ] + }, + { + "pc": 32, + "op": "DUP1", + "gas": 2948100, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46" + ] + }, + { + "pc": 33, + "op": "PUSH4", + "gas": 2948097, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x21848c46" + ] + }, + { + "pc": 38, + "op": "EQ", + "gas": 2948094, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x21848c46", + "0x21848c46" + ] + }, + { + "pc": 39, + "op": "PUSH2", + "gas": 2948091, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x1" + ] + }, + { + "pc": 42, + "op": "JUMPI", + "gas": 2948088, + "gasCost": 10, + "depth": 2, + "stack": [ + "0x21848c46", + "0x1", + "0x51" + ] + }, + { + "pc": 81, + "op": "JUMPDEST", + "gas": 2948078, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x21848c46" + ] + }, + { + "pc": 82, + "op": "PUSH2", + "gas": 2948077, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46" + ] + }, + { + "pc": 85, + "op": "PUSH1", + "gas": 2948074, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b" + ] + }, + { + "pc": 87, + "op": "DUP1", + "gas": 2948071, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x4" + ] + }, + { + "pc": 88, + "op": "CALLDATASIZE", + "gas": 2948068, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x4", + "0x4" + ] + }, + { + "pc": 89, + "op": "SUB", + "gas": 2948066, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x4", + "0x4", + "0x24" + ] + }, + { + "pc": 90, + "op": "DUP2", + "gas": 2948063, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x4", + "0x20" + ] + }, + { + "pc": 91, + "op": "ADD", + "gas": 2948060, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x4", + "0x20", + "0x4" + ] + }, + { + "pc": 92, + "op": "SWAP1", + "gas": 2948057, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x4", + "0x24" + ] + }, + { + "pc": 93, + "op": "PUSH2", + "gas": 2948054, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x24", + "0x4" + ] + }, + { + "pc": 96, + "op": "SWAP2", + "gas": 2948051, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x24", + "0x4", + "0x66" + ] + }, + { + "pc": 97, + "op": "SWAP1", + "gas": 2948048, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x4", + "0x24" + ] + }, + { + "pc": 98, + "op": "PUSH2", + "gas": 2948045, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4" + ] + }, + { + "pc": 101, + "op": "JUMP", + "gas": 2948042, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x38a" + ] + }, + { + "pc": 906, + "op": "JUMPDEST", + "gas": 2948034, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4" + ] + }, + { + "pc": 907, + "op": "PUSH1", + "gas": 2948033, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4" + ] + }, + { + "pc": 909, + "op": "PUSH1", + "gas": 2948030, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 911, + "op": "DUP3", + "gas": 2948027, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x20" + ] + }, + { + "pc": 912, + "op": "DUP5", + "gas": 2948024, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x20", + "0x4" + ] + }, + { + "pc": 913, + "op": "SUB", + "gas": 2948021, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x20", + "0x4", + "0x24" + ] + }, + { + "pc": 914, + "op": "SLT", + "gas": 2948018, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x20", + "0x20" + ] + }, + { + "pc": 915, + "op": "ISZERO", + "gas": 2948015, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0" + ] + }, + { + "pc": 916, + "op": "PUSH2", + "gas": 2948012, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x1" + ] + }, + { + "pc": 919, + "op": "JUMPI", + "gas": 2948009, + "gasCost": 10, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x1", + "0x39c" + ] + }, + { + "pc": 924, + "op": "JUMPDEST", + "gas": 2947999, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 925, + "op": "PUSH1", + "gas": 2947998, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 927, + "op": "PUSH2", + "gas": 2947995, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0" + ] + }, + { + "pc": 930, + "op": "DUP5", + "gas": 2947992, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa" + ] + }, + { + "pc": 931, + "op": "DUP3", + "gas": 2947989, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24" + ] + }, + { + "pc": 932, + "op": "DUP6", + "gas": 2947986, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x0" + ] + }, + { + "pc": 933, + "op": "ADD", + "gas": 2947983, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x0", + "0x4" + ] + }, + { + "pc": 934, + "op": "PUSH2", + "gas": 2947980, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4" + ] + }, + { + "pc": 937, + "op": "JUMP", + "gas": 2947977, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x375" + ] + }, + { + "pc": 885, + "op": "JUMPDEST", + "gas": 2947969, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4" + ] + }, + { + "pc": 886, + "op": "PUSH1", + "gas": 2947968, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4" + ] + }, + { + "pc": 888, + "op": "DUP2", + "gas": 2947965, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 889, + "op": "CALLDATALOAD", + "gas": 2947962, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x0", + "0x4" + ] + }, + { + "pc": 890, + "op": "SWAP1", + "gas": 2947959, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x0", + "0x182cb06a45a" + ] + }, + { + "pc": 891, + "op": "POP", + "gas": 2947956, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cb06a45a", + "0x0" + ] + }, + { + "pc": 892, + "op": "PUSH2", + "gas": 2947954, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cb06a45a" + ] + }, + { + "pc": 895, + "op": "DUP2", + "gas": 2947951, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cb06a45a", + "0x384" + ] + }, + { + "pc": 896, + "op": "PUSH2", + "gas": 2947948, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cb06a45a", + "0x384", + "0x182cb06a45a" + ] + }, + { + "pc": 899, + "op": "JUMP", + "gas": 2947945, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cb06a45a", + "0x384", + "0x182cb06a45a", + "0x4fe" + ] + }, + { + "pc": 1278, + "op": "JUMPDEST", + "gas": 2947937, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cb06a45a", + "0x384", + "0x182cb06a45a" + ] + }, + { + "pc": 1279, + "op": "PUSH2", + "gas": 2947936, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cb06a45a", + "0x384", + "0x182cb06a45a" + ] + }, + { + "pc": 1282, + "op": "DUP2", + "gas": 2947933, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cb06a45a", + "0x384", + "0x182cb06a45a", + "0x507" + ] + }, + { + "pc": 1283, + "op": "PUSH2", + "gas": 2947930, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cb06a45a", + "0x384", + "0x182cb06a45a", + "0x507", + "0x182cb06a45a" + ] + }, + { + "pc": 1286, + "op": "JUMP", + "gas": 2947927, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cb06a45a", + "0x384", + "0x182cb06a45a", + "0x507", + "0x182cb06a45a", + "0x4b0" + ] + }, + { + "pc": 1200, + "op": "JUMPDEST", + "gas": 2947919, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cb06a45a", + "0x384", + "0x182cb06a45a", + "0x507", + "0x182cb06a45a" + ] + }, + { + "pc": 1201, + "op": "PUSH1", + "gas": 2947918, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cb06a45a", + "0x384", + "0x182cb06a45a", + "0x507", + "0x182cb06a45a" + ] + }, + { + "pc": 1203, + "op": "DUP2", + "gas": 2947915, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cb06a45a", + "0x384", + "0x182cb06a45a", + "0x507", + "0x182cb06a45a", + "0x0" + ] + }, + { + "pc": 1204, + "op": "SWAP1", + "gas": 2947912, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cb06a45a", + "0x384", + "0x182cb06a45a", + "0x507", + "0x182cb06a45a", + "0x0", + "0x182cb06a45a" + ] + }, + { + "pc": 1205, + "op": "POP", + "gas": 2947909, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cb06a45a", + "0x384", + "0x182cb06a45a", + "0x507", + "0x182cb06a45a", + "0x182cb06a45a", + "0x0" + ] + }, + { + "pc": 1206, + "op": "SWAP2", + "gas": 2947907, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cb06a45a", + "0x384", + "0x182cb06a45a", + "0x507", + "0x182cb06a45a", + "0x182cb06a45a" + ] + }, + { + "pc": 1207, + "op": "SWAP1", + "gas": 2947904, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cb06a45a", + "0x384", + "0x182cb06a45a", + "0x182cb06a45a", + "0x182cb06a45a", + "0x507" + ] + }, + { + "pc": 1208, + "op": "POP", + "gas": 2947901, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cb06a45a", + "0x384", + "0x182cb06a45a", + "0x182cb06a45a", + "0x507", + "0x182cb06a45a" + ] + }, + { + "pc": 1209, + "op": "JUMP", + "gas": 2947899, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cb06a45a", + "0x384", + "0x182cb06a45a", + "0x182cb06a45a", + "0x507" + ] + }, + { + "pc": 1287, + "op": "JUMPDEST", + "gas": 2947891, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cb06a45a", + "0x384", + "0x182cb06a45a", + "0x182cb06a45a" + ] + }, + { + "pc": 1288, + "op": "DUP2", + "gas": 2947890, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cb06a45a", + "0x384", + "0x182cb06a45a", + "0x182cb06a45a" + ] + }, + { + "pc": 1289, + "op": "EQ", + "gas": 2947887, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cb06a45a", + "0x384", + "0x182cb06a45a", + "0x182cb06a45a", + "0x182cb06a45a" + ] + }, + { + "pc": 1290, + "op": "PUSH2", + "gas": 2947884, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cb06a45a", + "0x384", + "0x182cb06a45a", + "0x1" + ] + }, + { + "pc": 1293, + "op": "JUMPI", + "gas": 2947881, + "gasCost": 10, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cb06a45a", + "0x384", + "0x182cb06a45a", + "0x1", + "0x512" + ] + }, + { + "pc": 1298, + "op": "JUMPDEST", + "gas": 2947871, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cb06a45a", + "0x384", + "0x182cb06a45a" + ] + }, + { + "pc": 1299, + "op": "POP", + "gas": 2947870, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cb06a45a", + "0x384", + "0x182cb06a45a" + ] + }, + { + "pc": 1300, + "op": "JUMP", + "gas": 2947868, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cb06a45a", + "0x384" + ] + }, + { + "pc": 900, + "op": "JUMPDEST", + "gas": 2947860, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cb06a45a" + ] + }, + { + "pc": 901, + "op": "SWAP3", + "gas": 2947859, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x182cb06a45a" + ] + }, + { + "pc": 902, + "op": "SWAP2", + "gas": 2947856, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x182cb06a45a", + "0x24", + "0x4", + "0x3aa" + ] + }, + { + "pc": 903, + "op": "POP", + "gas": 2947853, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x182cb06a45a", + "0x3aa", + "0x4", + "0x24" + ] + }, + { + "pc": 904, + "op": "POP", + "gas": 2947851, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x182cb06a45a", + "0x3aa", + "0x4" + ] + }, + { + "pc": 905, + "op": "JUMP", + "gas": 2947849, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x182cb06a45a", + "0x3aa" + ] + }, + { + "pc": 938, + "op": "JUMPDEST", + "gas": 2947841, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x182cb06a45a" + ] + }, + { + "pc": 939, + "op": "SWAP2", + "gas": 2947840, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x182cb06a45a" + ] + }, + { + "pc": 940, + "op": "POP", + "gas": 2947837, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x182cb06a45a", + "0x0", + "0x0" + ] + }, + { + "pc": 941, + "op": "POP", + "gas": 2947835, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x182cb06a45a", + "0x0" + ] + }, + { + "pc": 942, + "op": "SWAP3", + "gas": 2947833, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x182cb06a45a" + ] + }, + { + "pc": 943, + "op": "SWAP2", + "gas": 2947830, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x24", + "0x4", + "0x66" + ] + }, + { + "pc": 944, + "op": "POP", + "gas": 2947827, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x66", + "0x4", + "0x24" + ] + }, + { + "pc": 945, + "op": "POP", + "gas": 2947825, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x66", + "0x4" + ] + }, + { + "pc": 946, + "op": "JUMP", + "gas": 2947823, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x66" + ] + }, + { + "pc": 102, + "op": "JUMPDEST", + "gas": 2947815, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a" + ] + }, + { + "pc": 103, + "op": "PUSH2", + "gas": 2947814, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a" + ] + }, + { + "pc": 106, + "op": "JUMP", + "gas": 2947811, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0xc3" + ] + }, + { + "pc": 195, + "op": "JUMPDEST", + "gas": 2947803, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a" + ] + }, + { + "pc": 196, + "op": "PUSH1", + "gas": 2947802, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a" + ] + }, + { + "pc": 198, + "op": "DUP1", + "gas": 2947799, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x0" + ] + }, + { + "pc": 199, + "op": "PUSH1", + "gas": 2947796, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x0", + "0x0" + ] + }, + { + "pc": 201, + "op": "SWAP1", + "gas": 2947793, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 202, + "op": "SLOAD", + "gas": 2947790, + "gasCost": 2100, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x0", + "0x0", + "0x0" + ], + "storage": { + "0x0000000000000000000000000000000000000000000000000000000000000000": "0x0000000000000000000000007db8ae361a8746cb1346d3390b00d7122e3286e4" + }, + "extraData": { + "proofList": [ + { + "address": "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "nonce": 1, + "balance": "0x0", + "codeHash": "0x5a58c210f99d8c05214f392685ce9711a7538fb5ed7bcd81fba60e035e56f163", + "storage": { + "key": "0x0000000000000000000000000000000000000000000000000000000000000000", + "value": "0x0000000000000000000000007db8ae361a8746cb1346d3390b00d7122e3286e4" + } + } + ] + } + }, + { + "pc": 203, + "op": "SWAP1", + "gas": 2945690, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x0", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4" + ] + }, + { + "pc": 204, + "op": "PUSH2", + "gas": 2945687, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x0" + ] + }, + { + "pc": 207, + "op": "EXP", + "gas": 2945684, + "gasCost": 10, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x0", + "0x100" + ] + }, + { + "pc": 208, + "op": "SWAP1", + "gas": 2945674, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x1" + ] + }, + { + "pc": 209, + "op": "DIV", + "gas": 2945671, + "gasCost": 5, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x0", + "0x1", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4" + ] + }, + { + "pc": 210, + "op": "PUSH20", + "gas": 2945666, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4" + ] + }, + { + "pc": 231, + "op": "AND", + "gas": 2945663, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 232, + "op": "SWAP1", + "gas": 2945660, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4" + ] + }, + { + "pc": 233, + "op": "POP", + "gas": 2945657, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x0" + ] + }, + { + "pc": 234, + "op": "DUP1", + "gas": 2945655, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4" + ] + }, + { + "pc": 235, + "op": "PUSH20", + "gas": 2945652, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4" + ] + }, + { + "pc": 256, + "op": "AND", + "gas": 2945649, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 257, + "op": "PUSH4", + "gas": 2945646, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4" + ] + }, + { + "pc": 262, + "op": "DUP4", + "gas": 2945643, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46" + ] + }, + { + "pc": 263, + "op": "PUSH1", + "gas": 2945640, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x182cb06a45a" + ] + }, + { + "pc": 265, + "op": "MLOAD", + "gas": 2945637, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x182cb06a45a", + "0x40" + ] + }, + { + "pc": 266, + "op": "DUP3", + "gas": 2945634, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x182cb06a45a", + "0x80" + ] + }, + { + "pc": 267, + "op": "PUSH4", + "gas": 2945631, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x182cb06a45a", + "0x80", + "0x21848c46" + ] + }, + { + "pc": 272, + "op": "AND", + "gas": 2945628, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x182cb06a45a", + "0x80", + "0x21848c46", + "0xffffffff" + ] + }, + { + "pc": 273, + "op": "PUSH1", + "gas": 2945625, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x182cb06a45a", + "0x80", + "0x21848c46" + ] + }, + { + "pc": 275, + "op": "SHL", + "gas": 2945622, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x182cb06a45a", + "0x80", + "0x21848c46", + "0xe0" + ] + }, + { + "pc": 276, + "op": "DUP2", + "gas": 2945619, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x182cb06a45a", + "0x80", + "0x21848c4600000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 277, + "op": "MSTORE", + "gas": 2945616, + "gasCost": 9, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x182cb06a45a", + "0x80", + "0x21848c4600000000000000000000000000000000000000000000000000000000", + "0x80" + ] + }, + { + "pc": 278, + "op": "PUSH1", + "gas": 2945607, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x182cb06a45a", + "0x80" + ] + }, + { + "pc": 280, + "op": "ADD", + "gas": 2945604, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x182cb06a45a", + "0x80", + "0x4" + ] + }, + { + "pc": 281, + "op": "PUSH2", + "gas": 2945601, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x182cb06a45a", + "0x84" + ] + }, + { + "pc": 284, + "op": "SWAP2", + "gas": 2945598, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x182cb06a45a", + "0x84", + "0x122" + ] + }, + { + "pc": 285, + "op": "SWAP1", + "gas": 2945595, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x122", + "0x84", + "0x182cb06a45a" + ] + }, + { + "pc": 286, + "op": "PUSH2", + "gas": 2945592, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x122", + "0x182cb06a45a", + "0x84" + ] + }, + { + "pc": 289, + "op": "JUMP", + "gas": 2945589, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x122", + "0x182cb06a45a", + "0x84", + "0x447" + ] + }, + { + "pc": 1095, + "op": "JUMPDEST", + "gas": 2945581, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x122", + "0x182cb06a45a", + "0x84" + ] + }, + { + "pc": 1096, + "op": "PUSH1", + "gas": 2945580, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x122", + "0x182cb06a45a", + "0x84" + ] + }, + { + "pc": 1098, + "op": "PUSH1", + "gas": 2945577, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x122", + "0x182cb06a45a", + "0x84", + "0x0" + ] + }, + { + "pc": 1100, + "op": "DUP3", + "gas": 2945574, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x122", + "0x182cb06a45a", + "0x84", + "0x0", + "0x20" + ] + }, + { + "pc": 1101, + "op": "ADD", + "gas": 2945571, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x122", + "0x182cb06a45a", + "0x84", + "0x0", + "0x20", + "0x84" + ] + }, + { + "pc": 1102, + "op": "SWAP1", + "gas": 2945568, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x122", + "0x182cb06a45a", + "0x84", + "0x0", + "0xa4" + ] + }, + { + "pc": 1103, + "op": "POP", + "gas": 2945565, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x122", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x0" + ] + }, + { + "pc": 1104, + "op": "PUSH2", + "gas": 2945563, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x122", + "0x182cb06a45a", + "0x84", + "0xa4" + ] + }, + { + "pc": 1107, + "op": "PUSH1", + "gas": 2945560, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x122", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x45c" + ] + }, + { + "pc": 1109, + "op": "DUP4", + "gas": 2945557, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x122", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x45c", + "0x0" + ] + }, + { + "pc": 1110, + "op": "ADD", + "gas": 2945554, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x122", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x45c", + "0x0", + "0x84" + ] + }, + { + "pc": 1111, + "op": "DUP5", + "gas": 2945551, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x122", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x45c", + "0x84" + ] + }, + { + "pc": 1112, + "op": "PUSH2", + "gas": 2945548, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x122", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x182cb06a45a" + ] + }, + { + "pc": 1115, + "op": "JUMP", + "gas": 2945545, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x122", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x182cb06a45a", + "0x3fb" + ] + }, + { + "pc": 1019, + "op": "JUMPDEST", + "gas": 2945537, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x122", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x182cb06a45a" + ] + }, + { + "pc": 1020, + "op": "PUSH2", + "gas": 2945536, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x122", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x182cb06a45a" + ] + }, + { + "pc": 1023, + "op": "DUP2", + "gas": 2945533, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x122", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x182cb06a45a", + "0x404" + ] + }, + { + "pc": 1024, + "op": "PUSH2", + "gas": 2945530, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x122", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x182cb06a45a", + "0x404", + "0x182cb06a45a" + ] + }, + { + "pc": 1027, + "op": "JUMP", + "gas": 2945527, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x122", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x182cb06a45a", + "0x404", + "0x182cb06a45a", + "0x4b0" + ] + }, + { + "pc": 1200, + "op": "JUMPDEST", + "gas": 2945519, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x122", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x182cb06a45a", + "0x404", + "0x182cb06a45a" + ] + }, + { + "pc": 1201, + "op": "PUSH1", + "gas": 2945518, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x122", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x182cb06a45a", + "0x404", + "0x182cb06a45a" + ] + }, + { + "pc": 1203, + "op": "DUP2", + "gas": 2945515, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x122", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x182cb06a45a", + "0x404", + "0x182cb06a45a", + "0x0" + ] + }, + { + "pc": 1204, + "op": "SWAP1", + "gas": 2945512, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x122", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x182cb06a45a", + "0x404", + "0x182cb06a45a", + "0x0", + "0x182cb06a45a" + ] + }, + { + "pc": 1205, + "op": "POP", + "gas": 2945509, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x122", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x182cb06a45a", + "0x404", + "0x182cb06a45a", + "0x182cb06a45a", + "0x0" + ] + }, + { + "pc": 1206, + "op": "SWAP2", + "gas": 2945507, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x122", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x182cb06a45a", + "0x404", + "0x182cb06a45a", + "0x182cb06a45a" + ] + }, + { + "pc": 1207, + "op": "SWAP1", + "gas": 2945504, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x122", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x182cb06a45a", + "0x182cb06a45a", + "0x182cb06a45a", + "0x404" + ] + }, + { + "pc": 1208, + "op": "POP", + "gas": 2945501, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x122", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x182cb06a45a", + "0x182cb06a45a", + "0x404", + "0x182cb06a45a" + ] + }, + { + "pc": 1209, + "op": "JUMP", + "gas": 2945499, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x122", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x182cb06a45a", + "0x182cb06a45a", + "0x404" + ] + }, + { + "pc": 1028, + "op": "JUMPDEST", + "gas": 2945491, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x122", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x182cb06a45a", + "0x182cb06a45a" + ] + }, + { + "pc": 1029, + "op": "DUP3", + "gas": 2945490, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x122", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x182cb06a45a", + "0x182cb06a45a" + ] + }, + { + "pc": 1030, + "op": "MSTORE", + "gas": 2945487, + "gasCost": 6, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x122", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x182cb06a45a", + "0x182cb06a45a", + "0x84" + ] + }, + { + "pc": 1031, + "op": "POP", + "gas": 2945481, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x122", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x182cb06a45a" + ] + }, + { + "pc": 1032, + "op": "POP", + "gas": 2945479, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x122", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x45c", + "0x84" + ] + }, + { + "pc": 1033, + "op": "JUMP", + "gas": 2945477, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x122", + "0x182cb06a45a", + "0x84", + "0xa4", + "0x45c" + ] + }, + { + "pc": 1116, + "op": "JUMPDEST", + "gas": 2945469, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x122", + "0x182cb06a45a", + "0x84", + "0xa4" + ] + }, + { + "pc": 1117, + "op": "SWAP3", + "gas": 2945468, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0x122", + "0x182cb06a45a", + "0x84", + "0xa4" + ] + }, + { + "pc": 1118, + "op": "SWAP2", + "gas": 2945465, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0xa4", + "0x182cb06a45a", + "0x84", + "0x122" + ] + }, + { + "pc": 1119, + "op": "POP", + "gas": 2945462, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0xa4", + "0x122", + "0x84", + "0x182cb06a45a" + ] + }, + { + "pc": 1120, + "op": "POP", + "gas": 2945460, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0xa4", + "0x122", + "0x84" + ] + }, + { + "pc": 1121, + "op": "JUMP", + "gas": 2945458, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0xa4", + "0x122" + ] + }, + { + "pc": 290, + "op": "JUMPDEST", + "gas": 2945450, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0xa4" + ] + }, + { + "pc": 291, + "op": "PUSH1", + "gas": 2945449, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0xa4" + ] + }, + { + "pc": 293, + "op": "PUSH1", + "gas": 2945446, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0xa4", + "0x0" + ] + }, + { + "pc": 295, + "op": "MLOAD", + "gas": 2945443, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0xa4", + "0x0", + "0x40" + ] + }, + { + "pc": 296, + "op": "DUP1", + "gas": 2945440, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0xa4", + "0x0", + "0x80" + ] + }, + { + "pc": 297, + "op": "DUP4", + "gas": 2945437, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0xa4", + "0x0", + "0x80", + "0x80" + ] + }, + { + "pc": 298, + "op": "SUB", + "gas": 2945434, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0xa4", + "0x0", + "0x80", + "0x80", + "0xa4" + ] + }, + { + "pc": 299, + "op": "DUP2", + "gas": 2945431, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0xa4", + "0x0", + "0x80", + "0x24" + ] + }, + { + "pc": 300, + "op": "PUSH1", + "gas": 2945428, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80" + ] + }, + { + "pc": 302, + "op": "DUP8", + "gas": 2945425, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0" + ] + }, + { + "pc": 303, + "op": "DUP1", + "gas": 2945422, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4" + ] + }, + { + "pc": 304, + "op": "EXTCODESIZE", + "gas": 2945419, + "gasCost": 2600, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4" + ], + "extraData": { + "codeList": [ + "0x6080604052600436106100555760003560e01c806321848c461461005a5780632e64cec114610083578063b0f2b72a146100ae578063c4e96ec0146100d7578063e5223f88146100f3578063f34176731461010f575b600080fd5b34801561006657600080fd5b50610081600480360381019061007c91906101d7565b61013a565b005b34801561008f57600080fd5b5061009861014f565b6040516100a59190610252565b60405180910390f35b3480156100ba57600080fd5b506100d560048036038101906100d091906101d7565b610158565b005b6100f160048036038101906100ec91906101d7565b610162565b005b61010d600480360381019061010891906101d7565b6101a4565b005b34801561011b57600080fd5b506101246101ae565b6040516101319190610252565b60405180910390f35b80600081905550600061014c57600080fd5b50565b60008054905090565b8060008190555050565b806000819055506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161019b90610232565b60405180910390fd5b8060008190555050565b6000806101ba57600080fd5b600054905090565b6000813590506101d1816102b1565b92915050565b6000602082840312156101e957600080fd5b60006101f7848285016101c2565b91505092915050565b600061020d600c8361026d565b915061021882610288565b602082019050919050565b61022c8161027e565b82525050565b6000602082019050818103600083015261024b81610200565b9050919050565b60006020820190506102676000830184610223565b92915050565b600082825260208201905092915050565b6000819050919050565b7f64656c696265726174656c790000000000000000000000000000000000000000600082015250565b6102ba8161027e565b81146102c557600080fd5b5056fea26469706673582212206fa6988b66dece47dc22658a0058d7f113ce303b23abdbfb3e29ee300a66489464736f6c63430008040033" + ] + } + }, + { + "pc": 305, + "op": "ISZERO", + "gas": 2942819, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x2fe" + ] + }, + { + "pc": 306, + "op": "DUP1", + "gas": 2942816, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x0" + ] + }, + { + "pc": 307, + "op": "ISZERO", + "gas": 2942813, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x0", + "0x0" + ] + }, + { + "pc": 308, + "op": "PUSH2", + "gas": 2942810, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x0", + "0x1" + ] + }, + { + "pc": 311, + "op": "JUMPI", + "gas": 2942807, + "gasCost": 10, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x0", + "0x1", + "0x13c" + ] + }, + { + "pc": 316, + "op": "JUMPDEST", + "gas": 2942797, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x0" + ] + }, + { + "pc": 317, + "op": "POP", + "gas": 2942796, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x0" + ] + }, + { + "pc": 318, + "op": "GAS", + "gas": 2942794, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4" + ] + }, + { + "pc": 319, + "op": "CALL", + "gas": 2942792, + "gasCost": 2896813, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x2ce748" + ], + "extraData": { + "callFailed": true, + "codeList": [ + "0x608060405234801561001057600080fd5b506004361061007d5760003560e01c80633e23ee431161005b5780633e23ee43146100d8578063651b4aa5146100f6578063a0a4868814610112578063cb4ec52e1461012e5761007d565b8063127017e114610082578063200d2ed21461009e57806336864b1b146100bc575b600080fd5b61009c6004803603810190610097919061050c565b61014a565b005b6100a66101e6565b6040516100b391906105b1565b60405180910390f35b6100d660048036038101906100d1919061050c565b6101f0565b005b6100e06102c3565b6040516100ed9190610576565b60405180910390f35b610110600480360381019061010b919061050c565b6102ec565b005b61012c6004803603810190610127919061050c565b610388565b005b6101486004803603810190610143919061050c565b61045b565b005b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663ed231420836040518263ffffffff1660e01b81526004016101a991906105b1565b600060405180830381600087803b1580156101c357600080fd5b505af11580156101d7573d6000803e3d6000fd5b50505050816001819055505050565b6000600154905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663b0f2b72a836040518263ffffffff1660e01b815260040161024f91906105b1565b600060405180830381600087803b15801561026957600080fd5b505af115801561027d573d6000803e3d6000fd5b50505050816001819055506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016102ba90610591565b60405180910390fd5b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff166321848c46836040518263ffffffff1660e01b815260040161034b91906105b1565b600060405180830381600087803b15801561036557600080fd5b505af1158015610379573d6000803e3d6000fd5b50505050816001819055505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff166321848c46836040518263ffffffff1660e01b81526004016103e791906105b1565b600060405180830381600087803b15801561040157600080fd5b505af1158015610415573d6000803e3d6000fd5b50505050816001819055506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161045290610591565b60405180910390fd5b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663b0f2b72a836040518263ffffffff1660e01b81526004016104ba91906105b1565b600060405180830381600087803b1580156104d457600080fd5b505af11580156104e8573d6000803e3d6000fd5b50505050816001819055505050565b60008135905061050681610642565b92915050565b60006020828403121561051e57600080fd5b600061052c848285016104f7565b91505092915050565b61053e816105dd565b82525050565b6000610551600c836105cc565b915061055c82610619565b602082019050919050565b6105708161060f565b82525050565b600060208201905061058b6000830184610535565b92915050565b600060208201905081810360008301526105aa81610544565b9050919050565b60006020820190506105c66000830184610567565b92915050565b600082825260208201905092915050565b60006105e8826105ef565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b7f64656c696265726174656c790000000000000000000000000000000000000000600082015250565b61064b8161060f565b811461065657600080fd5b5056fea2646970667358221220fc037ef9cac015a49b5d1fa3ef3193503e4aef8398dd3d8a477cd8726cb8d54a64736f6c63430008040033", + "0x6080604052600436106100555760003560e01c806321848c461461005a5780632e64cec114610083578063b0f2b72a146100ae578063c4e96ec0146100d7578063e5223f88146100f3578063f34176731461010f575b600080fd5b34801561006657600080fd5b50610081600480360381019061007c91906101d7565b61013a565b005b34801561008f57600080fd5b5061009861014f565b6040516100a59190610252565b60405180910390f35b3480156100ba57600080fd5b506100d560048036038101906100d091906101d7565b610158565b005b6100f160048036038101906100ec91906101d7565b610162565b005b61010d600480360381019061010891906101d7565b6101a4565b005b34801561011b57600080fd5b506101246101ae565b6040516101319190610252565b60405180910390f35b80600081905550600061014c57600080fd5b50565b60008054905090565b8060008190555050565b806000819055506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161019b90610232565b60405180910390fd5b8060008190555050565b6000806101ba57600080fd5b600054905090565b6000813590506101d1816102b1565b92915050565b6000602082840312156101e957600080fd5b60006101f7848285016101c2565b91505092915050565b600061020d600c8361026d565b915061021882610288565b602082019050919050565b61022c8161027e565b82525050565b6000602082019050818103600083015261024b81610200565b9050919050565b60006020820190506102676000830184610223565b92915050565b600082825260208201905092915050565b6000819050919050565b7f64656c696265726174656c790000000000000000000000000000000000000000600082015250565b6102ba8161027e565b81146102c557600080fd5b5056fea26469706673582212206fa6988b66dece47dc22658a0058d7f113ce303b23abdbfb3e29ee300a66489464736f6c63430008040033" + ], + "proofList": [ + { + "address": "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "nonce": 1, + "balance": "0x0", + "codeHash": "0x5a58c210f99d8c05214f392685ce9711a7538fb5ed7bcd81fba60e035e56f163" + }, + { + "address": "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "nonce": 1, + "balance": "0x0", + "codeHash": "0x4ee2afb169bef88abed9792edc0230c2cda9c19a48639d2db199479f1176928e" + }, + { + "address": "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "nonce": 1, + "balance": "0x0", + "codeHash": "0x4ee2afb169bef88abed9792edc0230c2cda9c19a48639d2db199479f1176928e" + } + ], + "caller": [ + { + "address": "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "nonce": 1, + "balance": "0x0", + "codeHash": "0x5a58c210f99d8c05214f392685ce9711a7538fb5ed7bcd81fba60e035e56f163" + }, + { + "address": "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "nonce": 1, + "balance": "0x0", + "codeHash": "0x5a58c210f99d8c05214f392685ce9711a7538fb5ed7bcd81fba60e035e56f163" + } + ] + } + }, + { + "pc": 0, + "op": "PUSH1", + "gas": 2896713, + "gasCost": 3, + "depth": 3 + }, + { + "pc": 2, + "op": "PUSH1", + "gas": 2896710, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x80" + ] + }, + { + "pc": 4, + "op": "MSTORE", + "gas": 2896707, + "gasCost": 12, + "depth": 3, + "stack": [ + "0x80", + "0x40" + ] + }, + { + "pc": 5, + "op": "PUSH1", + "gas": 2896695, + "gasCost": 3, + "depth": 3 + }, + { + "pc": 7, + "op": "CALLDATASIZE", + "gas": 2896692, + "gasCost": 2, + "depth": 3, + "stack": [ + "0x4" + ] + }, + { + "pc": 8, + "op": "LT", + "gas": 2896690, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x4", + "0x24" + ] + }, + { + "pc": 9, + "op": "PUSH2", + "gas": 2896687, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x0" + ] + }, + { + "pc": 12, + "op": "JUMPI", + "gas": 2896684, + "gasCost": 10, + "depth": 3, + "stack": [ + "0x0", + "0x55" + ] + }, + { + "pc": 13, + "op": "PUSH1", + "gas": 2896674, + "gasCost": 3, + "depth": 3 + }, + { + "pc": 15, + "op": "CALLDATALOAD", + "gas": 2896671, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x0" + ] + }, + { + "pc": 16, + "op": "PUSH1", + "gas": 2896668, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c4600000000000000000000000000000000000000000000000000000182" + ] + }, + { + "pc": 18, + "op": "SHR", + "gas": 2896665, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c4600000000000000000000000000000000000000000000000000000182", + "0xe0" + ] + }, + { + "pc": 19, + "op": "DUP1", + "gas": 2896662, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46" + ] + }, + { + "pc": 20, + "op": "PUSH4", + "gas": 2896659, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x21848c46" + ] + }, + { + "pc": 25, + "op": "EQ", + "gas": 2896656, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x21848c46", + "0x21848c46" + ] + }, + { + "pc": 26, + "op": "PUSH2", + "gas": 2896653, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x1" + ] + }, + { + "pc": 29, + "op": "JUMPI", + "gas": 2896650, + "gasCost": 10, + "depth": 3, + "stack": [ + "0x21848c46", + "0x1", + "0x5a" + ] + }, + { + "pc": 90, + "op": "JUMPDEST", + "gas": 2896640, + "gasCost": 1, + "depth": 3, + "stack": [ + "0x21848c46" + ] + }, + { + "pc": 91, + "op": "CALLVALUE", + "gas": 2896639, + "gasCost": 2, + "depth": 3, + "stack": [ + "0x21848c46" + ] + }, + { + "pc": 92, + "op": "DUP1", + "gas": 2896637, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x0" + ] + }, + { + "pc": 93, + "op": "ISZERO", + "gas": 2896634, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x0", + "0x0" + ] + }, + { + "pc": 94, + "op": "PUSH2", + "gas": 2896631, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x0", + "0x1" + ] + }, + { + "pc": 97, + "op": "JUMPI", + "gas": 2896628, + "gasCost": 10, + "depth": 3, + "stack": [ + "0x21848c46", + "0x0", + "0x1", + "0x66" + ] + }, + { + "pc": 102, + "op": "JUMPDEST", + "gas": 2896618, + "gasCost": 1, + "depth": 3, + "stack": [ + "0x21848c46", + "0x0" + ] + }, + { + "pc": 103, + "op": "POP", + "gas": 2896617, + "gasCost": 2, + "depth": 3, + "stack": [ + "0x21848c46", + "0x0" + ] + }, + { + "pc": 104, + "op": "PUSH2", + "gas": 2896615, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46" + ] + }, + { + "pc": 107, + "op": "PUSH1", + "gas": 2896612, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81" + ] + }, + { + "pc": 109, + "op": "DUP1", + "gas": 2896609, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x4" + ] + }, + { + "pc": 110, + "op": "CALLDATASIZE", + "gas": 2896606, + "gasCost": 2, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x4", + "0x4" + ] + }, + { + "pc": 111, + "op": "SUB", + "gas": 2896604, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x4", + "0x4", + "0x24" + ] + }, + { + "pc": 112, + "op": "DUP2", + "gas": 2896601, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x4", + "0x20" + ] + }, + { + "pc": 113, + "op": "ADD", + "gas": 2896598, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x4", + "0x20", + "0x4" + ] + }, + { + "pc": 114, + "op": "SWAP1", + "gas": 2896595, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x4", + "0x24" + ] + }, + { + "pc": 115, + "op": "PUSH2", + "gas": 2896592, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x24", + "0x4" + ] + }, + { + "pc": 118, + "op": "SWAP2", + "gas": 2896589, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x24", + "0x4", + "0x7c" + ] + }, + { + "pc": 119, + "op": "SWAP1", + "gas": 2896586, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x4", + "0x24" + ] + }, + { + "pc": 120, + "op": "PUSH2", + "gas": 2896583, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4" + ] + }, + { + "pc": 123, + "op": "JUMP", + "gas": 2896580, + "gasCost": 8, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x1d7" + ] + }, + { + "pc": 471, + "op": "JUMPDEST", + "gas": 2896572, + "gasCost": 1, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4" + ] + }, + { + "pc": 472, + "op": "PUSH1", + "gas": 2896571, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4" + ] + }, + { + "pc": 474, + "op": "PUSH1", + "gas": 2896568, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 476, + "op": "DUP3", + "gas": 2896565, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x20" + ] + }, + { + "pc": 477, + "op": "DUP5", + "gas": 2896562, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x20", + "0x4" + ] + }, + { + "pc": 478, + "op": "SUB", + "gas": 2896559, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x20", + "0x4", + "0x24" + ] + }, + { + "pc": 479, + "op": "SLT", + "gas": 2896556, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x20", + "0x20" + ] + }, + { + "pc": 480, + "op": "ISZERO", + "gas": 2896553, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0" + ] + }, + { + "pc": 481, + "op": "PUSH2", + "gas": 2896550, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x1" + ] + }, + { + "pc": 484, + "op": "JUMPI", + "gas": 2896547, + "gasCost": 10, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x1", + "0x1e9" + ] + }, + { + "pc": 489, + "op": "JUMPDEST", + "gas": 2896537, + "gasCost": 1, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 490, + "op": "PUSH1", + "gas": 2896536, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 492, + "op": "PUSH2", + "gas": 2896533, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0" + ] + }, + { + "pc": 495, + "op": "DUP5", + "gas": 2896530, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7" + ] + }, + { + "pc": 496, + "op": "DUP3", + "gas": 2896527, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24" + ] + }, + { + "pc": 497, + "op": "DUP6", + "gas": 2896524, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x0" + ] + }, + { + "pc": 498, + "op": "ADD", + "gas": 2896521, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x0", + "0x4" + ] + }, + { + "pc": 499, + "op": "PUSH2", + "gas": 2896518, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4" + ] + }, + { + "pc": 502, + "op": "JUMP", + "gas": 2896515, + "gasCost": 8, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x1c2" + ] + }, + { + "pc": 450, + "op": "JUMPDEST", + "gas": 2896507, + "gasCost": 1, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4" + ] + }, + { + "pc": 451, + "op": "PUSH1", + "gas": 2896506, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4" + ] + }, + { + "pc": 453, + "op": "DUP2", + "gas": 2896503, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 454, + "op": "CALLDATALOAD", + "gas": 2896500, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x0", + "0x4" + ] + }, + { + "pc": 455, + "op": "SWAP1", + "gas": 2896497, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x0", + "0x182cb06a45a" + ] + }, + { + "pc": 456, + "op": "POP", + "gas": 2896494, + "gasCost": 2, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cb06a45a", + "0x0" + ] + }, + { + "pc": 457, + "op": "PUSH2", + "gas": 2896492, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cb06a45a" + ] + }, + { + "pc": 460, + "op": "DUP2", + "gas": 2896489, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cb06a45a", + "0x1d1" + ] + }, + { + "pc": 461, + "op": "PUSH2", + "gas": 2896486, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cb06a45a", + "0x1d1", + "0x182cb06a45a" + ] + }, + { + "pc": 464, + "op": "JUMP", + "gas": 2896483, + "gasCost": 8, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cb06a45a", + "0x1d1", + "0x182cb06a45a", + "0x2b1" + ] + }, + { + "pc": 689, + "op": "JUMPDEST", + "gas": 2896475, + "gasCost": 1, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cb06a45a", + "0x1d1", + "0x182cb06a45a" + ] + }, + { + "pc": 690, + "op": "PUSH2", + "gas": 2896474, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cb06a45a", + "0x1d1", + "0x182cb06a45a" + ] + }, + { + "pc": 693, + "op": "DUP2", + "gas": 2896471, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cb06a45a", + "0x1d1", + "0x182cb06a45a", + "0x2ba" + ] + }, + { + "pc": 694, + "op": "PUSH2", + "gas": 2896468, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cb06a45a", + "0x1d1", + "0x182cb06a45a", + "0x2ba", + "0x182cb06a45a" + ] + }, + { + "pc": 697, + "op": "JUMP", + "gas": 2896465, + "gasCost": 8, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cb06a45a", + "0x1d1", + "0x182cb06a45a", + "0x2ba", + "0x182cb06a45a", + "0x27e" + ] + }, + { + "pc": 638, + "op": "JUMPDEST", + "gas": 2896457, + "gasCost": 1, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cb06a45a", + "0x1d1", + "0x182cb06a45a", + "0x2ba", + "0x182cb06a45a" + ] + }, + { + "pc": 639, + "op": "PUSH1", + "gas": 2896456, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cb06a45a", + "0x1d1", + "0x182cb06a45a", + "0x2ba", + "0x182cb06a45a" + ] + }, + { + "pc": 641, + "op": "DUP2", + "gas": 2896453, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cb06a45a", + "0x1d1", + "0x182cb06a45a", + "0x2ba", + "0x182cb06a45a", + "0x0" + ] + }, + { + "pc": 642, + "op": "SWAP1", + "gas": 2896450, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cb06a45a", + "0x1d1", + "0x182cb06a45a", + "0x2ba", + "0x182cb06a45a", + "0x0", + "0x182cb06a45a" + ] + }, + { + "pc": 643, + "op": "POP", + "gas": 2896447, + "gasCost": 2, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cb06a45a", + "0x1d1", + "0x182cb06a45a", + "0x2ba", + "0x182cb06a45a", + "0x182cb06a45a", + "0x0" + ] + }, + { + "pc": 644, + "op": "SWAP2", + "gas": 2896445, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cb06a45a", + "0x1d1", + "0x182cb06a45a", + "0x2ba", + "0x182cb06a45a", + "0x182cb06a45a" + ] + }, + { + "pc": 645, + "op": "SWAP1", + "gas": 2896442, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cb06a45a", + "0x1d1", + "0x182cb06a45a", + "0x182cb06a45a", + "0x182cb06a45a", + "0x2ba" + ] + }, + { + "pc": 646, + "op": "POP", + "gas": 2896439, + "gasCost": 2, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cb06a45a", + "0x1d1", + "0x182cb06a45a", + "0x182cb06a45a", + "0x2ba", + "0x182cb06a45a" + ] + }, + { + "pc": 647, + "op": "JUMP", + "gas": 2896437, + "gasCost": 8, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cb06a45a", + "0x1d1", + "0x182cb06a45a", + "0x182cb06a45a", + "0x2ba" + ] + }, + { + "pc": 698, + "op": "JUMPDEST", + "gas": 2896429, + "gasCost": 1, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cb06a45a", + "0x1d1", + "0x182cb06a45a", + "0x182cb06a45a" + ] + }, + { + "pc": 699, + "op": "DUP2", + "gas": 2896428, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cb06a45a", + "0x1d1", + "0x182cb06a45a", + "0x182cb06a45a" + ] + }, + { + "pc": 700, + "op": "EQ", + "gas": 2896425, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cb06a45a", + "0x1d1", + "0x182cb06a45a", + "0x182cb06a45a", + "0x182cb06a45a" + ] + }, + { + "pc": 701, + "op": "PUSH2", + "gas": 2896422, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cb06a45a", + "0x1d1", + "0x182cb06a45a", + "0x1" + ] + }, + { + "pc": 704, + "op": "JUMPI", + "gas": 2896419, + "gasCost": 10, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cb06a45a", + "0x1d1", + "0x182cb06a45a", + "0x1", + "0x2c5" + ] + }, + { + "pc": 709, + "op": "JUMPDEST", + "gas": 2896409, + "gasCost": 1, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cb06a45a", + "0x1d1", + "0x182cb06a45a" + ] + }, + { + "pc": 710, + "op": "POP", + "gas": 2896408, + "gasCost": 2, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cb06a45a", + "0x1d1", + "0x182cb06a45a" + ] + }, + { + "pc": 711, + "op": "JUMP", + "gas": 2896406, + "gasCost": 8, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cb06a45a", + "0x1d1" + ] + }, + { + "pc": 465, + "op": "JUMPDEST", + "gas": 2896398, + "gasCost": 1, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cb06a45a" + ] + }, + { + "pc": 466, + "op": "SWAP3", + "gas": 2896397, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x182cb06a45a" + ] + }, + { + "pc": 467, + "op": "SWAP2", + "gas": 2896394, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x182cb06a45a", + "0x24", + "0x4", + "0x1f7" + ] + }, + { + "pc": 468, + "op": "POP", + "gas": 2896391, + "gasCost": 2, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x182cb06a45a", + "0x1f7", + "0x4", + "0x24" + ] + }, + { + "pc": 469, + "op": "POP", + "gas": 2896389, + "gasCost": 2, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x182cb06a45a", + "0x1f7", + "0x4" + ] + }, + { + "pc": 470, + "op": "JUMP", + "gas": 2896387, + "gasCost": 8, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x182cb06a45a", + "0x1f7" + ] + }, + { + "pc": 503, + "op": "JUMPDEST", + "gas": 2896379, + "gasCost": 1, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x182cb06a45a" + ] + }, + { + "pc": 504, + "op": "SWAP2", + "gas": 2896378, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x182cb06a45a" + ] + }, + { + "pc": 505, + "op": "POP", + "gas": 2896375, + "gasCost": 2, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x182cb06a45a", + "0x0", + "0x0" + ] + }, + { + "pc": 506, + "op": "POP", + "gas": 2896373, + "gasCost": 2, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x182cb06a45a", + "0x0" + ] + }, + { + "pc": 507, + "op": "SWAP3", + "gas": 2896371, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x182cb06a45a" + ] + }, + { + "pc": 508, + "op": "SWAP2", + "gas": 2896368, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x182cb06a45a", + "0x24", + "0x4", + "0x7c" + ] + }, + { + "pc": 509, + "op": "POP", + "gas": 2896365, + "gasCost": 2, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x182cb06a45a", + "0x7c", + "0x4", + "0x24" + ] + }, + { + "pc": 510, + "op": "POP", + "gas": 2896363, + "gasCost": 2, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x182cb06a45a", + "0x7c", + "0x4" + ] + }, + { + "pc": 511, + "op": "JUMP", + "gas": 2896361, + "gasCost": 8, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x182cb06a45a", + "0x7c" + ] + }, + { + "pc": 124, + "op": "JUMPDEST", + "gas": 2896353, + "gasCost": 1, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x182cb06a45a" + ] + }, + { + "pc": 125, + "op": "PUSH2", + "gas": 2896352, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x182cb06a45a" + ] + }, + { + "pc": 128, + "op": "JUMP", + "gas": 2896349, + "gasCost": 8, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x182cb06a45a", + "0x13a" + ] + }, + { + "pc": 314, + "op": "JUMPDEST", + "gas": 2896341, + "gasCost": 1, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x182cb06a45a" + ] + }, + { + "pc": 315, + "op": "DUP1", + "gas": 2896340, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x182cb06a45a" + ] + }, + { + "pc": 316, + "op": "PUSH1", + "gas": 2896337, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x182cb06a45a", + "0x182cb06a45a" + ] + }, + { + "pc": 318, + "op": "DUP2", + "gas": 2896334, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x182cb06a45a", + "0x182cb06a45a", + "0x0" + ] + }, + { + "pc": 319, + "op": "SWAP1", + "gas": 2896331, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x182cb06a45a", + "0x182cb06a45a", + "0x0", + "0x182cb06a45a" + ] + }, + { + "pc": 320, + "op": "SSTORE", + "gas": 2896328, + "gasCost": 5000, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x182cb06a45a", + "0x182cb06a45a", + "0x182cb06a45a", + "0x0" + ], + "storage": { + "0x0000000000000000000000000000000000000000000000000000000000000000": "0x00000000000000000000000000000000000000000000000000000182cb06a45a" + }, + "extraData": { + "proofList": [ + { + "address": "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "nonce": 1, + "balance": "0x0", + "codeHash": "0x4ee2afb169bef88abed9792edc0230c2cda9c19a48639d2db199479f1176928e", + "storage": { + "key": "0x0000000000000000000000000000000000000000000000000000000000000000", + "value": "0x00000000000000000000000000000000000000000000000000000182cae4f502" + } + } + ] + } + }, + { + "pc": 321, + "op": "POP", + "gas": 2891328, + "gasCost": 2, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x182cb06a45a", + "0x182cb06a45a" + ] + }, + { + "pc": 322, + "op": "PUSH1", + "gas": 2891326, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x182cb06a45a" + ] + }, + { + "pc": 324, + "op": "PUSH2", + "gas": 2891323, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x182cb06a45a", + "0x0" + ] + }, + { + "pc": 327, + "op": "JUMPI", + "gas": 2891320, + "gasCost": 10, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x182cb06a45a", + "0x0", + "0x14c" + ] + }, + { + "pc": 328, + "op": "PUSH1", + "gas": 2891310, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x182cb06a45a" + ] + }, + { + "pc": 330, + "op": "DUP1", + "gas": 2891307, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x182cb06a45a", + "0x0" + ] + }, + { + "pc": 331, + "op": "REVERT", + "gas": 2891304, + "gasCost": 0, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x182cb06a45a", + "0x0", + "0x0" + ] + }, + { + "pc": 320, + "op": "SWAP3", + "gas": 2937283, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x21848c46", + "0xa4", + "0x0" + ] + }, + { + "pc": 321, + "op": "POP", + "gas": 2937280, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x0", + "0x21848c46", + "0xa4", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4" + ] + }, + { + "pc": 322, + "op": "POP", + "gas": 2937278, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x0", + "0x21848c46", + "0xa4" + ] + }, + { + "pc": 323, + "op": "POP", + "gas": 2937276, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x0", + "0x21848c46" + ] + }, + { + "pc": 324, + "op": "DUP1", + "gas": 2937274, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x0" + ] + }, + { + "pc": 325, + "op": "ISZERO", + "gas": 2937271, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x0", + "0x0" + ] + }, + { + "pc": 326, + "op": "PUSH2", + "gas": 2937268, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x0", + "0x1" + ] + }, + { + "pc": 329, + "op": "JUMPI", + "gas": 2937265, + "gasCost": 10, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x0", + "0x1", + "0x14d" + ] + }, + { + "pc": 333, + "op": "JUMPDEST", + "gas": 2937255, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x0" + ] + }, + { + "pc": 334, + "op": "PUSH2", + "gas": 2937254, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x0" + ] + }, + { + "pc": 337, + "op": "JUMPI", + "gas": 2937251, + "gasCost": 10, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x0", + "0x156" + ] + }, + { + "pc": 338, + "op": "PUSH2", + "gas": 2937241, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4" + ] + }, + { + "pc": 341, + "op": "JUMP", + "gas": 2937238, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4", + "0x157" + ] + }, + { + "pc": 343, + "op": "JUMPDEST", + "gas": 2937230, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4" + ] + }, + { + "pc": 344, + "op": "POP", + "gas": 2937229, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a", + "0x7db8ae361a8746cb1346d3390b00d7122e3286e4" + ] + }, + { + "pc": 345, + "op": "POP", + "gas": 2937227, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x182cb06a45a" + ] + }, + { + "pc": 346, + "op": "JUMP", + "gas": 2937225, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b" + ] + }, + { + "pc": 107, + "op": "JUMPDEST", + "gas": 2937217, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x21848c46" + ] + }, + { + "pc": 108, + "op": "STOP", + "gas": 2937216, + "gasCost": 0, + "depth": 2, + "stack": [ + "0x21848c46" + ] + }, + { + "pc": 1029, + "op": "ISZERO", + "gas": 2984012, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0xa4", + "0x1" + ] + }, + { + "pc": 1030, + "op": "DUP1", + "gas": 2984009, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0xa4", + "0x0" + ] + }, + { + "pc": 1031, + "op": "ISZERO", + "gas": 2984006, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0xa4", + "0x0", + "0x0" + ] + }, + { + "pc": 1032, + "op": "PUSH2", + "gas": 2984003, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0xa4", + "0x0", + "0x1" + ] + }, + { + "pc": 1035, + "op": "JUMPI", + "gas": 2984000, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0xa4", + "0x0", + "0x1", + "0x415" + ] + }, + { + "pc": 1045, + "op": "JUMPDEST", + "gas": 2983990, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0xa4", + "0x0" + ] + }, + { + "pc": 1046, + "op": "POP", + "gas": 2983989, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0xa4", + "0x0" + ] + }, + { + "pc": 1047, + "op": "POP", + "gas": 2983987, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46", + "0xa4" + ] + }, + { + "pc": 1048, + "op": "POP", + "gas": 2983985, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x21848c46" + ] + }, + { + "pc": 1049, + "op": "POP", + "gas": 2983983, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5" + ] + }, + { + "pc": 1050, + "op": "DUP2", + "gas": 2983981, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5" + ] + }, + { + "pc": 1051, + "op": "PUSH1", + "gas": 2983978, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x182cb06a45a" + ] + }, + { + "pc": 1053, + "op": "DUP2", + "gas": 2983975, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x182cb06a45a", + "0x1" + ] + }, + { + "pc": 1054, + "op": "SWAP1", + "gas": 2983972, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x182cb06a45a", + "0x1", + "0x182cb06a45a" + ] + }, + { + "pc": 1055, + "op": "SSTORE", + "gas": 2983969, + "gasCost": 22100, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x182cb06a45a", + "0x182cb06a45a", + "0x1" + ], + "storage": { + "0x0000000000000000000000000000000000000000000000000000000000000000": "0x000000000000000000000000ed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x0000000000000000000000000000000000000000000000000000000000000001": "0x00000000000000000000000000000000000000000000000000000182cb06a45a" + }, + "extraData": { + "proofList": [ + { + "address": "0x9cb1b5b04b4dcd5c3ab9bafd2c0ad4fd8a9b3d29", + "nonce": 1, + "balance": "0x0", + "codeHash": "0xb058876f2963a74146d29465bbd582cbc6f2c03a2ec5adc6e6d74513470072a4", + "storage": { + "key": "0x0000000000000000000000000000000000000000000000000000000000000001", + "value": "0x0000000000000000000000000000000000000000000000000000000000000000" + } + } + ] + } + }, + { + "pc": 1056, + "op": "POP", + "gas": 2961869, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x182cb06a45a" + ] + }, + { + "pc": 1057, + "op": "PUSH1", + "gas": 2961867, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5" + ] + }, + { + "pc": 1059, + "op": "MLOAD", + "gas": 2961864, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x40" + ] + }, + { + "pc": 1060, + "op": "PUSH32", + "gas": 2961861, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x80" + ] + }, + { + "pc": 1093, + "op": "DUP2", + "gas": 2961858, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x80", + "0x8c379a000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 1094, + "op": "MSTORE", + "gas": 2961855, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x80", + "0x8c379a000000000000000000000000000000000000000000000000000000000", + "0x80" + ] + }, + { + "pc": 1095, + "op": "PUSH1", + "gas": 2961852, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x80" + ] + }, + { + "pc": 1097, + "op": "ADD", + "gas": 2961849, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x80", + "0x4" + ] + }, + { + "pc": 1098, + "op": "PUSH2", + "gas": 2961846, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x84" + ] + }, + { + "pc": 1101, + "op": "SWAP1", + "gas": 2961843, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x84", + "0x452" + ] + }, + { + "pc": 1102, + "op": "PUSH2", + "gas": 2961840, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x452", + "0x84" + ] + }, + { + "pc": 1105, + "op": "JUMP", + "gas": 2961837, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x452", + "0x84", + "0x591" + ] + }, + { + "pc": 1425, + "op": "JUMPDEST", + "gas": 2961829, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x452", + "0x84" + ] + }, + { + "pc": 1426, + "op": "PUSH1", + "gas": 2961828, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x452", + "0x84" + ] + }, + { + "pc": 1428, + "op": "PUSH1", + "gas": 2961825, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x452", + "0x84", + "0x0" + ] + }, + { + "pc": 1430, + "op": "DUP3", + "gas": 2961822, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x452", + "0x84", + "0x0", + "0x20" + ] + }, + { + "pc": 1431, + "op": "ADD", + "gas": 2961819, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x452", + "0x84", + "0x0", + "0x20", + "0x84" + ] + }, + { + "pc": 1432, + "op": "SWAP1", + "gas": 2961816, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x452", + "0x84", + "0x0", + "0xa4" + ] + }, + { + "pc": 1433, + "op": "POP", + "gas": 2961813, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x452", + "0x84", + "0xa4", + "0x0" + ] + }, + { + "pc": 1434, + "op": "DUP2", + "gas": 2961811, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x452", + "0x84", + "0xa4" + ] + }, + { + "pc": 1435, + "op": "DUP2", + "gas": 2961808, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x452", + "0x84", + "0xa4", + "0x84" + ] + }, + { + "pc": 1436, + "op": "SUB", + "gas": 2961805, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x452", + "0x84", + "0xa4", + "0x84", + "0xa4" + ] + }, + { + "pc": 1437, + "op": "PUSH1", + "gas": 2961802, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x452", + "0x84", + "0xa4", + "0x20" + ] + }, + { + "pc": 1439, + "op": "DUP4", + "gas": 2961799, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x452", + "0x84", + "0xa4", + "0x20", + "0x0" + ] + }, + { + "pc": 1440, + "op": "ADD", + "gas": 2961796, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x452", + "0x84", + "0xa4", + "0x20", + "0x0", + "0x84" + ] + }, + { + "pc": 1441, + "op": "MSTORE", + "gas": 2961793, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x452", + "0x84", + "0xa4", + "0x20", + "0x84" + ] + }, + { + "pc": 1442, + "op": "PUSH2", + "gas": 2961790, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x452", + "0x84", + "0xa4" + ] + }, + { + "pc": 1445, + "op": "DUP2", + "gas": 2961787, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x452", + "0x84", + "0xa4", + "0x5aa" + ] + }, + { + "pc": 1446, + "op": "PUSH2", + "gas": 2961784, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x452", + "0x84", + "0xa4", + "0x5aa", + "0xa4" + ] + }, + { + "pc": 1449, + "op": "JUMP", + "gas": 2961781, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x452", + "0x84", + "0xa4", + "0x5aa", + "0xa4", + "0x544" + ] + }, + { + "pc": 1348, + "op": "JUMPDEST", + "gas": 2961773, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x452", + "0x84", + "0xa4", + "0x5aa", + "0xa4" + ] + }, + { + "pc": 1349, + "op": "PUSH1", + "gas": 2961772, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x452", + "0x84", + "0xa4", + "0x5aa", + "0xa4" + ] + }, + { + "pc": 1351, + "op": "PUSH2", + "gas": 2961769, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x452", + "0x84", + "0xa4", + "0x5aa", + "0xa4", + "0x0" + ] + }, + { + "pc": 1354, + "op": "PUSH1", + "gas": 2961766, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x452", + "0x84", + "0xa4", + "0x5aa", + "0xa4", + "0x0", + "0x551" + ] + }, + { + "pc": 1356, + "op": "DUP4", + "gas": 2961763, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x452", + "0x84", + "0xa4", + "0x5aa", + "0xa4", + "0x0", + "0x551", + "0xc" + ] + }, + { + "pc": 1357, + "op": "PUSH2", + "gas": 2961760, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x452", + "0x84", + "0xa4", + "0x5aa", + "0xa4", + "0x0", + "0x551", + "0xc", + "0xa4" + ] + }, + { + "pc": 1360, + "op": "JUMP", + "gas": 2961757, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x452", + "0x84", + "0xa4", + "0x5aa", + "0xa4", + "0x0", + "0x551", + "0xc", + "0xa4", + "0x5cc" + ] + }, + { + "pc": 1484, + "op": "JUMPDEST", + "gas": 2961749, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x452", + "0x84", + "0xa4", + "0x5aa", + "0xa4", + "0x0", + "0x551", + "0xc", + "0xa4" + ] + }, + { + "pc": 1485, + "op": "PUSH1", + "gas": 2961748, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x452", + "0x84", + "0xa4", + "0x5aa", + "0xa4", + "0x0", + "0x551", + "0xc", + "0xa4" + ] + }, + { + "pc": 1487, + "op": "DUP3", + "gas": 2961745, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x452", + "0x84", + "0xa4", + "0x5aa", + "0xa4", + "0x0", + "0x551", + "0xc", + "0xa4", + "0x0" + ] + }, + { + "pc": 1488, + "op": "DUP3", + "gas": 2961742, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x452", + "0x84", + "0xa4", + "0x5aa", + "0xa4", + "0x0", + "0x551", + "0xc", + "0xa4", + "0x0", + "0xc" + ] + }, + { + "pc": 1489, + "op": "MSTORE", + "gas": 2961739, + "gasCost": 6, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x452", + "0x84", + "0xa4", + "0x5aa", + "0xa4", + "0x0", + "0x551", + "0xc", + "0xa4", + "0x0", + "0xc", + "0xa4" + ] + }, + { + "pc": 1490, + "op": "PUSH1", + "gas": 2961733, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x452", + "0x84", + "0xa4", + "0x5aa", + "0xa4", + "0x0", + "0x551", + "0xc", + "0xa4", + "0x0" + ] + }, + { + "pc": 1492, + "op": "DUP3", + "gas": 2961730, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x452", + "0x84", + "0xa4", + "0x5aa", + "0xa4", + "0x0", + "0x551", + "0xc", + "0xa4", + "0x0", + "0x20" + ] + }, + { + "pc": 1493, + "op": "ADD", + "gas": 2961727, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x452", + "0x84", + "0xa4", + "0x5aa", + "0xa4", + "0x0", + "0x551", + "0xc", + "0xa4", + "0x0", + "0x20", + "0xa4" + ] + }, + { + "pc": 1494, + "op": "SWAP1", + "gas": 2961724, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x452", + "0x84", + "0xa4", + "0x5aa", + "0xa4", + "0x0", + "0x551", + "0xc", + "0xa4", + "0x0", + "0xc4" + ] + }, + { + "pc": 1495, + "op": "POP", + "gas": 2961721, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x452", + "0x84", + "0xa4", + "0x5aa", + "0xa4", + "0x0", + "0x551", + "0xc", + "0xa4", + "0xc4", + "0x0" + ] + }, + { + "pc": 1496, + "op": "SWAP3", + "gas": 2961719, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x452", + "0x84", + "0xa4", + "0x5aa", + "0xa4", + "0x0", + "0x551", + "0xc", + "0xa4", + "0xc4" + ] + }, + { + "pc": 1497, + "op": "SWAP2", + "gas": 2961716, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x452", + "0x84", + "0xa4", + "0x5aa", + "0xa4", + "0x0", + "0xc4", + "0xc", + "0xa4", + "0x551" + ] + }, + { + "pc": 1498, + "op": "POP", + "gas": 2961713, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x452", + "0x84", + "0xa4", + "0x5aa", + "0xa4", + "0x0", + "0xc4", + "0x551", + "0xa4", + "0xc" + ] + }, + { + "pc": 1499, + "op": "POP", + "gas": 2961711, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x452", + "0x84", + "0xa4", + "0x5aa", + "0xa4", + "0x0", + "0xc4", + "0x551", + "0xa4" + ] + }, + { + "pc": 1500, + "op": "JUMP", + "gas": 2961709, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x452", + "0x84", + "0xa4", + "0x5aa", + "0xa4", + "0x0", + "0xc4", + "0x551" + ] + }, + { + "pc": 1361, + "op": "JUMPDEST", + "gas": 2961701, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x452", + "0x84", + "0xa4", + "0x5aa", + "0xa4", + "0x0", + "0xc4" + ] + }, + { + "pc": 1362, + "op": "SWAP2", + "gas": 2961700, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x452", + "0x84", + "0xa4", + "0x5aa", + "0xa4", + "0x0", + "0xc4" + ] + }, + { + "pc": 1363, + "op": "POP", + "gas": 2961697, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x452", + "0x84", + "0xa4", + "0x5aa", + "0xc4", + "0x0", + "0xa4" + ] + }, + { + "pc": 1364, + "op": "PUSH2", + "gas": 2961695, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x452", + "0x84", + "0xa4", + "0x5aa", + "0xc4", + "0x0" + ] + }, + { + "pc": 1367, + "op": "DUP3", + "gas": 2961692, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x452", + "0x84", + "0xa4", + "0x5aa", + "0xc4", + "0x0", + "0x55c" + ] + }, + { + "pc": 1368, + "op": "PUSH2", + "gas": 2961689, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x452", + "0x84", + "0xa4", + "0x5aa", + "0xc4", + "0x0", + "0x55c", + "0xc4" + ] + }, + { + "pc": 1371, + "op": "JUMP", + "gas": 2961686, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x452", + "0x84", + "0xa4", + "0x5aa", + "0xc4", + "0x0", + "0x55c", + "0xc4", + "0x619" + ] + }, + { + "pc": 1561, + "op": "JUMPDEST", + "gas": 2961678, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x452", + "0x84", + "0xa4", + "0x5aa", + "0xc4", + "0x0", + "0x55c", + "0xc4" + ] + }, + { + "pc": 1562, + "op": "PUSH32", + "gas": 2961677, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x452", + "0x84", + "0xa4", + "0x5aa", + "0xc4", + "0x0", + "0x55c", + "0xc4" + ] + }, + { + "pc": 1595, + "op": "PUSH1", + "gas": 2961674, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x452", + "0x84", + "0xa4", + "0x5aa", + "0xc4", + "0x0", + "0x55c", + "0xc4", + "0x64656c696265726174656c790000000000000000000000000000000000000000" + ] + }, + { + "pc": 1597, + "op": "DUP3", + "gas": 2961671, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x452", + "0x84", + "0xa4", + "0x5aa", + "0xc4", + "0x0", + "0x55c", + "0xc4", + "0x64656c696265726174656c790000000000000000000000000000000000000000", + "0x0" + ] + }, + { + "pc": 1598, + "op": "ADD", + "gas": 2961668, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x452", + "0x84", + "0xa4", + "0x5aa", + "0xc4", + "0x0", + "0x55c", + "0xc4", + "0x64656c696265726174656c790000000000000000000000000000000000000000", + "0x0", + "0xc4" + ] + }, + { + "pc": 1599, + "op": "MSTORE", + "gas": 2961665, + "gasCost": 6, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x452", + "0x84", + "0xa4", + "0x5aa", + "0xc4", + "0x0", + "0x55c", + "0xc4", + "0x64656c696265726174656c790000000000000000000000000000000000000000", + "0xc4" + ] + }, + { + "pc": 1600, + "op": "POP", + "gas": 2961659, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x452", + "0x84", + "0xa4", + "0x5aa", + "0xc4", + "0x0", + "0x55c", + "0xc4" + ] + }, + { + "pc": 1601, + "op": "JUMP", + "gas": 2961657, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x452", + "0x84", + "0xa4", + "0x5aa", + "0xc4", + "0x0", + "0x55c" + ] + }, + { + "pc": 1372, + "op": "JUMPDEST", + "gas": 2961649, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x452", + "0x84", + "0xa4", + "0x5aa", + "0xc4", + "0x0" + ] + }, + { + "pc": 1373, + "op": "PUSH1", + "gas": 2961648, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x452", + "0x84", + "0xa4", + "0x5aa", + "0xc4", + "0x0" + ] + }, + { + "pc": 1375, + "op": "DUP3", + "gas": 2961645, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x452", + "0x84", + "0xa4", + "0x5aa", + "0xc4", + "0x0", + "0x20" + ] + }, + { + "pc": 1376, + "op": "ADD", + "gas": 2961642, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x452", + "0x84", + "0xa4", + "0x5aa", + "0xc4", + "0x0", + "0x20", + "0xc4" + ] + }, + { + "pc": 1377, + "op": "SWAP1", + "gas": 2961639, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x452", + "0x84", + "0xa4", + "0x5aa", + "0xc4", + "0x0", + "0xe4" + ] + }, + { + "pc": 1378, + "op": "POP", + "gas": 2961636, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x452", + "0x84", + "0xa4", + "0x5aa", + "0xc4", + "0xe4", + "0x0" + ] + }, + { + "pc": 1379, + "op": "SWAP2", + "gas": 2961634, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x452", + "0x84", + "0xa4", + "0x5aa", + "0xc4", + "0xe4" + ] + }, + { + "pc": 1380, + "op": "SWAP1", + "gas": 2961631, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x452", + "0x84", + "0xa4", + "0xe4", + "0xc4", + "0x5aa" + ] + }, + { + "pc": 1381, + "op": "POP", + "gas": 2961628, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x452", + "0x84", + "0xa4", + "0xe4", + "0x5aa", + "0xc4" + ] + }, + { + "pc": 1382, + "op": "JUMP", + "gas": 2961626, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x452", + "0x84", + "0xa4", + "0xe4", + "0x5aa" + ] + }, + { + "pc": 1450, + "op": "JUMPDEST", + "gas": 2961618, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x452", + "0x84", + "0xa4", + "0xe4" + ] + }, + { + "pc": 1451, + "op": "SWAP1", + "gas": 2961617, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x452", + "0x84", + "0xa4", + "0xe4" + ] + }, + { + "pc": 1452, + "op": "POP", + "gas": 2961614, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x452", + "0x84", + "0xe4", + "0xa4" + ] + }, + { + "pc": 1453, + "op": "SWAP2", + "gas": 2961612, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x452", + "0x84", + "0xe4" + ] + }, + { + "pc": 1454, + "op": "SWAP1", + "gas": 2961609, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xe4", + "0x84", + "0x452" + ] + }, + { + "pc": 1455, + "op": "POP", + "gas": 2961606, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xe4", + "0x452", + "0x84" + ] + }, + { + "pc": 1456, + "op": "JUMP", + "gas": 2961604, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xe4", + "0x452" + ] + }, + { + "pc": 1106, + "op": "JUMPDEST", + "gas": 2961596, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xe4" + ] + }, + { + "pc": 1107, + "op": "PUSH1", + "gas": 2961595, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xe4" + ] + }, + { + "pc": 1109, + "op": "MLOAD", + "gas": 2961592, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xe4", + "0x40" + ] + }, + { + "pc": 1110, + "op": "DUP1", + "gas": 2961589, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xe4", + "0x80" + ] + }, + { + "pc": 1111, + "op": "SWAP2", + "gas": 2961586, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0xe4", + "0x80", + "0x80" + ] + }, + { + "pc": 1112, + "op": "SUB", + "gas": 2961583, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x80", + "0x80", + "0xe4" + ] + }, + { + "pc": 1113, + "op": "SWAP1", + "gas": 2961580, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x80", + "0x64" + ] + }, + { + "pc": 1114, + "op": "REVERT", + "gas": 2961577, + "gasCost": 0, + "depth": 1, + "stack": [ + "0xa0a48688", + "0x12c", + "0x182cb06a45a", + "0xed491d2c35f615cf1591bb6322486f1efcc9f6b5", + "0x64", + "0x80" + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/internal/utesting/blocktraces/fail_create.json b/internal/utesting/blocktraces/fail_create.json new file mode 100644 index 0000000000..a89d06a106 --- /dev/null +++ b/internal/utesting/blocktraces/fail_create.json @@ -0,0 +1,33261 @@ +{ + "blockTrace": { + "number": "0x97", + "hash": "0x8bc3826e443bac1b58aae8081f4cbdc5209568239161d353293102c1abb81a9a", + "gasLimit": 7789218, + "difficulty": "0x2", + "baseFee": "0x1ce", + "coinbase": { + "address": "0x0000000000000000000000000000000000000000", + "nonce": 0, + "balance": "0x0", + "codeHash": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "time": 1661261304, + "transactions": [ + { + "type": 2, + "nonce": 225, + "txHash": "0x508ac7f06201981f05ca367d78a9653c8b5e975bdb3bffac065e62df08371065", + "gas": 3021400, + "gasPrice": "0x248", + "from": "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "to": "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "chainId": "0xcf55", + "value": "0x0", + "data": "0xce0dbd670000000000000000000000000000000000000000000000000000000000000000", + "isCreate": false, + "v": "0x1", + "r": "0x8d2540f4fa10e185b0748ff93cd2e2e8e65b3cb607b08759a706a80ed3c116ae", + "s": "0x6b8b588e7096befefe9fd8286c2af10a5b3674cd19e3aca6f226702f6b8085a" + }, + { + "type": 2, + "nonce": 226, + "txHash": "0x02f7c0a0a501a1a1c133ac484145b03d648b302b54ad356f9bd82ffb3c2431ae", + "gas": 3021400, + "gasPrice": "0x248", + "from": "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "to": "0xda1ad647621a1984ce21b0bab020005fe3b5f4da", + "chainId": "0xcf55", + "value": "0x0", + "data": "0x3719f5110000000000000000000000000000000000000000000000000000000000000000", + "isCreate": false, + "v": "0x1", + "r": "0x522b1aa63cc98a79de50c570a410da7d3a2ee2ba07fba6594a9a1a75b70994ae", + "s": "0x36503ea57e3b953e130633b123ff3bb3cb9dc3fa0793131d98d9b487381432ad" + }, + { + "type": 2, + "nonce": 227, + "txHash": "0xc8e6e3bfe6472ab622fa4b70fd068c6233f7b033225bf4d448b5c892805198d6", + "gas": 3021400, + "gasPrice": "0x248", + "from": "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "to": "0xda1ad647621a1984ce21b0bab020005fe3b5f4da", + "chainId": "0xcf55", + "value": "0x0", + "data": "0x5dec31ca0000000000000000000000000000000000000000000000000000000000000000", + "isCreate": false, + "v": "0x1", + "r": "0xed590610d1d49a43a811788199cd0cbfcca85649a9d258947beb1a5f058c2450", + "s": "0xbbc01c6965bc37b60235bd8c70e506631e157020a6ad1e82faf9e005de3e6e6" + } + ] + }, + "storageTrace": { + "rootBefore": "0x1f990aed0102ea26fefdc9d984f3b8af272e28207eb94bb8b6358a798946f6bb", + "rootAfter": "0x24f030d776f26c4c5b295455de17847b1bf1e9f9219edccb718998688a6731d1", + "proofs": { + "0x1D57bE6E181386A025E41c3F6AA1855465a4Ab1E": [ + "0x001e275cc85c4ee16b6db8aa43f043c6047b5522cd75c3ee2cc7656936421d4fa526ff0ab5ae4a7deb5161e727d29e0e8540f1d068bcab4138b28186fa238e7c43", + "0x00228ab9726694083aa445e927ffc2fc2b302c78492a61d36216537d008f665f6410154ad38609b9750bae24077d957963b831213b7336c1a4fe641f8d5f6aa22a", + "0x001f26bb7093d1bec8bb681d2413ad6d3235156f32e119bb07744a9e09633426db0490ae4c72f6e1775acf6c6901461dbd1a15df1a3f362ee211604e2d496e7dba", + "0x000caec0b8c73dfaf56f3ac9ba5043af7a388b4211a4e7340837bc8c556906259b27442f5bcddb9c385fc9f1596ddca0741d552d8edc11cb38968d1bf4c7f822be", + "0x0004831789ad2280ed08d71217b56bfb3d7fc57f19bd0adbc3c147a603f90176362b5f8721e3ff1e809a2e15b9397e3a53529da2c01925fbeba733a50f3f3f3ccd", + "0x0011320da6ef1593cce95663085d2bb3c3c25216ae0f5522246521ed8cf9ac3e940000000000000000000000000000000000000000000000000000000000000000", + "0x002bdbbc1d42f86d3b5cab2a463b8930ee173efa7adbd5320f6e4d36c16094be671431a4c64354b399ca6a1049116796f29462f29b06fd39b719f5c3bd779cbf0c", + "0x0124c0a7ea76182c713800cfeb6556da9b21c53ceaab4b469557291fdd2a067e8b04040000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000004ee2afb169bef88abed9792edc0230c2cda9c19a48639d2db199479f1176928e000000000000000000000000000000000000000000000000000000000000000000", + "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" + ], + "0x467b8C999F24f61C3F5BeB287Fe2a4C95c0fCb6A": [ + "0x001e275cc85c4ee16b6db8aa43f043c6047b5522cd75c3ee2cc7656936421d4fa526ff0ab5ae4a7deb5161e727d29e0e8540f1d068bcab4138b28186fa238e7c43", + "0x001d542efd085c371e13ec31852cb4a26b222d90711c3ff57e680fa1a9a1070a692b42961b4531b48a39e50771bff69e37850a57fb7d62604208a6a17f5c045069", + "0x00003fe8ae8752fcba7646f17191391e7487237ed0d621ef1cf87b60539082fc3102ceed600eb4e377e563960958fdbf2380a37afa141340498c299278100f9228", + "0x001be854efd466d8f6fb2ad9da76a92003cab8b581330e2e7b4f942feb5504d9cc23291123dd490b63b91bc1ec30efe78db180899a0d17f2216bbf412dc8b84037", + "0x00203c132957bc929e5cf56fe864216e440b5582447fbda3c0c215d8992ed4b0ba24fb31f01f4e80b27f0070f0b12704a7a9cd823a1b3bc4ebac14f0d06e3d2502", + "0x011c9e9343aa449fec94fc11c7c3c9555d62f56796ba9bb9f402a3819b8fea1f9c04040000000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000000197f7ef0aab588fbcc511af4e7d236206b90e8fbe1adfc7afe76c181cc4e9f0271bf045af426086191a9188b4a80535fe00b91a803d4fbc88ca98104d61140400", + "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" + ], + "0x4cb1aB63aF5D8931Ce09673EbD8ae2ce16fD6571": [ + "0x001e275cc85c4ee16b6db8aa43f043c6047b5522cd75c3ee2cc7656936421d4fa526ff0ab5ae4a7deb5161e727d29e0e8540f1d068bcab4138b28186fa238e7c43", + "0x00228ab9726694083aa445e927ffc2fc2b302c78492a61d36216537d008f665f6410154ad38609b9750bae24077d957963b831213b7336c1a4fe641f8d5f6aa22a", + "0x00073e0a4f144235e0c633af855786c248253e46d7b7c7f6dbbfafd83f390d3d86040b26873b01c8668766906c65aa83e031526d2f7060d8c2bda27000b8262258", + "0x000f333ac29fffb44ea1d7479d4da3985c3787947a9bf7f7f8b98c907d3c2bf7cf22de217a821ca10394e3c0f7a99762e37d87f50e2a61f48a154a26a4c4c7c5e7", + "0x000ef81a6c68d20d9d29dd6322d851e57c54c031ac00ee05e60c2f21424d4924f61530e17e7b00f343ee8756a1f3d325bdd5e37213960f256f8cb41e716a5eb855", + "0x0025aab923d9a5a2d93978c98a1f5bb1a2ed1a57702b3e81e9da4e97a44c390bc707f219c64ca35acc0290ef11508a876c07f61d04073706046ee0b5b1edb8b9a0", + "0x00240595687c8fa1172547dcc9450ef9f30519743088365ea537ff0a5a0263eef80684283fc9f779487a866f0777cb05b2b5edc8262694e08ee5caac8c512a055e", + "0x00243dd01975b8d75f3708ccf2ff083bb0b2ed8c79e235bf4415acb1fc2c9bb13c2fe8b70043185278f8f6c75d7057d75ebc62e82052f480dfc207de3b0e89700e", + "0x0129bdbea092f4f7e6de593fd1a16ddb50b1c2a6297d4ae141a60f8da631e481750404000000000000000000000000000000000000000000000000000000000000000000e10056bc75e2d630ffffffffffffffffffffffffffffffffffff334673ca53e4a2c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470000000000000000000000000000000000000000000000000000000000000000000", + "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" + ], + "0x7c8E871818AE2534B1DE8BeB169eece2179232b4": [ + "0x001e275cc85c4ee16b6db8aa43f043c6047b5522cd75c3ee2cc7656936421d4fa526ff0ab5ae4a7deb5161e727d29e0e8540f1d068bcab4138b28186fa238e7c43", + "0x001d542efd085c371e13ec31852cb4a26b222d90711c3ff57e680fa1a9a1070a692b42961b4531b48a39e50771bff69e37850a57fb7d62604208a6a17f5c045069", + "0x00003fe8ae8752fcba7646f17191391e7487237ed0d621ef1cf87b60539082fc3102ceed600eb4e377e563960958fdbf2380a37afa141340498c299278100f9228", + "0x001be854efd466d8f6fb2ad9da76a92003cab8b581330e2e7b4f942feb5504d9cc23291123dd490b63b91bc1ec30efe78db180899a0d17f2216bbf412dc8b84037", + "0x000f19703d160ae56a97c2d17d18c594f20926065a91ed3e05092cc2cffa82b8b100f00cf67fa7857f1a9064700beb0f22f02f4d937f162c193d45cfb2d3169975", + "0x00280ca2cdd5f3b185ddb1cedb46caeb85ea7810ad1d7b0b4bf652a0357ec977a5026a809c1ea8c388f93b998ce4f9172b4d16019f23084f1973698ac383915c5c", + "0x00000000000000000000000000000000000000000000000000000000000000000003fddae55eb4c52385a413407d93c8b9791da7376a4469848576d724774759f5", + "0x02", + "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" + ], + "0xDA1Ad647621a1984ce21B0BaB020005fe3B5F4DA": [ + "0x001e275cc85c4ee16b6db8aa43f043c6047b5522cd75c3ee2cc7656936421d4fa526ff0ab5ae4a7deb5161e727d29e0e8540f1d068bcab4138b28186fa238e7c43", + "0x00228ab9726694083aa445e927ffc2fc2b302c78492a61d36216537d008f665f6410154ad38609b9750bae24077d957963b831213b7336c1a4fe641f8d5f6aa22a", + "0x001f26bb7093d1bec8bb681d2413ad6d3235156f32e119bb07744a9e09633426db0490ae4c72f6e1775acf6c6901461dbd1a15df1a3f362ee211604e2d496e7dba", + "0x000caec0b8c73dfaf56f3ac9ba5043af7a388b4211a4e7340837bc8c556906259b27442f5bcddb9c385fc9f1596ddca0741d552d8edc11cb38968d1bf4c7f822be", + "0x001c450235a20abc9957aef70351cf75b9f26afe127129486293fb8a2866a9c8a715569f5493240d886f181280e937c7d05358b285afc2c6e9f5310b8dbe149387", + "0x0025e88c47733a9fd1047a8b2ade1012bff0f52e168141cdd4b7aedfee2011dbd20a683fa2c88cb7ae5cb5e57761cffd11c479a7657eb23bd334b583ff72900c67", + "0x010ae130046f9d7da44010613c1c787fe02536e75b661e3a39a379b44d700a15e3040400000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000c2455a35210099bbbb95bdd1b6a9bfc4702d98ba0f971009391cd8f970e7290305a8ec148ef4b5a0b1e9ee08372af0fe9f39ad59e7d0b11ea4e350ad06557c00", + "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" + ], + "0xb9ebDE954382D147E2174506F05eE5A4e9C9bDB5": [ + "0x001e275cc85c4ee16b6db8aa43f043c6047b5522cd75c3ee2cc7656936421d4fa526ff0ab5ae4a7deb5161e727d29e0e8540f1d068bcab4138b28186fa238e7c43", + "0x00228ab9726694083aa445e927ffc2fc2b302c78492a61d36216537d008f665f6410154ad38609b9750bae24077d957963b831213b7336c1a4fe641f8d5f6aa22a", + "0x001f26bb7093d1bec8bb681d2413ad6d3235156f32e119bb07744a9e09633426db0490ae4c72f6e1775acf6c6901461dbd1a15df1a3f362ee211604e2d496e7dba", + "0x000caec0b8c73dfaf56f3ac9ba5043af7a388b4211a4e7340837bc8c556906259b27442f5bcddb9c385fc9f1596ddca0741d552d8edc11cb38968d1bf4c7f822be", + "0x001c450235a20abc9957aef70351cf75b9f26afe127129486293fb8a2866a9c8a715569f5493240d886f181280e937c7d05358b285afc2c6e9f5310b8dbe149387", + "0x000f4101f77aba50071dd26c5c80a1c430a0896a2f68612d475228bbc0257eae8f1cf152b75256f55c17d9cbc4bc5bf860e34b0b53b8884e98e359699872f4e516", + "0x0000000000000000000000000000000000000000000000000000000000000000001f0a5831d67847144ac227bd49ecdb08e1fcbea44e180ade91ee39499bc31475", + "0x0024b4a5f27436c142db3b1056084b4bb4cc41ec11b03956970adab1fa167ea4a90000000000000000000000000000000000000000000000000000000000000000", + "0x02", + "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" + ] + }, + "storageProofs": { + "0x467b8C999F24f61C3F5BeB287Fe2a4C95c0fCb6A": { + "0x0000000000000000000000000000000000000000000000000000000000000000": [ + "0x012098f5fb9e239eab3ceac3f27b81e481dc3124d55ffed523a839ee8446b6486401010000000000000000000000000000080b18cb659f0a532d679e660c9841e1e0991ae100", + "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" + ] + }, + "0xDA1Ad647621a1984ce21B0BaB020005fe3B5F4DA": { + "0x0000000000000000000000000000000000000000000000000000000000000000": [ + "0x001c806f1b1a4a415999e13b946ce3f02118bfba340eef5f8b69e6219b1720444d0000000000000000000000000000000000000000000000000000000000000000", + "0x002d9304fd0492e39585c8028e1bcd58987e5c87aa54e7633281ae4adb3d5c3c4d192a3a10c0fbb57f67fed42c46e4f24c7bbe2746aab651e239d3108931b8249f", + "0x012098f5fb9e239eab3ceac3f27b81e481dc3124d55ffed523a839ee8446b6486401010000000000000000000000000000467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a00", + "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" + ], + "0x0000000000000000000000000000000000000000000000000000000000000001": [ + "0x001c806f1b1a4a415999e13b946ce3f02118bfba340eef5f8b69e6219b1720444d0000000000000000000000000000000000000000000000000000000000000000", + "0x002d9304fd0492e39585c8028e1bcd58987e5c87aa54e7633281ae4adb3d5c3c4d192a3a10c0fbb57f67fed42c46e4f24c7bbe2746aab651e239d3108931b8249f", + "0x011bd20834f5de9830c643778a2e88a3a1363c8b9ac083d36d75bf87c49953e65e0101000000000000000000000000000007179993df93db69cfdefca8af12ffcc24f3188c00", + "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" + ] + } + } + }, + "executionResults": [ + { + "gas": 54629, + "failed": false, + "from": { + "address": "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "nonce": 225, + "balance": "0x56bc75e2d630ffffffffffffffffffffffffffffffffffff334673ca53e4a2", + "codeHash": "0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470" + }, + "to": { + "address": "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "nonce": 12, + "balance": "0x0", + "codeHash": "0x0197f7ef0aab588fbcc511af4e7d236206b90e8fbe1adfc7afe76c181cc4e9f0" + }, + "accountAfter": [ + { + "address": "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "nonce": 226, + "balance": "0x56bc75e2d630ffffffffffffffffffffffffffffffffffff334673c8d2c85c", + "codeHash": "0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470" + }, + { + "address": "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "nonce": 13, + "balance": "0x0", + "codeHash": "0x0197f7ef0aab588fbcc511af4e7d236206b90e8fbe1adfc7afe76c181cc4e9f0" + } + ], + "codeHash": "0x0197f7ef0aab588fbcc511af4e7d236206b90e8fbe1adfc7afe76c181cc4e9f0", + "byteCode": "0x608060405234801561001057600080fd5b50600436106100575760003560e01c806313ab33b11461005c57806320408cd91461008c578063314a09a8146100bc578063c5b0437c146100da578063ce0dbd67146100f6575b600080fd5b61007660048036038101906100719190610323565b610112565b604051610083919061036a565b60405180910390f35b6100a660048036038101906100a19190610323565b610155565b6040516100b3919061036a565b60405180910390f35b6100c4610197565b6040516100d1919061036a565b60405180910390f35b6100f460048036038101906100ef9190610323565b6101c0565b005b610110600480360381019061010b9190610323565b61023c565b005b600081604051610121906102f5565b61012b9190610385565b604051809103906000f0801561013e5760015b61014b5760009050610150565b809150505b919050565b6000808260405161016590610301565b61016f9190610385565b604051809103906000f08015801561018b573d6000803e3d6000fd5b50905080915050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000816040516101cf90610301565b6101d99190610385565b604051809103906000f0801580156101f5573d6000803e3d6000fd5b509050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b80604051610249906102f5565b6102539190610385565b604051809103906000f080156102665760015b6102b05760008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506102f2565b806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505b50565b60e2806103f483390190565b6103ab806104d683390190565b60008135905061031d816103dc565b92915050565b60006020828403121561033557600080fd5b60006103438482850161030e565b91505092915050565b610355816103a0565b82525050565b610364816103d2565b82525050565b600060208201905061037f600083018461034c565b92915050565b600060208201905061039a600083018461035b565b92915050565b60006103ab826103b2565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6103e5816103d2565b81146103f057600080fd5b5056fe6080604052348015600f57600080fd5b5060405160e238038060e28339818101604052810190602d91906052565b6000811415603a57600080fd5b506096565b600081519050604c816082565b92915050565b600060208284031215606357600080fd5b6000606f84828501603f565b91505092915050565b6000819050919050565b6089816078565b8114609357600080fd5b50565b603f8060a36000396000f3fe6080604052600080fdfea2646970667358221220d980928765b61eb01523442146dc4518e079360da1cc4a7f1ab97c88f137c27e64736f6c63430008040033608060405234801561001057600080fd5b506040516103ab3803806103ab83398181016040528101906100329190610054565b806000819055505061009e565b60008151905061004e81610087565b92915050565b60006020828403121561006657600080fd5b60006100748482850161003f565b91505092915050565b6000819050919050565b6100908161007d565b811461009b57600080fd5b50565b6102fe806100ad6000396000f3fe6080604052600436106100555760003560e01c806321848c461461005a5780632e64cec114610083578063b0f2b72a146100ae578063c4e96ec0146100d7578063e5223f88146100f3578063f34176731461010f575b600080fd5b34801561006657600080fd5b50610081600480360381019061007c91906101d7565b61013a565b005b34801561008f57600080fd5b5061009861014f565b6040516100a59190610252565b60405180910390f35b3480156100ba57600080fd5b506100d560048036038101906100d091906101d7565b610158565b005b6100f160048036038101906100ec91906101d7565b610162565b005b61010d600480360381019061010891906101d7565b6101a4565b005b34801561011b57600080fd5b506101246101ae565b6040516101319190610252565b60405180910390f35b80600081905550600061014c57600080fd5b50565b60008054905090565b8060008190555050565b806000819055506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161019b90610232565b60405180910390fd5b8060008190555050565b6000806101ba57600080fd5b600054905090565b6000813590506101d1816102b1565b92915050565b6000602082840312156101e957600080fd5b60006101f7848285016101c2565b91505092915050565b600061020d600c8361026d565b915061021882610288565b602082019050919050565b61022c8161027e565b82525050565b6000602082019050818103600083015261024b81610200565b9050919050565b60006020820190506102676000830184610223565b92915050565b600082825260208201905092915050565b6000819050919050565b7f64656c696265726174656c790000000000000000000000000000000000000000600082015250565b6102ba8161027e565b81146102c557600080fd5b5056fea26469706673582212206fa6988b66dece47dc22658a0058d7f113ce303b23abdbfb3e29ee300a66489464736f6c63430008040033a264697066735822122024e6552371fbd96476a2ebdebcd94517f44d186fe1b33f5e31629291591786e764736f6c63430008040033", + "structLogs": [ + { + "pc": 0, + "op": "PUSH1", + "gas": 3000208, + "gasCost": 3, + "depth": 1 + }, + { + "pc": 2, + "op": "PUSH1", + "gas": 3000205, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80" + ] + }, + { + "pc": 4, + "op": "MSTORE", + "gas": 3000202, + "gasCost": 12, + "depth": 1, + "stack": [ + "0x80", + "0x40" + ] + }, + { + "pc": 5, + "op": "CALLVALUE", + "gas": 3000190, + "gasCost": 2, + "depth": 1 + }, + { + "pc": 6, + "op": "DUP1", + "gas": 3000188, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 7, + "op": "ISZERO", + "gas": 3000185, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0", + "0x0" + ] + }, + { + "pc": 8, + "op": "PUSH2", + "gas": 3000182, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0", + "0x1" + ] + }, + { + "pc": 11, + "op": "JUMPI", + "gas": 3000179, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x0", + "0x1", + "0x10" + ] + }, + { + "pc": 16, + "op": "JUMPDEST", + "gas": 3000169, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 17, + "op": "POP", + "gas": 3000168, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 18, + "op": "PUSH1", + "gas": 3000166, + "gasCost": 3, + "depth": 1 + }, + { + "pc": 20, + "op": "CALLDATASIZE", + "gas": 3000163, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x4" + ] + }, + { + "pc": 21, + "op": "LT", + "gas": 3000161, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4", + "0x24" + ] + }, + { + "pc": 22, + "op": "PUSH2", + "gas": 3000158, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 25, + "op": "JUMPI", + "gas": 3000155, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x0", + "0x57" + ] + }, + { + "pc": 26, + "op": "PUSH1", + "gas": 3000145, + "gasCost": 3, + "depth": 1 + }, + { + "pc": 28, + "op": "CALLDATALOAD", + "gas": 3000142, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 29, + "op": "PUSH1", + "gas": 3000139, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd6700000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 31, + "op": "SHR", + "gas": 3000136, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd6700000000000000000000000000000000000000000000000000000000", + "0xe0" + ] + }, + { + "pc": 32, + "op": "DUP1", + "gas": 3000133, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67" + ] + }, + { + "pc": 33, + "op": "PUSH4", + "gas": 3000130, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0xce0dbd67" + ] + }, + { + "pc": 38, + "op": "EQ", + "gas": 3000127, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0xce0dbd67", + "0x13ab33b1" + ] + }, + { + "pc": 39, + "op": "PUSH2", + "gas": 3000124, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x0" + ] + }, + { + "pc": 42, + "op": "JUMPI", + "gas": 3000121, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x0", + "0x5c" + ] + }, + { + "pc": 43, + "op": "DUP1", + "gas": 3000111, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67" + ] + }, + { + "pc": 44, + "op": "PUSH4", + "gas": 3000108, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0xce0dbd67" + ] + }, + { + "pc": 49, + "op": "EQ", + "gas": 3000105, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0xce0dbd67", + "0x20408cd9" + ] + }, + { + "pc": 50, + "op": "PUSH2", + "gas": 3000102, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x0" + ] + }, + { + "pc": 53, + "op": "JUMPI", + "gas": 3000099, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x0", + "0x8c" + ] + }, + { + "pc": 54, + "op": "DUP1", + "gas": 3000089, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67" + ] + }, + { + "pc": 55, + "op": "PUSH4", + "gas": 3000086, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0xce0dbd67" + ] + }, + { + "pc": 60, + "op": "EQ", + "gas": 3000083, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0xce0dbd67", + "0x314a09a8" + ] + }, + { + "pc": 61, + "op": "PUSH2", + "gas": 3000080, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x0" + ] + }, + { + "pc": 64, + "op": "JUMPI", + "gas": 3000077, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x0", + "0xbc" + ] + }, + { + "pc": 65, + "op": "DUP1", + "gas": 3000067, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67" + ] + }, + { + "pc": 66, + "op": "PUSH4", + "gas": 3000064, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0xce0dbd67" + ] + }, + { + "pc": 71, + "op": "EQ", + "gas": 3000061, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0xce0dbd67", + "0xc5b0437c" + ] + }, + { + "pc": 72, + "op": "PUSH2", + "gas": 3000058, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x0" + ] + }, + { + "pc": 75, + "op": "JUMPI", + "gas": 3000055, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x0", + "0xda" + ] + }, + { + "pc": 76, + "op": "DUP1", + "gas": 3000045, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67" + ] + }, + { + "pc": 77, + "op": "PUSH4", + "gas": 3000042, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0xce0dbd67" + ] + }, + { + "pc": 82, + "op": "EQ", + "gas": 3000039, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0xce0dbd67", + "0xce0dbd67" + ] + }, + { + "pc": 83, + "op": "PUSH2", + "gas": 3000036, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x1" + ] + }, + { + "pc": 86, + "op": "JUMPI", + "gas": 3000033, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x1", + "0xf6" + ] + }, + { + "pc": 246, + "op": "JUMPDEST", + "gas": 3000023, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xce0dbd67" + ] + }, + { + "pc": 247, + "op": "PUSH2", + "gas": 3000022, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67" + ] + }, + { + "pc": 250, + "op": "PUSH1", + "gas": 3000019, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110" + ] + }, + { + "pc": 252, + "op": "DUP1", + "gas": 3000016, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x4" + ] + }, + { + "pc": 253, + "op": "CALLDATASIZE", + "gas": 3000013, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x4", + "0x4" + ] + }, + { + "pc": 254, + "op": "SUB", + "gas": 3000011, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x4", + "0x4", + "0x24" + ] + }, + { + "pc": 255, + "op": "DUP2", + "gas": 3000008, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x4", + "0x20" + ] + }, + { + "pc": 256, + "op": "ADD", + "gas": 3000005, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x4", + "0x20", + "0x4" + ] + }, + { + "pc": 257, + "op": "SWAP1", + "gas": 3000002, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x4", + "0x24" + ] + }, + { + "pc": 258, + "op": "PUSH2", + "gas": 2999999, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x24", + "0x4" + ] + }, + { + "pc": 261, + "op": "SWAP2", + "gas": 2999996, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x24", + "0x4", + "0x10b" + ] + }, + { + "pc": 262, + "op": "SWAP1", + "gas": 2999993, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x10b", + "0x4", + "0x24" + ] + }, + { + "pc": 263, + "op": "PUSH2", + "gas": 2999990, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x10b", + "0x24", + "0x4" + ] + }, + { + "pc": 266, + "op": "JUMP", + "gas": 2999987, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x323" + ] + }, + { + "pc": 803, + "op": "JUMPDEST", + "gas": 2999979, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x10b", + "0x24", + "0x4" + ] + }, + { + "pc": 804, + "op": "PUSH1", + "gas": 2999978, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x10b", + "0x24", + "0x4" + ] + }, + { + "pc": 806, + "op": "PUSH1", + "gas": 2999975, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 808, + "op": "DUP3", + "gas": 2999972, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x20" + ] + }, + { + "pc": 809, + "op": "DUP5", + "gas": 2999969, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x20", + "0x4" + ] + }, + { + "pc": 810, + "op": "SUB", + "gas": 2999966, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x20", + "0x4", + "0x24" + ] + }, + { + "pc": 811, + "op": "SLT", + "gas": 2999963, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x20", + "0x20" + ] + }, + { + "pc": 812, + "op": "ISZERO", + "gas": 2999960, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0" + ] + }, + { + "pc": 813, + "op": "PUSH2", + "gas": 2999957, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x1" + ] + }, + { + "pc": 816, + "op": "JUMPI", + "gas": 2999954, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x1", + "0x335" + ] + }, + { + "pc": 821, + "op": "JUMPDEST", + "gas": 2999944, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 822, + "op": "PUSH1", + "gas": 2999943, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 824, + "op": "PUSH2", + "gas": 2999940, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0" + ] + }, + { + "pc": 827, + "op": "DUP5", + "gas": 2999937, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343" + ] + }, + { + "pc": 828, + "op": "DUP3", + "gas": 2999934, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24" + ] + }, + { + "pc": 829, + "op": "DUP6", + "gas": 2999931, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x0" + ] + }, + { + "pc": 830, + "op": "ADD", + "gas": 2999928, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x0", + "0x4" + ] + }, + { + "pc": 831, + "op": "PUSH2", + "gas": 2999925, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4" + ] + }, + { + "pc": 834, + "op": "JUMP", + "gas": 2999922, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x30e" + ] + }, + { + "pc": 782, + "op": "JUMPDEST", + "gas": 2999914, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4" + ] + }, + { + "pc": 783, + "op": "PUSH1", + "gas": 2999913, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4" + ] + }, + { + "pc": 785, + "op": "DUP2", + "gas": 2999910, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 786, + "op": "CALLDATALOAD", + "gas": 2999907, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x0", + "0x4" + ] + }, + { + "pc": 787, + "op": "SWAP1", + "gas": 2999904, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x0", + "0x0" + ] + }, + { + "pc": 788, + "op": "POP", + "gas": 2999901, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x0", + "0x0" + ] + }, + { + "pc": 789, + "op": "PUSH2", + "gas": 2999899, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 792, + "op": "DUP2", + "gas": 2999896, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x0", + "0x31d" + ] + }, + { + "pc": 793, + "op": "PUSH2", + "gas": 2999893, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x0", + "0x31d", + "0x0" + ] + }, + { + "pc": 796, + "op": "JUMP", + "gas": 2999890, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x0", + "0x31d", + "0x0", + "0x3dc" + ] + }, + { + "pc": 988, + "op": "JUMPDEST", + "gas": 2999882, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x0", + "0x31d", + "0x0" + ] + }, + { + "pc": 989, + "op": "PUSH2", + "gas": 2999881, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x0", + "0x31d", + "0x0" + ] + }, + { + "pc": 992, + "op": "DUP2", + "gas": 2999878, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x0", + "0x31d", + "0x0", + "0x3e5" + ] + }, + { + "pc": 993, + "op": "PUSH2", + "gas": 2999875, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x0", + "0x31d", + "0x0", + "0x3e5", + "0x0" + ] + }, + { + "pc": 996, + "op": "JUMP", + "gas": 2999872, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x0", + "0x31d", + "0x0", + "0x3e5", + "0x0", + "0x3d2" + ] + }, + { + "pc": 978, + "op": "JUMPDEST", + "gas": 2999864, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x0", + "0x31d", + "0x0", + "0x3e5", + "0x0" + ] + }, + { + "pc": 979, + "op": "PUSH1", + "gas": 2999863, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x0", + "0x31d", + "0x0", + "0x3e5", + "0x0" + ] + }, + { + "pc": 981, + "op": "DUP2", + "gas": 2999860, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x0", + "0x31d", + "0x0", + "0x3e5", + "0x0", + "0x0" + ] + }, + { + "pc": 982, + "op": "SWAP1", + "gas": 2999857, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x0", + "0x31d", + "0x0", + "0x3e5", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 983, + "op": "POP", + "gas": 2999854, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x0", + "0x31d", + "0x0", + "0x3e5", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 984, + "op": "SWAP2", + "gas": 2999852, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x0", + "0x31d", + "0x0", + "0x3e5", + "0x0", + "0x0" + ] + }, + { + "pc": 985, + "op": "SWAP1", + "gas": 2999849, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x0", + "0x31d", + "0x0", + "0x0", + "0x0", + "0x3e5" + ] + }, + { + "pc": 986, + "op": "POP", + "gas": 2999846, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x0", + "0x31d", + "0x0", + "0x0", + "0x3e5", + "0x0" + ] + }, + { + "pc": 987, + "op": "JUMP", + "gas": 2999844, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x0", + "0x31d", + "0x0", + "0x0", + "0x3e5" + ] + }, + { + "pc": 997, + "op": "JUMPDEST", + "gas": 2999836, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x0", + "0x31d", + "0x0", + "0x0" + ] + }, + { + "pc": 998, + "op": "DUP2", + "gas": 2999835, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x0", + "0x31d", + "0x0", + "0x0" + ] + }, + { + "pc": 999, + "op": "EQ", + "gas": 2999832, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x0", + "0x31d", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 1000, + "op": "PUSH2", + "gas": 2999829, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x0", + "0x31d", + "0x0", + "0x1" + ] + }, + { + "pc": 1003, + "op": "JUMPI", + "gas": 2999826, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x0", + "0x31d", + "0x0", + "0x1", + "0x3f0" + ] + }, + { + "pc": 1008, + "op": "JUMPDEST", + "gas": 2999816, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x0", + "0x31d", + "0x0" + ] + }, + { + "pc": 1009, + "op": "POP", + "gas": 2999815, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x0", + "0x31d", + "0x0" + ] + }, + { + "pc": 1010, + "op": "JUMP", + "gas": 2999813, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x0", + "0x31d" + ] + }, + { + "pc": 797, + "op": "JUMPDEST", + "gas": 2999805, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 798, + "op": "SWAP3", + "gas": 2999804, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 799, + "op": "SWAP2", + "gas": 2999801, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x0", + "0x24", + "0x4", + "0x343" + ] + }, + { + "pc": 800, + "op": "POP", + "gas": 2999798, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x0", + "0x343", + "0x4", + "0x24" + ] + }, + { + "pc": 801, + "op": "POP", + "gas": 2999796, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x0", + "0x343", + "0x4" + ] + }, + { + "pc": 802, + "op": "JUMP", + "gas": 2999794, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x0", + "0x343" + ] + }, + { + "pc": 835, + "op": "JUMPDEST", + "gas": 2999786, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 836, + "op": "SWAP2", + "gas": 2999785, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 837, + "op": "POP", + "gas": 2999782, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 838, + "op": "POP", + "gas": 2999780, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0" + ] + }, + { + "pc": 839, + "op": "SWAP3", + "gas": 2999778, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 840, + "op": "SWAP2", + "gas": 2999775, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x0", + "0x24", + "0x4", + "0x10b" + ] + }, + { + "pc": 841, + "op": "POP", + "gas": 2999772, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x0", + "0x10b", + "0x4", + "0x24" + ] + }, + { + "pc": 842, + "op": "POP", + "gas": 2999770, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x0", + "0x10b", + "0x4" + ] + }, + { + "pc": 843, + "op": "JUMP", + "gas": 2999768, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x0", + "0x10b" + ] + }, + { + "pc": 267, + "op": "JUMPDEST", + "gas": 2999760, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x0" + ] + }, + { + "pc": 268, + "op": "PUSH2", + "gas": 2999759, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x0" + ] + }, + { + "pc": 271, + "op": "JUMP", + "gas": 2999756, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x0", + "0x23c" + ] + }, + { + "pc": 572, + "op": "JUMPDEST", + "gas": 2999748, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x0" + ] + }, + { + "pc": 573, + "op": "DUP1", + "gas": 2999747, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x0" + ] + }, + { + "pc": 574, + "op": "PUSH1", + "gas": 2999744, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x0", + "0x0" + ] + }, + { + "pc": 576, + "op": "MLOAD", + "gas": 2999741, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x0", + "0x0", + "0x40" + ] + }, + { + "pc": 577, + "op": "PUSH2", + "gas": 2999738, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x0", + "0x0", + "0x80" + ] + }, + { + "pc": 580, + "op": "SWAP1", + "gas": 2999735, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x0", + "0x0", + "0x80", + "0x249" + ] + }, + { + "pc": 581, + "op": "PUSH2", + "gas": 2999732, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x0", + "0x0", + "0x249", + "0x80" + ] + }, + { + "pc": 584, + "op": "JUMP", + "gas": 2999729, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x0", + "0x0", + "0x249", + "0x80", + "0x2f5" + ] + }, + { + "pc": 757, + "op": "JUMPDEST", + "gas": 2999721, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x0", + "0x0", + "0x249", + "0x80" + ] + }, + { + "pc": 758, + "op": "PUSH1", + "gas": 2999720, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x0", + "0x0", + "0x249", + "0x80" + ] + }, + { + "pc": 760, + "op": "DUP1", + "gas": 2999717, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x0", + "0x0", + "0x249", + "0x80", + "0xe2" + ] + }, + { + "pc": 761, + "op": "PUSH2", + "gas": 2999714, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x0", + "0x0", + "0x249", + "0x80", + "0xe2", + "0xe2" + ] + }, + { + "pc": 764, + "op": "DUP4", + "gas": 2999711, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x0", + "0x0", + "0x249", + "0x80", + "0xe2", + "0xe2", + "0x3f4" + ] + }, + { + "pc": 765, + "op": "CODECOPY", + "gas": 2999708, + "gasCost": 54, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x0", + "0x0", + "0x249", + "0x80", + "0xe2", + "0xe2", + "0x3f4", + "0x80" + ], + "extraData": { + "codeList": [ + "0x608060405234801561001057600080fd5b50600436106100575760003560e01c806313ab33b11461005c57806320408cd91461008c578063314a09a8146100bc578063c5b0437c146100da578063ce0dbd67146100f6575b600080fd5b61007660048036038101906100719190610323565b610112565b604051610083919061036a565b60405180910390f35b6100a660048036038101906100a19190610323565b610155565b6040516100b3919061036a565b60405180910390f35b6100c4610197565b6040516100d1919061036a565b60405180910390f35b6100f460048036038101906100ef9190610323565b6101c0565b005b610110600480360381019061010b9190610323565b61023c565b005b600081604051610121906102f5565b61012b9190610385565b604051809103906000f0801561013e5760015b61014b5760009050610150565b809150505b919050565b6000808260405161016590610301565b61016f9190610385565b604051809103906000f08015801561018b573d6000803e3d6000fd5b50905080915050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000816040516101cf90610301565b6101d99190610385565b604051809103906000f0801580156101f5573d6000803e3d6000fd5b509050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b80604051610249906102f5565b6102539190610385565b604051809103906000f080156102665760015b6102b05760008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506102f2565b806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505b50565b60e2806103f483390190565b6103ab806104d683390190565b60008135905061031d816103dc565b92915050565b60006020828403121561033557600080fd5b60006103438482850161030e565b91505092915050565b610355816103a0565b82525050565b610364816103d2565b82525050565b600060208201905061037f600083018461034c565b92915050565b600060208201905061039a600083018461035b565b92915050565b60006103ab826103b2565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6103e5816103d2565b81146103f057600080fd5b5056fe6080604052348015600f57600080fd5b5060405160e238038060e28339818101604052810190602d91906052565b6000811415603a57600080fd5b506096565b600081519050604c816082565b92915050565b600060208284031215606357600080fd5b6000606f84828501603f565b91505092915050565b6000819050919050565b6089816078565b8114609357600080fd5b50565b603f8060a36000396000f3fe6080604052600080fdfea2646970667358221220d980928765b61eb01523442146dc4518e079360da1cc4a7f1ab97c88f137c27e64736f6c63430008040033608060405234801561001057600080fd5b506040516103ab3803806103ab83398181016040528101906100329190610054565b806000819055505061009e565b60008151905061004e81610087565b92915050565b60006020828403121561006657600080fd5b60006100748482850161003f565b91505092915050565b6000819050919050565b6100908161007d565b811461009b57600080fd5b50565b6102fe806100ad6000396000f3fe6080604052600436106100555760003560e01c806321848c461461005a5780632e64cec114610083578063b0f2b72a146100ae578063c4e96ec0146100d7578063e5223f88146100f3578063f34176731461010f575b600080fd5b34801561006657600080fd5b50610081600480360381019061007c91906101d7565b61013a565b005b34801561008f57600080fd5b5061009861014f565b6040516100a59190610252565b60405180910390f35b3480156100ba57600080fd5b506100d560048036038101906100d091906101d7565b610158565b005b6100f160048036038101906100ec91906101d7565b610162565b005b61010d600480360381019061010891906101d7565b6101a4565b005b34801561011b57600080fd5b506101246101ae565b6040516101319190610252565b60405180910390f35b80600081905550600061014c57600080fd5b50565b60008054905090565b8060008190555050565b806000819055506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161019b90610232565b60405180910390fd5b8060008190555050565b6000806101ba57600080fd5b600054905090565b6000813590506101d1816102b1565b92915050565b6000602082840312156101e957600080fd5b60006101f7848285016101c2565b91505092915050565b600061020d600c8361026d565b915061021882610288565b602082019050919050565b61022c8161027e565b82525050565b6000602082019050818103600083015261024b81610200565b9050919050565b60006020820190506102676000830184610223565b92915050565b600082825260208201905092915050565b6000819050919050565b7f64656c696265726174656c790000000000000000000000000000000000000000600082015250565b6102ba8161027e565b81146102c557600080fd5b5056fea26469706673582212206fa6988b66dece47dc22658a0058d7f113ce303b23abdbfb3e29ee300a66489464736f6c63430008040033a264697066735822122024e6552371fbd96476a2ebdebcd94517f44d186fe1b33f5e31629291591786e764736f6c63430008040033" + ] + } + }, + { + "pc": 766, + "op": "ADD", + "gas": 2999654, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x0", + "0x0", + "0x249", + "0x80", + "0xe2" + ] + }, + { + "pc": 767, + "op": "SWAP1", + "gas": 2999651, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x0", + "0x0", + "0x249", + "0x162" + ] + }, + { + "pc": 768, + "op": "JUMP", + "gas": 2999648, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x0", + "0x0", + "0x162", + "0x249" + ] + }, + { + "pc": 585, + "op": "JUMPDEST", + "gas": 2999640, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x0", + "0x0", + "0x162" + ] + }, + { + "pc": 586, + "op": "PUSH2", + "gas": 2999639, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x0", + "0x0", + "0x162" + ] + }, + { + "pc": 589, + "op": "SWAP2", + "gas": 2999636, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x0", + "0x0", + "0x162", + "0x253" + ] + }, + { + "pc": 590, + "op": "SWAP1", + "gas": 2999633, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x0", + "0x253", + "0x162", + "0x0" + ] + }, + { + "pc": 591, + "op": "PUSH2", + "gas": 2999630, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x0", + "0x253", + "0x0", + "0x162" + ] + }, + { + "pc": 594, + "op": "JUMP", + "gas": 2999627, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x0", + "0x253", + "0x0", + "0x162", + "0x385" + ] + }, + { + "pc": 901, + "op": "JUMPDEST", + "gas": 2999619, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x0", + "0x253", + "0x0", + "0x162" + ] + }, + { + "pc": 902, + "op": "PUSH1", + "gas": 2999618, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x0", + "0x253", + "0x0", + "0x162" + ] + }, + { + "pc": 904, + "op": "PUSH1", + "gas": 2999615, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x0", + "0x253", + "0x0", + "0x162", + "0x0" + ] + }, + { + "pc": 906, + "op": "DUP3", + "gas": 2999612, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x0", + "0x253", + "0x0", + "0x162", + "0x0", + "0x20" + ] + }, + { + "pc": 907, + "op": "ADD", + "gas": 2999609, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x0", + "0x253", + "0x0", + "0x162", + "0x0", + "0x20", + "0x162" + ] + }, + { + "pc": 908, + "op": "SWAP1", + "gas": 2999606, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x0", + "0x253", + "0x0", + "0x162", + "0x0", + "0x182" + ] + }, + { + "pc": 909, + "op": "POP", + "gas": 2999603, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x0", + "0x253", + "0x0", + "0x162", + "0x182", + "0x0" + ] + }, + { + "pc": 910, + "op": "PUSH2", + "gas": 2999601, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x0", + "0x253", + "0x0", + "0x162", + "0x182" + ] + }, + { + "pc": 913, + "op": "PUSH1", + "gas": 2999598, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x0", + "0x253", + "0x0", + "0x162", + "0x182", + "0x39a" + ] + }, + { + "pc": 915, + "op": "DUP4", + "gas": 2999595, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x0", + "0x253", + "0x0", + "0x162", + "0x182", + "0x39a", + "0x0" + ] + }, + { + "pc": 916, + "op": "ADD", + "gas": 2999592, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x0", + "0x253", + "0x0", + "0x162", + "0x182", + "0x39a", + "0x0", + "0x162" + ] + }, + { + "pc": 917, + "op": "DUP5", + "gas": 2999589, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x0", + "0x253", + "0x0", + "0x162", + "0x182", + "0x39a", + "0x162" + ] + }, + { + "pc": 918, + "op": "PUSH2", + "gas": 2999586, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x0", + "0x253", + "0x0", + "0x162", + "0x182", + "0x39a", + "0x162", + "0x0" + ] + }, + { + "pc": 921, + "op": "JUMP", + "gas": 2999583, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x0", + "0x253", + "0x0", + "0x162", + "0x182", + "0x39a", + "0x162", + "0x0", + "0x35b" + ] + }, + { + "pc": 859, + "op": "JUMPDEST", + "gas": 2999575, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x0", + "0x253", + "0x0", + "0x162", + "0x182", + "0x39a", + "0x162", + "0x0" + ] + }, + { + "pc": 860, + "op": "PUSH2", + "gas": 2999574, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x0", + "0x253", + "0x0", + "0x162", + "0x182", + "0x39a", + "0x162", + "0x0" + ] + }, + { + "pc": 863, + "op": "DUP2", + "gas": 2999571, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x0", + "0x253", + "0x0", + "0x162", + "0x182", + "0x39a", + "0x162", + "0x0", + "0x364" + ] + }, + { + "pc": 864, + "op": "PUSH2", + "gas": 2999568, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x0", + "0x253", + "0x0", + "0x162", + "0x182", + "0x39a", + "0x162", + "0x0", + "0x364", + "0x0" + ] + }, + { + "pc": 867, + "op": "JUMP", + "gas": 2999565, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x0", + "0x253", + "0x0", + "0x162", + "0x182", + "0x39a", + "0x162", + "0x0", + "0x364", + "0x0", + "0x3d2" + ] + }, + { + "pc": 978, + "op": "JUMPDEST", + "gas": 2999557, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x0", + "0x253", + "0x0", + "0x162", + "0x182", + "0x39a", + "0x162", + "0x0", + "0x364", + "0x0" + ] + }, + { + "pc": 979, + "op": "PUSH1", + "gas": 2999556, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x0", + "0x253", + "0x0", + "0x162", + "0x182", + "0x39a", + "0x162", + "0x0", + "0x364", + "0x0" + ] + }, + { + "pc": 981, + "op": "DUP2", + "gas": 2999553, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x0", + "0x253", + "0x0", + "0x162", + "0x182", + "0x39a", + "0x162", + "0x0", + "0x364", + "0x0", + "0x0" + ] + }, + { + "pc": 982, + "op": "SWAP1", + "gas": 2999550, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x0", + "0x253", + "0x0", + "0x162", + "0x182", + "0x39a", + "0x162", + "0x0", + "0x364", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 983, + "op": "POP", + "gas": 2999547, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x0", + "0x253", + "0x0", + "0x162", + "0x182", + "0x39a", + "0x162", + "0x0", + "0x364", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 984, + "op": "SWAP2", + "gas": 2999545, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x0", + "0x253", + "0x0", + "0x162", + "0x182", + "0x39a", + "0x162", + "0x0", + "0x364", + "0x0", + "0x0" + ] + }, + { + "pc": 985, + "op": "SWAP1", + "gas": 2999542, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x0", + "0x253", + "0x0", + "0x162", + "0x182", + "0x39a", + "0x162", + "0x0", + "0x0", + "0x0", + "0x364" + ] + }, + { + "pc": 986, + "op": "POP", + "gas": 2999539, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x0", + "0x253", + "0x0", + "0x162", + "0x182", + "0x39a", + "0x162", + "0x0", + "0x0", + "0x364", + "0x0" + ] + }, + { + "pc": 987, + "op": "JUMP", + "gas": 2999537, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x0", + "0x253", + "0x0", + "0x162", + "0x182", + "0x39a", + "0x162", + "0x0", + "0x0", + "0x364" + ] + }, + { + "pc": 868, + "op": "JUMPDEST", + "gas": 2999529, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x0", + "0x253", + "0x0", + "0x162", + "0x182", + "0x39a", + "0x162", + "0x0", + "0x0" + ] + }, + { + "pc": 869, + "op": "DUP3", + "gas": 2999528, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x0", + "0x253", + "0x0", + "0x162", + "0x182", + "0x39a", + "0x162", + "0x0", + "0x0" + ] + }, + { + "pc": 870, + "op": "MSTORE", + "gas": 2999525, + "gasCost": 6, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x0", + "0x253", + "0x0", + "0x162", + "0x182", + "0x39a", + "0x162", + "0x0", + "0x0", + "0x162" + ] + }, + { + "pc": 871, + "op": "POP", + "gas": 2999519, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x0", + "0x253", + "0x0", + "0x162", + "0x182", + "0x39a", + "0x162", + "0x0" + ] + }, + { + "pc": 872, + "op": "POP", + "gas": 2999517, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x0", + "0x253", + "0x0", + "0x162", + "0x182", + "0x39a", + "0x162" + ] + }, + { + "pc": 873, + "op": "JUMP", + "gas": 2999515, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x0", + "0x253", + "0x0", + "0x162", + "0x182", + "0x39a" + ] + }, + { + "pc": 922, + "op": "JUMPDEST", + "gas": 2999507, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x0", + "0x253", + "0x0", + "0x162", + "0x182" + ] + }, + { + "pc": 923, + "op": "SWAP3", + "gas": 2999506, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x0", + "0x253", + "0x0", + "0x162", + "0x182" + ] + }, + { + "pc": 924, + "op": "SWAP2", + "gas": 2999503, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x0", + "0x182", + "0x0", + "0x162", + "0x253" + ] + }, + { + "pc": 925, + "op": "POP", + "gas": 2999500, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x0", + "0x182", + "0x253", + "0x162", + "0x0" + ] + }, + { + "pc": 926, + "op": "POP", + "gas": 2999498, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x0", + "0x182", + "0x253", + "0x162" + ] + }, + { + "pc": 927, + "op": "JUMP", + "gas": 2999496, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x0", + "0x182", + "0x253" + ] + }, + { + "pc": 595, + "op": "JUMPDEST", + "gas": 2999488, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x0", + "0x182" + ] + }, + { + "pc": 596, + "op": "PUSH1", + "gas": 2999487, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x0", + "0x182" + ] + }, + { + "pc": 598, + "op": "MLOAD", + "gas": 2999484, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x0", + "0x182", + "0x40" + ] + }, + { + "pc": 599, + "op": "DUP1", + "gas": 2999481, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x0", + "0x182", + "0x80" + ] + }, + { + "pc": 600, + "op": "SWAP2", + "gas": 2999478, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x0", + "0x182", + "0x80", + "0x80" + ] + }, + { + "pc": 601, + "op": "SUB", + "gas": 2999475, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x0", + "0x80", + "0x80", + "0x182" + ] + }, + { + "pc": 602, + "op": "SWAP1", + "gas": 2999472, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x0", + "0x80", + "0x102" + ] + }, + { + "pc": 603, + "op": "PUSH1", + "gas": 2999469, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x0", + "0x102", + "0x80" + ] + }, + { + "pc": 605, + "op": "CREATE", + "gas": 2999466, + "gasCost": 32000, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x0", + "0x102", + "0x80", + "0x0" + ], + "extraData": { + "callFailed": true, + "codeList": [ + "0x" + ], + "proofList": [ + { + "address": "0xb9ebde954382d147e2174506f05ee5a4e9c9bdb5", + "nonce": 1, + "balance": "0x0", + "codeHash": "0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470" + }, + { + "address": "0xb9ebde954382d147e2174506f05ee5a4e9c9bdb5", + "nonce": 0, + "balance": "0x0", + "codeHash": "0x0000000000000000000000000000000000000000000000000000000000000000" + } + ], + "caller": [ + { + "address": "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "nonce": 12, + "balance": "0x0", + "codeHash": "0x0197f7ef0aab588fbcc511af4e7d236206b90e8fbe1adfc7afe76c181cc4e9f0" + }, + { + "address": "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "nonce": 13, + "balance": "0x0", + "codeHash": "0x0197f7ef0aab588fbcc511af4e7d236206b90e8fbe1adfc7afe76c181cc4e9f0" + } + ] + } + }, + { + "pc": 0, + "op": "PUSH1", + "gas": 2921100, + "gasCost": 3, + "depth": 2 + }, + { + "pc": 2, + "op": "PUSH1", + "gas": 2921097, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x80" + ] + }, + { + "pc": 4, + "op": "MSTORE", + "gas": 2921094, + "gasCost": 12, + "depth": 2, + "stack": [ + "0x80", + "0x40" + ] + }, + { + "pc": 5, + "op": "CALLVALUE", + "gas": 2921082, + "gasCost": 2, + "depth": 2 + }, + { + "pc": 6, + "op": "DUP1", + "gas": 2921080, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x0" + ] + }, + { + "pc": 7, + "op": "ISZERO", + "gas": 2921077, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x0", + "0x0" + ] + }, + { + "pc": 8, + "op": "PUSH1", + "gas": 2921074, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x0", + "0x1" + ] + }, + { + "pc": 10, + "op": "JUMPI", + "gas": 2921071, + "gasCost": 10, + "depth": 2, + "stack": [ + "0x0", + "0x1", + "0xf" + ] + }, + { + "pc": 15, + "op": "JUMPDEST", + "gas": 2921061, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x0" + ] + }, + { + "pc": 16, + "op": "POP", + "gas": 2921060, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x0" + ] + }, + { + "pc": 17, + "op": "PUSH1", + "gas": 2921058, + "gasCost": 3, + "depth": 2 + }, + { + "pc": 19, + "op": "MLOAD", + "gas": 2921055, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x40" + ] + }, + { + "pc": 20, + "op": "PUSH1", + "gas": 2921052, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x80" + ] + }, + { + "pc": 22, + "op": "CODESIZE", + "gas": 2921049, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x80", + "0xe2" + ], + "extraData": { + "codeList": [ + "0x" + ] + } + }, + { + "pc": 23, + "op": "SUB", + "gas": 2921047, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x80", + "0xe2", + "0x102" + ] + }, + { + "pc": 24, + "op": "DUP1", + "gas": 2921044, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x80", + "0x20" + ] + }, + { + "pc": 25, + "op": "PUSH1", + "gas": 2921041, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x80", + "0x20", + "0x20" + ] + }, + { + "pc": 27, + "op": "DUP4", + "gas": 2921038, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x80", + "0x20", + "0x20", + "0xe2" + ] + }, + { + "pc": 28, + "op": "CODECOPY", + "gas": 2921035, + "gasCost": 12, + "depth": 2, + "stack": [ + "0x80", + "0x20", + "0x20", + "0xe2", + "0x80" + ], + "extraData": { + "codeList": [ + "0x" + ] + } + }, + { + "pc": 29, + "op": "DUP2", + "gas": 2921023, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x80", + "0x20" + ] + }, + { + "pc": 30, + "op": "DUP2", + "gas": 2921020, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x80", + "0x20", + "0x80" + ] + }, + { + "pc": 31, + "op": "ADD", + "gas": 2921017, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x80", + "0x20", + "0x80", + "0x20" + ] + }, + { + "pc": 32, + "op": "PUSH1", + "gas": 2921014, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x80", + "0x20", + "0xa0" + ] + }, + { + "pc": 34, + "op": "MSTORE", + "gas": 2921011, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x80", + "0x20", + "0xa0", + "0x40" + ] + }, + { + "pc": 35, + "op": "DUP2", + "gas": 2921008, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x80", + "0x20" + ] + }, + { + "pc": 36, + "op": "ADD", + "gas": 2921005, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x80", + "0x20", + "0x80" + ] + }, + { + "pc": 37, + "op": "SWAP1", + "gas": 2921002, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x80", + "0xa0" + ] + }, + { + "pc": 38, + "op": "PUSH1", + "gas": 2920999, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xa0", + "0x80" + ] + }, + { + "pc": 40, + "op": "SWAP2", + "gas": 2920996, + "gasCost": 3, + "depth": 2, + "stack": [ + "0xa0", + "0x80", + "0x2d" + ] + }, + { + "pc": 41, + "op": "SWAP1", + "gas": 2920993, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x2d", + "0x80", + "0xa0" + ] + }, + { + "pc": 42, + "op": "PUSH1", + "gas": 2920990, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x2d", + "0xa0", + "0x80" + ] + }, + { + "pc": 44, + "op": "JUMP", + "gas": 2920987, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x52" + ] + }, + { + "pc": 82, + "op": "JUMPDEST", + "gas": 2920979, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x2d", + "0xa0", + "0x80" + ] + }, + { + "pc": 83, + "op": "PUSH1", + "gas": 2920978, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x2d", + "0xa0", + "0x80" + ] + }, + { + "pc": 85, + "op": "PUSH1", + "gas": 2920975, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0" + ] + }, + { + "pc": 87, + "op": "DUP3", + "gas": 2920972, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x20" + ] + }, + { + "pc": 88, + "op": "DUP5", + "gas": 2920969, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x20", + "0x80" + ] + }, + { + "pc": 89, + "op": "SUB", + "gas": 2920966, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x20", + "0x80", + "0xa0" + ] + }, + { + "pc": 90, + "op": "SLT", + "gas": 2920963, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x20", + "0x20" + ] + }, + { + "pc": 91, + "op": "ISZERO", + "gas": 2920960, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0" + ] + }, + { + "pc": 92, + "op": "PUSH1", + "gas": 2920957, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x1" + ] + }, + { + "pc": 94, + "op": "JUMPI", + "gas": 2920954, + "gasCost": 10, + "depth": 2, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x1", + "0x63" + ] + }, + { + "pc": 99, + "op": "JUMPDEST", + "gas": 2920944, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0" + ] + }, + { + "pc": 100, + "op": "PUSH1", + "gas": 2920943, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0" + ] + }, + { + "pc": 102, + "op": "PUSH1", + "gas": 2920940, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0" + ] + }, + { + "pc": 104, + "op": "DUP5", + "gas": 2920937, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f" + ] + }, + { + "pc": 105, + "op": "DUP3", + "gas": 2920934, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0" + ] + }, + { + "pc": 106, + "op": "DUP6", + "gas": 2920931, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x0" + ] + }, + { + "pc": 107, + "op": "ADD", + "gas": 2920928, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x0", + "0x80" + ] + }, + { + "pc": 108, + "op": "PUSH1", + "gas": 2920925, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80" + ] + }, + { + "pc": 110, + "op": "JUMP", + "gas": 2920922, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x3f" + ] + }, + { + "pc": 63, + "op": "JUMPDEST", + "gas": 2920914, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80" + ] + }, + { + "pc": 64, + "op": "PUSH1", + "gas": 2920913, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80" + ] + }, + { + "pc": 66, + "op": "DUP2", + "gas": 2920910, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x0" + ] + }, + { + "pc": 67, + "op": "MLOAD", + "gas": 2920907, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x0", + "0x80" + ] + }, + { + "pc": 68, + "op": "SWAP1", + "gas": 2920904, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x0", + "0x0" + ] + }, + { + "pc": 69, + "op": "POP", + "gas": 2920901, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x0", + "0x0" + ] + }, + { + "pc": 70, + "op": "PUSH1", + "gas": 2920899, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x0" + ] + }, + { + "pc": 72, + "op": "DUP2", + "gas": 2920896, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x0", + "0x4c" + ] + }, + { + "pc": 73, + "op": "PUSH1", + "gas": 2920893, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x0", + "0x4c", + "0x0" + ] + }, + { + "pc": 75, + "op": "JUMP", + "gas": 2920890, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x0", + "0x4c", + "0x0", + "0x82" + ] + }, + { + "pc": 130, + "op": "JUMPDEST", + "gas": 2920882, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x0", + "0x4c", + "0x0" + ] + }, + { + "pc": 131, + "op": "PUSH1", + "gas": 2920881, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x0", + "0x4c", + "0x0" + ] + }, + { + "pc": 133, + "op": "DUP2", + "gas": 2920878, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x0", + "0x4c", + "0x0", + "0x89" + ] + }, + { + "pc": 134, + "op": "PUSH1", + "gas": 2920875, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x0", + "0x4c", + "0x0", + "0x89", + "0x0" + ] + }, + { + "pc": 136, + "op": "JUMP", + "gas": 2920872, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x0", + "0x4c", + "0x0", + "0x89", + "0x0", + "0x78" + ] + }, + { + "pc": 120, + "op": "JUMPDEST", + "gas": 2920864, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x0", + "0x4c", + "0x0", + "0x89", + "0x0" + ] + }, + { + "pc": 121, + "op": "PUSH1", + "gas": 2920863, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x0", + "0x4c", + "0x0", + "0x89", + "0x0" + ] + }, + { + "pc": 123, + "op": "DUP2", + "gas": 2920860, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x0", + "0x4c", + "0x0", + "0x89", + "0x0", + "0x0" + ] + }, + { + "pc": 124, + "op": "SWAP1", + "gas": 2920857, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x0", + "0x4c", + "0x0", + "0x89", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 125, + "op": "POP", + "gas": 2920854, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x0", + "0x4c", + "0x0", + "0x89", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 126, + "op": "SWAP2", + "gas": 2920852, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x0", + "0x4c", + "0x0", + "0x89", + "0x0", + "0x0" + ] + }, + { + "pc": 127, + "op": "SWAP1", + "gas": 2920849, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x0", + "0x4c", + "0x0", + "0x0", + "0x0", + "0x89" + ] + }, + { + "pc": 128, + "op": "POP", + "gas": 2920846, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x0", + "0x4c", + "0x0", + "0x0", + "0x89", + "0x0" + ] + }, + { + "pc": 129, + "op": "JUMP", + "gas": 2920844, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x0", + "0x4c", + "0x0", + "0x0", + "0x89" + ] + }, + { + "pc": 137, + "op": "JUMPDEST", + "gas": 2920836, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x0", + "0x4c", + "0x0", + "0x0" + ] + }, + { + "pc": 138, + "op": "DUP2", + "gas": 2920835, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x0", + "0x4c", + "0x0", + "0x0" + ] + }, + { + "pc": 139, + "op": "EQ", + "gas": 2920832, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x0", + "0x4c", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 140, + "op": "PUSH1", + "gas": 2920829, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x0", + "0x4c", + "0x0", + "0x1" + ] + }, + { + "pc": 142, + "op": "JUMPI", + "gas": 2920826, + "gasCost": 10, + "depth": 2, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x0", + "0x4c", + "0x0", + "0x1", + "0x93" + ] + }, + { + "pc": 147, + "op": "JUMPDEST", + "gas": 2920816, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x0", + "0x4c", + "0x0" + ] + }, + { + "pc": 148, + "op": "POP", + "gas": 2920815, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x0", + "0x4c", + "0x0" + ] + }, + { + "pc": 149, + "op": "JUMP", + "gas": 2920813, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x0", + "0x4c" + ] + }, + { + "pc": 76, + "op": "JUMPDEST", + "gas": 2920805, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x0" + ] + }, + { + "pc": 77, + "op": "SWAP3", + "gas": 2920804, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x0" + ] + }, + { + "pc": 78, + "op": "SWAP2", + "gas": 2920801, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x80", + "0x6f" + ] + }, + { + "pc": 79, + "op": "POP", + "gas": 2920798, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x0", + "0x6f", + "0x80", + "0xa0" + ] + }, + { + "pc": 80, + "op": "POP", + "gas": 2920796, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x0", + "0x6f", + "0x80" + ] + }, + { + "pc": 81, + "op": "JUMP", + "gas": 2920794, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x0", + "0x6f" + ] + }, + { + "pc": 111, + "op": "JUMPDEST", + "gas": 2920786, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 112, + "op": "SWAP2", + "gas": 2920785, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 113, + "op": "POP", + "gas": 2920782, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 114, + "op": "POP", + "gas": 2920780, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0" + ] + }, + { + "pc": 115, + "op": "SWAP3", + "gas": 2920778, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0" + ] + }, + { + "pc": 116, + "op": "SWAP2", + "gas": 2920775, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x0", + "0xa0", + "0x80", + "0x2d" + ] + }, + { + "pc": 117, + "op": "POP", + "gas": 2920772, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x0", + "0x2d", + "0x80", + "0xa0" + ] + }, + { + "pc": 118, + "op": "POP", + "gas": 2920770, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x0", + "0x2d", + "0x80" + ] + }, + { + "pc": 119, + "op": "JUMP", + "gas": 2920768, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x0", + "0x2d" + ] + }, + { + "pc": 45, + "op": "JUMPDEST", + "gas": 2920760, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x0" + ] + }, + { + "pc": 46, + "op": "PUSH1", + "gas": 2920759, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x0" + ] + }, + { + "pc": 48, + "op": "DUP2", + "gas": 2920756, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x0", + "0x0" + ] + }, + { + "pc": 49, + "op": "EQ", + "gas": 2920753, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 50, + "op": "ISZERO", + "gas": 2920750, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x0", + "0x1" + ] + }, + { + "pc": 51, + "op": "PUSH1", + "gas": 2920747, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x0", + "0x0" + ] + }, + { + "pc": 53, + "op": "JUMPI", + "gas": 2920744, + "gasCost": 10, + "depth": 2, + "stack": [ + "0x0", + "0x0", + "0x3a" + ] + }, + { + "pc": 54, + "op": "PUSH1", + "gas": 2920734, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x0" + ] + }, + { + "pc": 56, + "op": "DUP1", + "gas": 2920731, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x0", + "0x0" + ] + }, + { + "pc": 57, + "op": "REVERT", + "gas": 2920728, + "gasCost": 0, + "depth": 2, + "stack": [ + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 606, + "op": "DUP1", + "gas": 2967094, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x0", + "0x0" + ] + }, + { + "pc": 607, + "op": "ISZERO", + "gas": 2967091, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 608, + "op": "PUSH2", + "gas": 2967088, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x0", + "0x0", + "0x1" + ] + }, + { + "pc": 611, + "op": "JUMPI", + "gas": 2967085, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x0", + "0x0", + "0x1", + "0x266" + ] + }, + { + "pc": 614, + "op": "JUMPDEST", + "gas": 2967075, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x0", + "0x0" + ] + }, + { + "pc": 615, + "op": "PUSH2", + "gas": 2967074, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x0", + "0x0" + ] + }, + { + "pc": 618, + "op": "JUMPI", + "gas": 2967071, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x0", + "0x0", + "0x2b0" + ] + }, + { + "pc": 619, + "op": "PUSH1", + "gas": 2967061, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x0" + ] + }, + { + "pc": 621, + "op": "DUP1", + "gas": 2967058, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x0", + "0x0" + ] + }, + { + "pc": 622, + "op": "PUSH1", + "gas": 2967055, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 624, + "op": "PUSH2", + "gas": 2967052, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x0", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 627, + "op": "EXP", + "gas": 2967049, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x0", + "0x0", + "0x0", + "0x0", + "0x100" + ] + }, + { + "pc": 628, + "op": "DUP2", + "gas": 2967039, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x0", + "0x0", + "0x0", + "0x1" + ] + }, + { + "pc": 629, + "op": "SLOAD", + "gas": 2967036, + "gasCost": 2100, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x0", + "0x0", + "0x0", + "0x1", + "0x0" + ], + "storage": { + "0x0000000000000000000000000000000000000000000000000000000000000000": "0x000000000000000000000000080b18cb659f0a532d679e660c9841e1e0991ae1" + }, + "extraData": { + "proofList": [ + { + "address": "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "nonce": 13, + "balance": "0x0", + "codeHash": "0x0197f7ef0aab588fbcc511af4e7d236206b90e8fbe1adfc7afe76c181cc4e9f0", + "storage": { + "key": "0x0000000000000000000000000000000000000000000000000000000000000000", + "value": "0x000000000000000000000000080b18cb659f0a532d679e660c9841e1e0991ae1" + } + } + ] + } + }, + { + "pc": 630, + "op": "DUP2", + "gas": 2964936, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x0", + "0x0", + "0x0", + "0x1", + "0x80b18cb659f0a532d679e660c9841e1e0991ae1" + ] + }, + { + "pc": 631, + "op": "PUSH20", + "gas": 2964933, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x0", + "0x0", + "0x0", + "0x1", + "0x80b18cb659f0a532d679e660c9841e1e0991ae1", + "0x1" + ] + }, + { + "pc": 652, + "op": "MUL", + "gas": 2964930, + "gasCost": 5, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x0", + "0x0", + "0x0", + "0x1", + "0x80b18cb659f0a532d679e660c9841e1e0991ae1", + "0x1", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 653, + "op": "NOT", + "gas": 2964925, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x0", + "0x0", + "0x0", + "0x1", + "0x80b18cb659f0a532d679e660c9841e1e0991ae1", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 654, + "op": "AND", + "gas": 2964922, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x0", + "0x0", + "0x0", + "0x1", + "0x80b18cb659f0a532d679e660c9841e1e0991ae1", + "0xffffffffffffffffffffffff0000000000000000000000000000000000000000" + ] + }, + { + "pc": 655, + "op": "SWAP1", + "gas": 2964919, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x0", + "0x0", + "0x0", + "0x1", + "0x0" + ] + }, + { + "pc": 656, + "op": "DUP4", + "gas": 2964916, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x0", + "0x0", + "0x0", + "0x0", + "0x1" + ] + }, + { + "pc": 657, + "op": "PUSH20", + "gas": 2964913, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x0", + "0x0", + "0x0", + "0x0", + "0x1", + "0x0" + ] + }, + { + "pc": 678, + "op": "AND", + "gas": 2964910, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x0", + "0x0", + "0x0", + "0x0", + "0x1", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 679, + "op": "MUL", + "gas": 2964907, + "gasCost": 5, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x0", + "0x0", + "0x0", + "0x0", + "0x1", + "0x0" + ] + }, + { + "pc": 680, + "op": "OR", + "gas": 2964902, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 681, + "op": "SWAP1", + "gas": 2964899, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x0", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 682, + "op": "SSTORE", + "gas": 2964896, + "gasCost": 2900, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "storage": { + "0x0000000000000000000000000000000000000000000000000000000000000000": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "refund": 4800, + "extraData": { + "proofList": [ + { + "address": "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "nonce": 13, + "balance": "0x0", + "codeHash": "0x0197f7ef0aab588fbcc511af4e7d236206b90e8fbe1adfc7afe76c181cc4e9f0", + "storage": { + "key": "0x0000000000000000000000000000000000000000000000000000000000000000", + "value": "0x000000000000000000000000080b18cb659f0a532d679e660c9841e1e0991ae1" + } + } + ] + } + }, + { + "pc": 683, + "op": "POP", + "gas": 2961996, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x0", + "0x0" + ], + "refund": 4800 + }, + { + "pc": 684, + "op": "PUSH2", + "gas": 2961994, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x0" + ], + "refund": 4800 + }, + { + "pc": 687, + "op": "JUMP", + "gas": 2961991, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x0", + "0x2f2" + ], + "refund": 4800 + }, + { + "pc": 754, + "op": "JUMPDEST", + "gas": 2961983, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x0" + ], + "refund": 4800 + }, + { + "pc": 755, + "op": "POP", + "gas": 2961982, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110", + "0x0" + ], + "refund": 4800 + }, + { + "pc": 756, + "op": "JUMP", + "gas": 2961980, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xce0dbd67", + "0x110" + ], + "refund": 4800 + }, + { + "pc": 272, + "op": "JUMPDEST", + "gas": 2961972, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xce0dbd67" + ], + "refund": 4800 + }, + { + "pc": 273, + "op": "STOP", + "gas": 2961971, + "gasCost": 0, + "depth": 1, + "stack": [ + "0xce0dbd67" + ], + "refund": 4800 + } + ] + }, + { + "gas": 60689, + "failed": false, + "from": { + "address": "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "nonce": 226, + "balance": "0x56bc75e2d630ffffffffffffffffffffffffffffffffffff334673c8d2c85c", + "codeHash": "0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470" + }, + "to": { + "address": "0xda1ad647621a1984ce21b0bab020005fe3b5f4da", + "nonce": 1, + "balance": "0x0", + "codeHash": "0x00c2455a35210099bbbb95bdd1b6a9bfc4702d98ba0f971009391cd8f970e729" + }, + "accountAfter": [ + { + "address": "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "nonce": 227, + "balance": "0x56bc75e2d630ffffffffffffffffffffffffffffffffffff334673c726f3ae", + "codeHash": "0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470" + }, + { + "address": "0xda1ad647621a1984ce21b0bab020005fe3b5f4da", + "nonce": 1, + "balance": "0x0", + "codeHash": "0x00c2455a35210099bbbb95bdd1b6a9bfc4702d98ba0f971009391cd8f970e729" + } + ], + "codeHash": "0x00c2455a35210099bbbb95bdd1b6a9bfc4702d98ba0f971009391cd8f970e729", + "byteCode": "0x608060405234801561001057600080fd5b50600436106100625760003560e01c8063200d2ed214610067578063295a8edc146100855780633719f511146100a15780633e23ee43146100bd5780635696ec35146100db5780635dec31ca146100f7575b600080fd5b61006f610113565b60405161007c9190610665565b60405180910390f35b61009f600480360381019061009a91906105fb565b61013d565b005b6100bb60048036038101906100b691906105fb565b610269565b005b6100c561035e565b6040516100d29190610665565b60405180910390f35b6100f560048036038101906100f091906105fb565b610387565b005b610111600480360381019061010c91906105fb565b61047c565b005b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff166320408cd9836040518263ffffffff1660e01b815260040161019c91906106a0565b602060405180830381600087803b1580156101b657600080fd5b505af11580156101ca573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906101ee91906105d2565b600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161026090610680565b60405180910390fd5b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff166313ab33b1836040518263ffffffff1660e01b81526004016102c891906106a0565b602060405180830381600087803b1580156102e257600080fd5b505af11580156102f6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061031a91906105d2565b600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff166320408cd9836040518263ffffffff1660e01b81526004016103e691906106a0565b602060405180830381600087803b15801561040057600080fd5b505af1158015610414573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061043891906105d2565b600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff166313ab33b1836040518263ffffffff1660e01b81526004016104db91906106a0565b602060405180830381600087803b1580156104f557600080fd5b505af1158015610509573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061052d91906105d2565b600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161059f90610680565b60405180910390fd5b6000815190506105b781610731565b92915050565b6000813590506105cc81610748565b92915050565b6000602082840312156105e457600080fd5b60006105f2848285016105a8565b91505092915050565b60006020828403121561060d57600080fd5b600061061b848285016105bd565b91505092915050565b61062d816106cc565b82525050565b6000610640600c836106bb565b915061064b82610708565b602082019050919050565b61065f816106fe565b82525050565b600060208201905061067a6000830184610624565b92915050565b6000602082019050818103600083015261069981610633565b9050919050565b60006020820190506106b56000830184610656565b92915050565b600082825260208201905092915050565b60006106d7826106de565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b7f64656c696265726174656c790000000000000000000000000000000000000000600082015250565b61073a816106cc565b811461074557600080fd5b50565b610751816106fe565b811461075c57600080fd5b5056fea26469706673582212206d22486e2deddb5e91f0979599a7e467825532693839695bd2c007645b06ee3f64736f6c63430008040033", + "structLogs": [ + { + "pc": 0, + "op": "PUSH1", + "gas": 3000208, + "gasCost": 3, + "depth": 1 + }, + { + "pc": 2, + "op": "PUSH1", + "gas": 3000205, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80" + ] + }, + { + "pc": 4, + "op": "MSTORE", + "gas": 3000202, + "gasCost": 12, + "depth": 1, + "stack": [ + "0x80", + "0x40" + ] + }, + { + "pc": 5, + "op": "CALLVALUE", + "gas": 3000190, + "gasCost": 2, + "depth": 1 + }, + { + "pc": 6, + "op": "DUP1", + "gas": 3000188, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 7, + "op": "ISZERO", + "gas": 3000185, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0", + "0x0" + ] + }, + { + "pc": 8, + "op": "PUSH2", + "gas": 3000182, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0", + "0x1" + ] + }, + { + "pc": 11, + "op": "JUMPI", + "gas": 3000179, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x0", + "0x1", + "0x10" + ] + }, + { + "pc": 16, + "op": "JUMPDEST", + "gas": 3000169, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 17, + "op": "POP", + "gas": 3000168, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 18, + "op": "PUSH1", + "gas": 3000166, + "gasCost": 3, + "depth": 1 + }, + { + "pc": 20, + "op": "CALLDATASIZE", + "gas": 3000163, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x4" + ] + }, + { + "pc": 21, + "op": "LT", + "gas": 3000161, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4", + "0x24" + ] + }, + { + "pc": 22, + "op": "PUSH2", + "gas": 3000158, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 25, + "op": "JUMPI", + "gas": 3000155, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x0", + "0x62" + ] + }, + { + "pc": 26, + "op": "PUSH1", + "gas": 3000145, + "gasCost": 3, + "depth": 1 + }, + { + "pc": 28, + "op": "CALLDATALOAD", + "gas": 3000142, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 29, + "op": "PUSH1", + "gas": 3000139, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f51100000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 31, + "op": "SHR", + "gas": 3000136, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f51100000000000000000000000000000000000000000000000000000000", + "0xe0" + ] + }, + { + "pc": 32, + "op": "DUP1", + "gas": 3000133, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511" + ] + }, + { + "pc": 33, + "op": "PUSH4", + "gas": 3000130, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0x3719f511" + ] + }, + { + "pc": 38, + "op": "EQ", + "gas": 3000127, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0x3719f511", + "0x200d2ed2" + ] + }, + { + "pc": 39, + "op": "PUSH2", + "gas": 3000124, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0x0" + ] + }, + { + "pc": 42, + "op": "JUMPI", + "gas": 3000121, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x3719f511", + "0x0", + "0x67" + ] + }, + { + "pc": 43, + "op": "DUP1", + "gas": 3000111, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511" + ] + }, + { + "pc": 44, + "op": "PUSH4", + "gas": 3000108, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0x3719f511" + ] + }, + { + "pc": 49, + "op": "EQ", + "gas": 3000105, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0x3719f511", + "0x295a8edc" + ] + }, + { + "pc": 50, + "op": "PUSH2", + "gas": 3000102, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0x0" + ] + }, + { + "pc": 53, + "op": "JUMPI", + "gas": 3000099, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x3719f511", + "0x0", + "0x85" + ] + }, + { + "pc": 54, + "op": "DUP1", + "gas": 3000089, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511" + ] + }, + { + "pc": 55, + "op": "PUSH4", + "gas": 3000086, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0x3719f511" + ] + }, + { + "pc": 60, + "op": "EQ", + "gas": 3000083, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0x3719f511", + "0x3719f511" + ] + }, + { + "pc": 61, + "op": "PUSH2", + "gas": 3000080, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0x1" + ] + }, + { + "pc": 64, + "op": "JUMPI", + "gas": 3000077, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x3719f511", + "0x1", + "0xa1" + ] + }, + { + "pc": 161, + "op": "JUMPDEST", + "gas": 3000067, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x3719f511" + ] + }, + { + "pc": 162, + "op": "PUSH2", + "gas": 3000066, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511" + ] + }, + { + "pc": 165, + "op": "PUSH1", + "gas": 3000063, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb" + ] + }, + { + "pc": 167, + "op": "DUP1", + "gas": 3000060, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x4" + ] + }, + { + "pc": 168, + "op": "CALLDATASIZE", + "gas": 3000057, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x4", + "0x4" + ] + }, + { + "pc": 169, + "op": "SUB", + "gas": 3000055, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x4", + "0x4", + "0x24" + ] + }, + { + "pc": 170, + "op": "DUP2", + "gas": 3000052, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x4", + "0x20" + ] + }, + { + "pc": 171, + "op": "ADD", + "gas": 3000049, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x4", + "0x20", + "0x4" + ] + }, + { + "pc": 172, + "op": "SWAP1", + "gas": 3000046, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x4", + "0x24" + ] + }, + { + "pc": 173, + "op": "PUSH2", + "gas": 3000043, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x24", + "0x4" + ] + }, + { + "pc": 176, + "op": "SWAP2", + "gas": 3000040, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x24", + "0x4", + "0xb6" + ] + }, + { + "pc": 177, + "op": "SWAP1", + "gas": 3000037, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0xb6", + "0x4", + "0x24" + ] + }, + { + "pc": 178, + "op": "PUSH2", + "gas": 3000034, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0xb6", + "0x24", + "0x4" + ] + }, + { + "pc": 181, + "op": "JUMP", + "gas": 3000031, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0xb6", + "0x24", + "0x4", + "0x5fb" + ] + }, + { + "pc": 1531, + "op": "JUMPDEST", + "gas": 3000023, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0xb6", + "0x24", + "0x4" + ] + }, + { + "pc": 1532, + "op": "PUSH1", + "gas": 3000022, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0xb6", + "0x24", + "0x4" + ] + }, + { + "pc": 1534, + "op": "PUSH1", + "gas": 3000019, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0xb6", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 1536, + "op": "DUP3", + "gas": 3000016, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0xb6", + "0x24", + "0x4", + "0x0", + "0x20" + ] + }, + { + "pc": 1537, + "op": "DUP5", + "gas": 3000013, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0xb6", + "0x24", + "0x4", + "0x0", + "0x20", + "0x4" + ] + }, + { + "pc": 1538, + "op": "SUB", + "gas": 3000010, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0xb6", + "0x24", + "0x4", + "0x0", + "0x20", + "0x4", + "0x24" + ] + }, + { + "pc": 1539, + "op": "SLT", + "gas": 3000007, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0xb6", + "0x24", + "0x4", + "0x0", + "0x20", + "0x20" + ] + }, + { + "pc": 1540, + "op": "ISZERO", + "gas": 3000004, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0xb6", + "0x24", + "0x4", + "0x0", + "0x0" + ] + }, + { + "pc": 1541, + "op": "PUSH2", + "gas": 3000001, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0xb6", + "0x24", + "0x4", + "0x0", + "0x1" + ] + }, + { + "pc": 1544, + "op": "JUMPI", + "gas": 2999998, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0xb6", + "0x24", + "0x4", + "0x0", + "0x1", + "0x60d" + ] + }, + { + "pc": 1549, + "op": "JUMPDEST", + "gas": 2999988, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0xb6", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 1550, + "op": "PUSH1", + "gas": 2999987, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0xb6", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 1552, + "op": "PUSH2", + "gas": 2999984, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0xb6", + "0x24", + "0x4", + "0x0", + "0x0" + ] + }, + { + "pc": 1555, + "op": "DUP5", + "gas": 2999981, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0xb6", + "0x24", + "0x4", + "0x0", + "0x0", + "0x61b" + ] + }, + { + "pc": 1556, + "op": "DUP3", + "gas": 2999978, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0xb6", + "0x24", + "0x4", + "0x0", + "0x0", + "0x61b", + "0x24" + ] + }, + { + "pc": 1557, + "op": "DUP6", + "gas": 2999975, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0xb6", + "0x24", + "0x4", + "0x0", + "0x0", + "0x61b", + "0x24", + "0x0" + ] + }, + { + "pc": 1558, + "op": "ADD", + "gas": 2999972, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0xb6", + "0x24", + "0x4", + "0x0", + "0x0", + "0x61b", + "0x24", + "0x0", + "0x4" + ] + }, + { + "pc": 1559, + "op": "PUSH2", + "gas": 2999969, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0xb6", + "0x24", + "0x4", + "0x0", + "0x0", + "0x61b", + "0x24", + "0x4" + ] + }, + { + "pc": 1562, + "op": "JUMP", + "gas": 2999966, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0xb6", + "0x24", + "0x4", + "0x0", + "0x0", + "0x61b", + "0x24", + "0x4", + "0x5bd" + ] + }, + { + "pc": 1469, + "op": "JUMPDEST", + "gas": 2999958, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0xb6", + "0x24", + "0x4", + "0x0", + "0x0", + "0x61b", + "0x24", + "0x4" + ] + }, + { + "pc": 1470, + "op": "PUSH1", + "gas": 2999957, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0xb6", + "0x24", + "0x4", + "0x0", + "0x0", + "0x61b", + "0x24", + "0x4" + ] + }, + { + "pc": 1472, + "op": "DUP2", + "gas": 2999954, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0xb6", + "0x24", + "0x4", + "0x0", + "0x0", + "0x61b", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 1473, + "op": "CALLDATALOAD", + "gas": 2999951, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0xb6", + "0x24", + "0x4", + "0x0", + "0x0", + "0x61b", + "0x24", + "0x4", + "0x0", + "0x4" + ] + }, + { + "pc": 1474, + "op": "SWAP1", + "gas": 2999948, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0xb6", + "0x24", + "0x4", + "0x0", + "0x0", + "0x61b", + "0x24", + "0x4", + "0x0", + "0x0" + ] + }, + { + "pc": 1475, + "op": "POP", + "gas": 2999945, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0xb6", + "0x24", + "0x4", + "0x0", + "0x0", + "0x61b", + "0x24", + "0x4", + "0x0", + "0x0" + ] + }, + { + "pc": 1476, + "op": "PUSH2", + "gas": 2999943, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0xb6", + "0x24", + "0x4", + "0x0", + "0x0", + "0x61b", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 1479, + "op": "DUP2", + "gas": 2999940, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0xb6", + "0x24", + "0x4", + "0x0", + "0x0", + "0x61b", + "0x24", + "0x4", + "0x0", + "0x5cc" + ] + }, + { + "pc": 1480, + "op": "PUSH2", + "gas": 2999937, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0xb6", + "0x24", + "0x4", + "0x0", + "0x0", + "0x61b", + "0x24", + "0x4", + "0x0", + "0x5cc", + "0x0" + ] + }, + { + "pc": 1483, + "op": "JUMP", + "gas": 2999934, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0xb6", + "0x24", + "0x4", + "0x0", + "0x0", + "0x61b", + "0x24", + "0x4", + "0x0", + "0x5cc", + "0x0", + "0x748" + ] + }, + { + "pc": 1864, + "op": "JUMPDEST", + "gas": 2999926, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0xb6", + "0x24", + "0x4", + "0x0", + "0x0", + "0x61b", + "0x24", + "0x4", + "0x0", + "0x5cc", + "0x0" + ] + }, + { + "pc": 1865, + "op": "PUSH2", + "gas": 2999925, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0xb6", + "0x24", + "0x4", + "0x0", + "0x0", + "0x61b", + "0x24", + "0x4", + "0x0", + "0x5cc", + "0x0" + ] + }, + { + "pc": 1868, + "op": "DUP2", + "gas": 2999922, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0xb6", + "0x24", + "0x4", + "0x0", + "0x0", + "0x61b", + "0x24", + "0x4", + "0x0", + "0x5cc", + "0x0", + "0x751" + ] + }, + { + "pc": 1869, + "op": "PUSH2", + "gas": 2999919, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0xb6", + "0x24", + "0x4", + "0x0", + "0x0", + "0x61b", + "0x24", + "0x4", + "0x0", + "0x5cc", + "0x0", + "0x751", + "0x0" + ] + }, + { + "pc": 1872, + "op": "JUMP", + "gas": 2999916, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0xb6", + "0x24", + "0x4", + "0x0", + "0x0", + "0x61b", + "0x24", + "0x4", + "0x0", + "0x5cc", + "0x0", + "0x751", + "0x0", + "0x6fe" + ] + }, + { + "pc": 1790, + "op": "JUMPDEST", + "gas": 2999908, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0xb6", + "0x24", + "0x4", + "0x0", + "0x0", + "0x61b", + "0x24", + "0x4", + "0x0", + "0x5cc", + "0x0", + "0x751", + "0x0" + ] + }, + { + "pc": 1791, + "op": "PUSH1", + "gas": 2999907, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0xb6", + "0x24", + "0x4", + "0x0", + "0x0", + "0x61b", + "0x24", + "0x4", + "0x0", + "0x5cc", + "0x0", + "0x751", + "0x0" + ] + }, + { + "pc": 1793, + "op": "DUP2", + "gas": 2999904, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0xb6", + "0x24", + "0x4", + "0x0", + "0x0", + "0x61b", + "0x24", + "0x4", + "0x0", + "0x5cc", + "0x0", + "0x751", + "0x0", + "0x0" + ] + }, + { + "pc": 1794, + "op": "SWAP1", + "gas": 2999901, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0xb6", + "0x24", + "0x4", + "0x0", + "0x0", + "0x61b", + "0x24", + "0x4", + "0x0", + "0x5cc", + "0x0", + "0x751", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 1795, + "op": "POP", + "gas": 2999898, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0xb6", + "0x24", + "0x4", + "0x0", + "0x0", + "0x61b", + "0x24", + "0x4", + "0x0", + "0x5cc", + "0x0", + "0x751", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 1796, + "op": "SWAP2", + "gas": 2999896, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0xb6", + "0x24", + "0x4", + "0x0", + "0x0", + "0x61b", + "0x24", + "0x4", + "0x0", + "0x5cc", + "0x0", + "0x751", + "0x0", + "0x0" + ] + }, + { + "pc": 1797, + "op": "SWAP1", + "gas": 2999893, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0xb6", + "0x24", + "0x4", + "0x0", + "0x0", + "0x61b", + "0x24", + "0x4", + "0x0", + "0x5cc", + "0x0", + "0x0", + "0x0", + "0x751" + ] + }, + { + "pc": 1798, + "op": "POP", + "gas": 2999890, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0xb6", + "0x24", + "0x4", + "0x0", + "0x0", + "0x61b", + "0x24", + "0x4", + "0x0", + "0x5cc", + "0x0", + "0x0", + "0x751", + "0x0" + ] + }, + { + "pc": 1799, + "op": "JUMP", + "gas": 2999888, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0xb6", + "0x24", + "0x4", + "0x0", + "0x0", + "0x61b", + "0x24", + "0x4", + "0x0", + "0x5cc", + "0x0", + "0x0", + "0x751" + ] + }, + { + "pc": 1873, + "op": "JUMPDEST", + "gas": 2999880, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0xb6", + "0x24", + "0x4", + "0x0", + "0x0", + "0x61b", + "0x24", + "0x4", + "0x0", + "0x5cc", + "0x0", + "0x0" + ] + }, + { + "pc": 1874, + "op": "DUP2", + "gas": 2999879, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0xb6", + "0x24", + "0x4", + "0x0", + "0x0", + "0x61b", + "0x24", + "0x4", + "0x0", + "0x5cc", + "0x0", + "0x0" + ] + }, + { + "pc": 1875, + "op": "EQ", + "gas": 2999876, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0xb6", + "0x24", + "0x4", + "0x0", + "0x0", + "0x61b", + "0x24", + "0x4", + "0x0", + "0x5cc", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 1876, + "op": "PUSH2", + "gas": 2999873, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0xb6", + "0x24", + "0x4", + "0x0", + "0x0", + "0x61b", + "0x24", + "0x4", + "0x0", + "0x5cc", + "0x0", + "0x1" + ] + }, + { + "pc": 1879, + "op": "JUMPI", + "gas": 2999870, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0xb6", + "0x24", + "0x4", + "0x0", + "0x0", + "0x61b", + "0x24", + "0x4", + "0x0", + "0x5cc", + "0x0", + "0x1", + "0x75c" + ] + }, + { + "pc": 1884, + "op": "JUMPDEST", + "gas": 2999860, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0xb6", + "0x24", + "0x4", + "0x0", + "0x0", + "0x61b", + "0x24", + "0x4", + "0x0", + "0x5cc", + "0x0" + ] + }, + { + "pc": 1885, + "op": "POP", + "gas": 2999859, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0xb6", + "0x24", + "0x4", + "0x0", + "0x0", + "0x61b", + "0x24", + "0x4", + "0x0", + "0x5cc", + "0x0" + ] + }, + { + "pc": 1886, + "op": "JUMP", + "gas": 2999857, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0xb6", + "0x24", + "0x4", + "0x0", + "0x0", + "0x61b", + "0x24", + "0x4", + "0x0", + "0x5cc" + ] + }, + { + "pc": 1484, + "op": "JUMPDEST", + "gas": 2999849, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0xb6", + "0x24", + "0x4", + "0x0", + "0x0", + "0x61b", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 1485, + "op": "SWAP3", + "gas": 2999848, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0xb6", + "0x24", + "0x4", + "0x0", + "0x0", + "0x61b", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 1486, + "op": "SWAP2", + "gas": 2999845, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0xb6", + "0x24", + "0x4", + "0x0", + "0x0", + "0x0", + "0x24", + "0x4", + "0x61b" + ] + }, + { + "pc": 1487, + "op": "POP", + "gas": 2999842, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0xb6", + "0x24", + "0x4", + "0x0", + "0x0", + "0x0", + "0x61b", + "0x4", + "0x24" + ] + }, + { + "pc": 1488, + "op": "POP", + "gas": 2999840, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0xb6", + "0x24", + "0x4", + "0x0", + "0x0", + "0x0", + "0x61b", + "0x4" + ] + }, + { + "pc": 1489, + "op": "JUMP", + "gas": 2999838, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0xb6", + "0x24", + "0x4", + "0x0", + "0x0", + "0x0", + "0x61b" + ] + }, + { + "pc": 1563, + "op": "JUMPDEST", + "gas": 2999830, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0xb6", + "0x24", + "0x4", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 1564, + "op": "SWAP2", + "gas": 2999829, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0xb6", + "0x24", + "0x4", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 1565, + "op": "POP", + "gas": 2999826, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0xb6", + "0x24", + "0x4", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 1566, + "op": "POP", + "gas": 2999824, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0xb6", + "0x24", + "0x4", + "0x0", + "0x0" + ] + }, + { + "pc": 1567, + "op": "SWAP3", + "gas": 2999822, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0xb6", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 1568, + "op": "SWAP2", + "gas": 2999819, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x24", + "0x4", + "0xb6" + ] + }, + { + "pc": 1569, + "op": "POP", + "gas": 2999816, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0xb6", + "0x4", + "0x24" + ] + }, + { + "pc": 1570, + "op": "POP", + "gas": 2999814, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0xb6", + "0x4" + ] + }, + { + "pc": 1571, + "op": "JUMP", + "gas": 2999812, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0xb6" + ] + }, + { + "pc": 182, + "op": "JUMPDEST", + "gas": 2999804, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0" + ] + }, + { + "pc": 183, + "op": "PUSH2", + "gas": 2999803, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0" + ] + }, + { + "pc": 186, + "op": "JUMP", + "gas": 2999800, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x269" + ] + }, + { + "pc": 617, + "op": "JUMPDEST", + "gas": 2999792, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0" + ] + }, + { + "pc": 618, + "op": "PUSH1", + "gas": 2999791, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0" + ] + }, + { + "pc": 620, + "op": "DUP1", + "gas": 2999788, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x0" + ] + }, + { + "pc": 621, + "op": "PUSH1", + "gas": 2999785, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 623, + "op": "SWAP1", + "gas": 2999782, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 624, + "op": "SLOAD", + "gas": 2999779, + "gasCost": 2100, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "storage": { + "0x0000000000000000000000000000000000000000000000000000000000000000": "0x000000000000000000000000467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a" + }, + "extraData": { + "proofList": [ + { + "address": "0xda1ad647621a1984ce21b0bab020005fe3b5f4da", + "nonce": 1, + "balance": "0x0", + "codeHash": "0x00c2455a35210099bbbb95bdd1b6a9bfc4702d98ba0f971009391cd8f970e729", + "storage": { + "key": "0x0000000000000000000000000000000000000000000000000000000000000000", + "value": "0x000000000000000000000000467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a" + } + } + ] + } + }, + { + "pc": 625, + "op": "SWAP1", + "gas": 2997679, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x0", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a" + ] + }, + { + "pc": 626, + "op": "PUSH2", + "gas": 2997676, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x0" + ] + }, + { + "pc": 629, + "op": "EXP", + "gas": 2997673, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x0", + "0x100" + ] + }, + { + "pc": 630, + "op": "SWAP1", + "gas": 2997663, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x1" + ] + }, + { + "pc": 631, + "op": "DIV", + "gas": 2997660, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x0", + "0x1", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a" + ] + }, + { + "pc": 632, + "op": "PUSH20", + "gas": 2997655, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a" + ] + }, + { + "pc": 653, + "op": "AND", + "gas": 2997652, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 654, + "op": "SWAP1", + "gas": 2997649, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a" + ] + }, + { + "pc": 655, + "op": "POP", + "gas": 2997646, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x0" + ] + }, + { + "pc": 656, + "op": "DUP1", + "gas": 2997644, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a" + ] + }, + { + "pc": 657, + "op": "PUSH20", + "gas": 2997641, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a" + ] + }, + { + "pc": 678, + "op": "AND", + "gas": 2997638, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 679, + "op": "PUSH4", + "gas": 2997635, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a" + ] + }, + { + "pc": 684, + "op": "DUP4", + "gas": 2997632, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1" + ] + }, + { + "pc": 685, + "op": "PUSH1", + "gas": 2997629, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0x0" + ] + }, + { + "pc": 687, + "op": "MLOAD", + "gas": 2997626, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0x0", + "0x40" + ] + }, + { + "pc": 688, + "op": "DUP3", + "gas": 2997623, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0x0", + "0x80" + ] + }, + { + "pc": 689, + "op": "PUSH4", + "gas": 2997620, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0x0", + "0x80", + "0x13ab33b1" + ] + }, + { + "pc": 694, + "op": "AND", + "gas": 2997617, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0x0", + "0x80", + "0x13ab33b1", + "0xffffffff" + ] + }, + { + "pc": 695, + "op": "PUSH1", + "gas": 2997614, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0x0", + "0x80", + "0x13ab33b1" + ] + }, + { + "pc": 697, + "op": "SHL", + "gas": 2997611, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0x0", + "0x80", + "0x13ab33b1", + "0xe0" + ] + }, + { + "pc": 698, + "op": "DUP2", + "gas": 2997608, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0x0", + "0x80", + "0x13ab33b100000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 699, + "op": "MSTORE", + "gas": 2997605, + "gasCost": 9, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0x0", + "0x80", + "0x13ab33b100000000000000000000000000000000000000000000000000000000", + "0x80" + ] + }, + { + "pc": 700, + "op": "PUSH1", + "gas": 2997596, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0x0", + "0x80" + ] + }, + { + "pc": 702, + "op": "ADD", + "gas": 2997593, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0x0", + "0x80", + "0x4" + ] + }, + { + "pc": 703, + "op": "PUSH2", + "gas": 2997590, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0x0", + "0x84" + ] + }, + { + "pc": 706, + "op": "SWAP2", + "gas": 2997587, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0x0", + "0x84", + "0x2c8" + ] + }, + { + "pc": 707, + "op": "SWAP1", + "gas": 2997584, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0x2c8", + "0x84", + "0x0" + ] + }, + { + "pc": 708, + "op": "PUSH2", + "gas": 2997581, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0x2c8", + "0x0", + "0x84" + ] + }, + { + "pc": 711, + "op": "JUMP", + "gas": 2997578, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0x2c8", + "0x0", + "0x84", + "0x6a0" + ] + }, + { + "pc": 1696, + "op": "JUMPDEST", + "gas": 2997570, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0x2c8", + "0x0", + "0x84" + ] + }, + { + "pc": 1697, + "op": "PUSH1", + "gas": 2997569, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0x2c8", + "0x0", + "0x84" + ] + }, + { + "pc": 1699, + "op": "PUSH1", + "gas": 2997566, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0x2c8", + "0x0", + "0x84", + "0x0" + ] + }, + { + "pc": 1701, + "op": "DUP3", + "gas": 2997563, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0x2c8", + "0x0", + "0x84", + "0x0", + "0x20" + ] + }, + { + "pc": 1702, + "op": "ADD", + "gas": 2997560, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0x2c8", + "0x0", + "0x84", + "0x0", + "0x20", + "0x84" + ] + }, + { + "pc": 1703, + "op": "SWAP1", + "gas": 2997557, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0x2c8", + "0x0", + "0x84", + "0x0", + "0xa4" + ] + }, + { + "pc": 1704, + "op": "POP", + "gas": 2997554, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0x2c8", + "0x0", + "0x84", + "0xa4", + "0x0" + ] + }, + { + "pc": 1705, + "op": "PUSH2", + "gas": 2997552, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0x2c8", + "0x0", + "0x84", + "0xa4" + ] + }, + { + "pc": 1708, + "op": "PUSH1", + "gas": 2997549, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0x2c8", + "0x0", + "0x84", + "0xa4", + "0x6b5" + ] + }, + { + "pc": 1710, + "op": "DUP4", + "gas": 2997546, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0x2c8", + "0x0", + "0x84", + "0xa4", + "0x6b5", + "0x0" + ] + }, + { + "pc": 1711, + "op": "ADD", + "gas": 2997543, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0x2c8", + "0x0", + "0x84", + "0xa4", + "0x6b5", + "0x0", + "0x84" + ] + }, + { + "pc": 1712, + "op": "DUP5", + "gas": 2997540, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0x2c8", + "0x0", + "0x84", + "0xa4", + "0x6b5", + "0x84" + ] + }, + { + "pc": 1713, + "op": "PUSH2", + "gas": 2997537, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0x2c8", + "0x0", + "0x84", + "0xa4", + "0x6b5", + "0x84", + "0x0" + ] + }, + { + "pc": 1716, + "op": "JUMP", + "gas": 2997534, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0x2c8", + "0x0", + "0x84", + "0xa4", + "0x6b5", + "0x84", + "0x0", + "0x656" + ] + }, + { + "pc": 1622, + "op": "JUMPDEST", + "gas": 2997526, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0x2c8", + "0x0", + "0x84", + "0xa4", + "0x6b5", + "0x84", + "0x0" + ] + }, + { + "pc": 1623, + "op": "PUSH2", + "gas": 2997525, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0x2c8", + "0x0", + "0x84", + "0xa4", + "0x6b5", + "0x84", + "0x0" + ] + }, + { + "pc": 1626, + "op": "DUP2", + "gas": 2997522, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0x2c8", + "0x0", + "0x84", + "0xa4", + "0x6b5", + "0x84", + "0x0", + "0x65f" + ] + }, + { + "pc": 1627, + "op": "PUSH2", + "gas": 2997519, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0x2c8", + "0x0", + "0x84", + "0xa4", + "0x6b5", + "0x84", + "0x0", + "0x65f", + "0x0" + ] + }, + { + "pc": 1630, + "op": "JUMP", + "gas": 2997516, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0x2c8", + "0x0", + "0x84", + "0xa4", + "0x6b5", + "0x84", + "0x0", + "0x65f", + "0x0", + "0x6fe" + ] + }, + { + "pc": 1790, + "op": "JUMPDEST", + "gas": 2997508, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0x2c8", + "0x0", + "0x84", + "0xa4", + "0x6b5", + "0x84", + "0x0", + "0x65f", + "0x0" + ] + }, + { + "pc": 1791, + "op": "PUSH1", + "gas": 2997507, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0x2c8", + "0x0", + "0x84", + "0xa4", + "0x6b5", + "0x84", + "0x0", + "0x65f", + "0x0" + ] + }, + { + "pc": 1793, + "op": "DUP2", + "gas": 2997504, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0x2c8", + "0x0", + "0x84", + "0xa4", + "0x6b5", + "0x84", + "0x0", + "0x65f", + "0x0", + "0x0" + ] + }, + { + "pc": 1794, + "op": "SWAP1", + "gas": 2997501, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0x2c8", + "0x0", + "0x84", + "0xa4", + "0x6b5", + "0x84", + "0x0", + "0x65f", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 1795, + "op": "POP", + "gas": 2997498, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0x2c8", + "0x0", + "0x84", + "0xa4", + "0x6b5", + "0x84", + "0x0", + "0x65f", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 1796, + "op": "SWAP2", + "gas": 2997496, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0x2c8", + "0x0", + "0x84", + "0xa4", + "0x6b5", + "0x84", + "0x0", + "0x65f", + "0x0", + "0x0" + ] + }, + { + "pc": 1797, + "op": "SWAP1", + "gas": 2997493, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0x2c8", + "0x0", + "0x84", + "0xa4", + "0x6b5", + "0x84", + "0x0", + "0x0", + "0x0", + "0x65f" + ] + }, + { + "pc": 1798, + "op": "POP", + "gas": 2997490, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0x2c8", + "0x0", + "0x84", + "0xa4", + "0x6b5", + "0x84", + "0x0", + "0x0", + "0x65f", + "0x0" + ] + }, + { + "pc": 1799, + "op": "JUMP", + "gas": 2997488, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0x2c8", + "0x0", + "0x84", + "0xa4", + "0x6b5", + "0x84", + "0x0", + "0x0", + "0x65f" + ] + }, + { + "pc": 1631, + "op": "JUMPDEST", + "gas": 2997480, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0x2c8", + "0x0", + "0x84", + "0xa4", + "0x6b5", + "0x84", + "0x0", + "0x0" + ] + }, + { + "pc": 1632, + "op": "DUP3", + "gas": 2997479, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0x2c8", + "0x0", + "0x84", + "0xa4", + "0x6b5", + "0x84", + "0x0", + "0x0" + ] + }, + { + "pc": 1633, + "op": "MSTORE", + "gas": 2997476, + "gasCost": 6, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0x2c8", + "0x0", + "0x84", + "0xa4", + "0x6b5", + "0x84", + "0x0", + "0x0", + "0x84" + ] + }, + { + "pc": 1634, + "op": "POP", + "gas": 2997470, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0x2c8", + "0x0", + "0x84", + "0xa4", + "0x6b5", + "0x84", + "0x0" + ] + }, + { + "pc": 1635, + "op": "POP", + "gas": 2997468, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0x2c8", + "0x0", + "0x84", + "0xa4", + "0x6b5", + "0x84" + ] + }, + { + "pc": 1636, + "op": "JUMP", + "gas": 2997466, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0x2c8", + "0x0", + "0x84", + "0xa4", + "0x6b5" + ] + }, + { + "pc": 1717, + "op": "JUMPDEST", + "gas": 2997458, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0x2c8", + "0x0", + "0x84", + "0xa4" + ] + }, + { + "pc": 1718, + "op": "SWAP3", + "gas": 2997457, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0x2c8", + "0x0", + "0x84", + "0xa4" + ] + }, + { + "pc": 1719, + "op": "SWAP2", + "gas": 2997454, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0xa4", + "0x0", + "0x84", + "0x2c8" + ] + }, + { + "pc": 1720, + "op": "POP", + "gas": 2997451, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0xa4", + "0x2c8", + "0x84", + "0x0" + ] + }, + { + "pc": 1721, + "op": "POP", + "gas": 2997449, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0xa4", + "0x2c8", + "0x84" + ] + }, + { + "pc": 1722, + "op": "JUMP", + "gas": 2997447, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0xa4", + "0x2c8" + ] + }, + { + "pc": 712, + "op": "JUMPDEST", + "gas": 2997439, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0xa4" + ] + }, + { + "pc": 713, + "op": "PUSH1", + "gas": 2997438, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0xa4" + ] + }, + { + "pc": 715, + "op": "PUSH1", + "gas": 2997435, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0xa4", + "0x20" + ] + }, + { + "pc": 717, + "op": "MLOAD", + "gas": 2997432, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0xa4", + "0x20", + "0x40" + ] + }, + { + "pc": 718, + "op": "DUP1", + "gas": 2997429, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0xa4", + "0x20", + "0x80" + ] + }, + { + "pc": 719, + "op": "DUP4", + "gas": 2997426, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0xa4", + "0x20", + "0x80", + "0x80" + ] + }, + { + "pc": 720, + "op": "SUB", + "gas": 2997423, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0xa4", + "0x20", + "0x80", + "0x80", + "0xa4" + ] + }, + { + "pc": 721, + "op": "DUP2", + "gas": 2997420, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0xa4", + "0x20", + "0x80", + "0x24" + ] + }, + { + "pc": 722, + "op": "PUSH1", + "gas": 2997417, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0xa4", + "0x20", + "0x80", + "0x24", + "0x80" + ] + }, + { + "pc": 724, + "op": "DUP8", + "gas": 2997414, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0xa4", + "0x20", + "0x80", + "0x24", + "0x80", + "0x0" + ] + }, + { + "pc": 725, + "op": "DUP1", + "gas": 2997411, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0xa4", + "0x20", + "0x80", + "0x24", + "0x80", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a" + ] + }, + { + "pc": 726, + "op": "EXTCODESIZE", + "gas": 2997408, + "gasCost": 2600, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0xa4", + "0x20", + "0x80", + "0x24", + "0x80", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a" + ], + "extraData": { + "codeList": [ + "0x608060405234801561001057600080fd5b50600436106100575760003560e01c806313ab33b11461005c57806320408cd91461008c578063314a09a8146100bc578063c5b0437c146100da578063ce0dbd67146100f6575b600080fd5b61007660048036038101906100719190610323565b610112565b604051610083919061036a565b60405180910390f35b6100a660048036038101906100a19190610323565b610155565b6040516100b3919061036a565b60405180910390f35b6100c4610197565b6040516100d1919061036a565b60405180910390f35b6100f460048036038101906100ef9190610323565b6101c0565b005b610110600480360381019061010b9190610323565b61023c565b005b600081604051610121906102f5565b61012b9190610385565b604051809103906000f0801561013e5760015b61014b5760009050610150565b809150505b919050565b6000808260405161016590610301565b61016f9190610385565b604051809103906000f08015801561018b573d6000803e3d6000fd5b50905080915050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000816040516101cf90610301565b6101d99190610385565b604051809103906000f0801580156101f5573d6000803e3d6000fd5b509050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b80604051610249906102f5565b6102539190610385565b604051809103906000f080156102665760015b6102b05760008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506102f2565b806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505b50565b60e2806103f483390190565b6103ab806104d683390190565b60008135905061031d816103dc565b92915050565b60006020828403121561033557600080fd5b60006103438482850161030e565b91505092915050565b610355816103a0565b82525050565b610364816103d2565b82525050565b600060208201905061037f600083018461034c565b92915050565b600060208201905061039a600083018461035b565b92915050565b60006103ab826103b2565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6103e5816103d2565b81146103f057600080fd5b5056fe6080604052348015600f57600080fd5b5060405160e238038060e28339818101604052810190602d91906052565b6000811415603a57600080fd5b506096565b600081519050604c816082565b92915050565b600060208284031215606357600080fd5b6000606f84828501603f565b91505092915050565b6000819050919050565b6089816078565b8114609357600080fd5b50565b603f8060a36000396000f3fe6080604052600080fdfea2646970667358221220d980928765b61eb01523442146dc4518e079360da1cc4a7f1ab97c88f137c27e64736f6c63430008040033608060405234801561001057600080fd5b506040516103ab3803806103ab83398181016040528101906100329190610054565b806000819055505061009e565b60008151905061004e81610087565b92915050565b60006020828403121561006657600080fd5b60006100748482850161003f565b91505092915050565b6000819050919050565b6100908161007d565b811461009b57600080fd5b50565b6102fe806100ad6000396000f3fe6080604052600436106100555760003560e01c806321848c461461005a5780632e64cec114610083578063b0f2b72a146100ae578063c4e96ec0146100d7578063e5223f88146100f3578063f34176731461010f575b600080fd5b34801561006657600080fd5b50610081600480360381019061007c91906101d7565b61013a565b005b34801561008f57600080fd5b5061009861014f565b6040516100a59190610252565b60405180910390f35b3480156100ba57600080fd5b506100d560048036038101906100d091906101d7565b610158565b005b6100f160048036038101906100ec91906101d7565b610162565b005b61010d600480360381019061010891906101d7565b6101a4565b005b34801561011b57600080fd5b506101246101ae565b6040516101319190610252565b60405180910390f35b80600081905550600061014c57600080fd5b50565b60008054905090565b8060008190555050565b806000819055506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161019b90610232565b60405180910390fd5b8060008190555050565b6000806101ba57600080fd5b600054905090565b6000813590506101d1816102b1565b92915050565b6000602082840312156101e957600080fd5b60006101f7848285016101c2565b91505092915050565b600061020d600c8361026d565b915061021882610288565b602082019050919050565b61022c8161027e565b82525050565b6000602082019050818103600083015261024b81610200565b9050919050565b60006020820190506102676000830184610223565b92915050565b600082825260208201905092915050565b6000819050919050565b7f64656c696265726174656c790000000000000000000000000000000000000000600082015250565b6102ba8161027e565b81146102c557600080fd5b5056fea26469706673582212206fa6988b66dece47dc22658a0058d7f113ce303b23abdbfb3e29ee300a66489464736f6c63430008040033a264697066735822122024e6552371fbd96476a2ebdebcd94517f44d186fe1b33f5e31629291591786e764736f6c63430008040033" + ] + } + }, + { + "pc": 727, + "op": "ISZERO", + "gas": 2994808, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0xa4", + "0x20", + "0x80", + "0x24", + "0x80", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x8b6" + ] + }, + { + "pc": 728, + "op": "DUP1", + "gas": 2994805, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0xa4", + "0x20", + "0x80", + "0x24", + "0x80", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x0" + ] + }, + { + "pc": 729, + "op": "ISZERO", + "gas": 2994802, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0xa4", + "0x20", + "0x80", + "0x24", + "0x80", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x0", + "0x0" + ] + }, + { + "pc": 730, + "op": "PUSH2", + "gas": 2994799, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0xa4", + "0x20", + "0x80", + "0x24", + "0x80", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x0", + "0x1" + ] + }, + { + "pc": 733, + "op": "JUMPI", + "gas": 2994796, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0xa4", + "0x20", + "0x80", + "0x24", + "0x80", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x0", + "0x1", + "0x2e2" + ] + }, + { + "pc": 738, + "op": "JUMPDEST", + "gas": 2994786, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0xa4", + "0x20", + "0x80", + "0x24", + "0x80", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x0" + ] + }, + { + "pc": 739, + "op": "POP", + "gas": 2994785, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0xa4", + "0x20", + "0x80", + "0x24", + "0x80", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x0" + ] + }, + { + "pc": 740, + "op": "GAS", + "gas": 2994783, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0xa4", + "0x20", + "0x80", + "0x24", + "0x80", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a" + ] + }, + { + "pc": 741, + "op": "CALL", + "gas": 2994781, + "gasCost": 2947990, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0xa4", + "0x20", + "0x80", + "0x24", + "0x80", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x2db25d" + ], + "extraData": { + "codeList": [ + "0x608060405234801561001057600080fd5b50600436106100625760003560e01c8063200d2ed214610067578063295a8edc146100855780633719f511146100a15780633e23ee43146100bd5780635696ec35146100db5780635dec31ca146100f7575b600080fd5b61006f610113565b60405161007c9190610665565b60405180910390f35b61009f600480360381019061009a91906105fb565b61013d565b005b6100bb60048036038101906100b691906105fb565b610269565b005b6100c561035e565b6040516100d29190610665565b60405180910390f35b6100f560048036038101906100f091906105fb565b610387565b005b610111600480360381019061010c91906105fb565b61047c565b005b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff166320408cd9836040518263ffffffff1660e01b815260040161019c91906106a0565b602060405180830381600087803b1580156101b657600080fd5b505af11580156101ca573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906101ee91906105d2565b600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161026090610680565b60405180910390fd5b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff166313ab33b1836040518263ffffffff1660e01b81526004016102c891906106a0565b602060405180830381600087803b1580156102e257600080fd5b505af11580156102f6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061031a91906105d2565b600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff166320408cd9836040518263ffffffff1660e01b81526004016103e691906106a0565b602060405180830381600087803b15801561040057600080fd5b505af1158015610414573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061043891906105d2565b600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff166313ab33b1836040518263ffffffff1660e01b81526004016104db91906106a0565b602060405180830381600087803b1580156104f557600080fd5b505af1158015610509573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061052d91906105d2565b600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161059f90610680565b60405180910390fd5b6000815190506105b781610731565b92915050565b6000813590506105cc81610748565b92915050565b6000602082840312156105e457600080fd5b60006105f2848285016105a8565b91505092915050565b60006020828403121561060d57600080fd5b600061061b848285016105bd565b91505092915050565b61062d816106cc565b82525050565b6000610640600c836106bb565b915061064b82610708565b602082019050919050565b61065f816106fe565b82525050565b600060208201905061067a6000830184610624565b92915050565b6000602082019050818103600083015261069981610633565b9050919050565b60006020820190506106b56000830184610656565b92915050565b600082825260208201905092915050565b60006106d7826106de565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b7f64656c696265726174656c790000000000000000000000000000000000000000600082015250565b61073a816106cc565b811461074557600080fd5b50565b610751816106fe565b811461075c57600080fd5b5056fea26469706673582212206d22486e2deddb5e91f0979599a7e467825532693839695bd2c007645b06ee3f64736f6c63430008040033", + "0x608060405234801561001057600080fd5b50600436106100575760003560e01c806313ab33b11461005c57806320408cd91461008c578063314a09a8146100bc578063c5b0437c146100da578063ce0dbd67146100f6575b600080fd5b61007660048036038101906100719190610323565b610112565b604051610083919061036a565b60405180910390f35b6100a660048036038101906100a19190610323565b610155565b6040516100b3919061036a565b60405180910390f35b6100c4610197565b6040516100d1919061036a565b60405180910390f35b6100f460048036038101906100ef9190610323565b6101c0565b005b610110600480360381019061010b9190610323565b61023c565b005b600081604051610121906102f5565b61012b9190610385565b604051809103906000f0801561013e5760015b61014b5760009050610150565b809150505b919050565b6000808260405161016590610301565b61016f9190610385565b604051809103906000f08015801561018b573d6000803e3d6000fd5b50905080915050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000816040516101cf90610301565b6101d99190610385565b604051809103906000f0801580156101f5573d6000803e3d6000fd5b509050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b80604051610249906102f5565b6102539190610385565b604051809103906000f080156102665760015b6102b05760008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506102f2565b806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505b50565b60e2806103f483390190565b6103ab806104d683390190565b60008135905061031d816103dc565b92915050565b60006020828403121561033557600080fd5b60006103438482850161030e565b91505092915050565b610355816103a0565b82525050565b610364816103d2565b82525050565b600060208201905061037f600083018461034c565b92915050565b600060208201905061039a600083018461035b565b92915050565b60006103ab826103b2565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6103e5816103d2565b81146103f057600080fd5b5056fe6080604052348015600f57600080fd5b5060405160e238038060e28339818101604052810190602d91906052565b6000811415603a57600080fd5b506096565b600081519050604c816082565b92915050565b600060208284031215606357600080fd5b6000606f84828501603f565b91505092915050565b6000819050919050565b6089816078565b8114609357600080fd5b50565b603f8060a36000396000f3fe6080604052600080fdfea2646970667358221220d980928765b61eb01523442146dc4518e079360da1cc4a7f1ab97c88f137c27e64736f6c63430008040033608060405234801561001057600080fd5b506040516103ab3803806103ab83398181016040528101906100329190610054565b806000819055505061009e565b60008151905061004e81610087565b92915050565b60006020828403121561006657600080fd5b60006100748482850161003f565b91505092915050565b6000819050919050565b6100908161007d565b811461009b57600080fd5b50565b6102fe806100ad6000396000f3fe6080604052600436106100555760003560e01c806321848c461461005a5780632e64cec114610083578063b0f2b72a146100ae578063c4e96ec0146100d7578063e5223f88146100f3578063f34176731461010f575b600080fd5b34801561006657600080fd5b50610081600480360381019061007c91906101d7565b61013a565b005b34801561008f57600080fd5b5061009861014f565b6040516100a59190610252565b60405180910390f35b3480156100ba57600080fd5b506100d560048036038101906100d091906101d7565b610158565b005b6100f160048036038101906100ec91906101d7565b610162565b005b61010d600480360381019061010891906101d7565b6101a4565b005b34801561011b57600080fd5b506101246101ae565b6040516101319190610252565b60405180910390f35b80600081905550600061014c57600080fd5b50565b60008054905090565b8060008190555050565b806000819055506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161019b90610232565b60405180910390fd5b8060008190555050565b6000806101ba57600080fd5b600054905090565b6000813590506101d1816102b1565b92915050565b6000602082840312156101e957600080fd5b60006101f7848285016101c2565b91505092915050565b600061020d600c8361026d565b915061021882610288565b602082019050919050565b61022c8161027e565b82525050565b6000602082019050818103600083015261024b81610200565b9050919050565b60006020820190506102676000830184610223565b92915050565b600082825260208201905092915050565b6000819050919050565b7f64656c696265726174656c790000000000000000000000000000000000000000600082015250565b6102ba8161027e565b81146102c557600080fd5b5056fea26469706673582212206fa6988b66dece47dc22658a0058d7f113ce303b23abdbfb3e29ee300a66489464736f6c63430008040033a264697066735822122024e6552371fbd96476a2ebdebcd94517f44d186fe1b33f5e31629291591786e764736f6c63430008040033" + ], + "proofList": [ + { + "address": "0xda1ad647621a1984ce21b0bab020005fe3b5f4da", + "nonce": 1, + "balance": "0x0", + "codeHash": "0x00c2455a35210099bbbb95bdd1b6a9bfc4702d98ba0f971009391cd8f970e729" + }, + { + "address": "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "nonce": 13, + "balance": "0x0", + "codeHash": "0x0197f7ef0aab588fbcc511af4e7d236206b90e8fbe1adfc7afe76c181cc4e9f0" + }, + { + "address": "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "nonce": 13, + "balance": "0x0", + "codeHash": "0x0197f7ef0aab588fbcc511af4e7d236206b90e8fbe1adfc7afe76c181cc4e9f0" + } + ], + "caller": [ + { + "address": "0xda1ad647621a1984ce21b0bab020005fe3b5f4da", + "nonce": 1, + "balance": "0x0", + "codeHash": "0x00c2455a35210099bbbb95bdd1b6a9bfc4702d98ba0f971009391cd8f970e729" + }, + { + "address": "0xda1ad647621a1984ce21b0bab020005fe3b5f4da", + "nonce": 1, + "balance": "0x0", + "codeHash": "0x00c2455a35210099bbbb95bdd1b6a9bfc4702d98ba0f971009391cd8f970e729" + } + ] + } + }, + { + "pc": 0, + "op": "PUSH1", + "gas": 2947890, + "gasCost": 3, + "depth": 2 + }, + { + "pc": 2, + "op": "PUSH1", + "gas": 2947887, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x80" + ] + }, + { + "pc": 4, + "op": "MSTORE", + "gas": 2947884, + "gasCost": 12, + "depth": 2, + "stack": [ + "0x80", + "0x40" + ] + }, + { + "pc": 5, + "op": "CALLVALUE", + "gas": 2947872, + "gasCost": 2, + "depth": 2 + }, + { + "pc": 6, + "op": "DUP1", + "gas": 2947870, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x0" + ] + }, + { + "pc": 7, + "op": "ISZERO", + "gas": 2947867, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x0", + "0x0" + ] + }, + { + "pc": 8, + "op": "PUSH2", + "gas": 2947864, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x0", + "0x1" + ] + }, + { + "pc": 11, + "op": "JUMPI", + "gas": 2947861, + "gasCost": 10, + "depth": 2, + "stack": [ + "0x0", + "0x1", + "0x10" + ] + }, + { + "pc": 16, + "op": "JUMPDEST", + "gas": 2947851, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x0" + ] + }, + { + "pc": 17, + "op": "POP", + "gas": 2947850, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x0" + ] + }, + { + "pc": 18, + "op": "PUSH1", + "gas": 2947848, + "gasCost": 3, + "depth": 2 + }, + { + "pc": 20, + "op": "CALLDATASIZE", + "gas": 2947845, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x4" + ] + }, + { + "pc": 21, + "op": "LT", + "gas": 2947843, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x4", + "0x24" + ] + }, + { + "pc": 22, + "op": "PUSH2", + "gas": 2947840, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x0" + ] + }, + { + "pc": 25, + "op": "JUMPI", + "gas": 2947837, + "gasCost": 10, + "depth": 2, + "stack": [ + "0x0", + "0x57" + ] + }, + { + "pc": 26, + "op": "PUSH1", + "gas": 2947827, + "gasCost": 3, + "depth": 2 + }, + { + "pc": 28, + "op": "CALLDATALOAD", + "gas": 2947824, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x0" + ] + }, + { + "pc": 29, + "op": "PUSH1", + "gas": 2947821, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b100000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 31, + "op": "SHR", + "gas": 2947818, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b100000000000000000000000000000000000000000000000000000000", + "0xe0" + ] + }, + { + "pc": 32, + "op": "DUP1", + "gas": 2947815, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1" + ] + }, + { + "pc": 33, + "op": "PUSH4", + "gas": 2947812, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x13ab33b1" + ] + }, + { + "pc": 38, + "op": "EQ", + "gas": 2947809, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x13ab33b1", + "0x13ab33b1" + ] + }, + { + "pc": 39, + "op": "PUSH2", + "gas": 2947806, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x1" + ] + }, + { + "pc": 42, + "op": "JUMPI", + "gas": 2947803, + "gasCost": 10, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x1", + "0x5c" + ] + }, + { + "pc": 92, + "op": "JUMPDEST", + "gas": 2947793, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x13ab33b1" + ] + }, + { + "pc": 93, + "op": "PUSH2", + "gas": 2947792, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1" + ] + }, + { + "pc": 96, + "op": "PUSH1", + "gas": 2947789, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76" + ] + }, + { + "pc": 98, + "op": "DUP1", + "gas": 2947786, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x4" + ] + }, + { + "pc": 99, + "op": "CALLDATASIZE", + "gas": 2947783, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x4", + "0x4" + ] + }, + { + "pc": 100, + "op": "SUB", + "gas": 2947781, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x4", + "0x4", + "0x24" + ] + }, + { + "pc": 101, + "op": "DUP2", + "gas": 2947778, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x4", + "0x20" + ] + }, + { + "pc": 102, + "op": "ADD", + "gas": 2947775, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x4", + "0x20", + "0x4" + ] + }, + { + "pc": 103, + "op": "SWAP1", + "gas": 2947772, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x4", + "0x24" + ] + }, + { + "pc": 104, + "op": "PUSH2", + "gas": 2947769, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x24", + "0x4" + ] + }, + { + "pc": 107, + "op": "SWAP2", + "gas": 2947766, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x24", + "0x4", + "0x71" + ] + }, + { + "pc": 108, + "op": "SWAP1", + "gas": 2947763, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x71", + "0x4", + "0x24" + ] + }, + { + "pc": 109, + "op": "PUSH2", + "gas": 2947760, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x71", + "0x24", + "0x4" + ] + }, + { + "pc": 112, + "op": "JUMP", + "gas": 2947757, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x71", + "0x24", + "0x4", + "0x323" + ] + }, + { + "pc": 803, + "op": "JUMPDEST", + "gas": 2947749, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x71", + "0x24", + "0x4" + ] + }, + { + "pc": 804, + "op": "PUSH1", + "gas": 2947748, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x71", + "0x24", + "0x4" + ] + }, + { + "pc": 806, + "op": "PUSH1", + "gas": 2947745, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x71", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 808, + "op": "DUP3", + "gas": 2947742, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x71", + "0x24", + "0x4", + "0x0", + "0x20" + ] + }, + { + "pc": 809, + "op": "DUP5", + "gas": 2947739, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x71", + "0x24", + "0x4", + "0x0", + "0x20", + "0x4" + ] + }, + { + "pc": 810, + "op": "SUB", + "gas": 2947736, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x71", + "0x24", + "0x4", + "0x0", + "0x20", + "0x4", + "0x24" + ] + }, + { + "pc": 811, + "op": "SLT", + "gas": 2947733, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x71", + "0x24", + "0x4", + "0x0", + "0x20", + "0x20" + ] + }, + { + "pc": 812, + "op": "ISZERO", + "gas": 2947730, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x71", + "0x24", + "0x4", + "0x0", + "0x0" + ] + }, + { + "pc": 813, + "op": "PUSH2", + "gas": 2947727, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x71", + "0x24", + "0x4", + "0x0", + "0x1" + ] + }, + { + "pc": 816, + "op": "JUMPI", + "gas": 2947724, + "gasCost": 10, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x71", + "0x24", + "0x4", + "0x0", + "0x1", + "0x335" + ] + }, + { + "pc": 821, + "op": "JUMPDEST", + "gas": 2947714, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x71", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 822, + "op": "PUSH1", + "gas": 2947713, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x71", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 824, + "op": "PUSH2", + "gas": 2947710, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x71", + "0x24", + "0x4", + "0x0", + "0x0" + ] + }, + { + "pc": 827, + "op": "DUP5", + "gas": 2947707, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x71", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343" + ] + }, + { + "pc": 828, + "op": "DUP3", + "gas": 2947704, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x71", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24" + ] + }, + { + "pc": 829, + "op": "DUP6", + "gas": 2947701, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x71", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x0" + ] + }, + { + "pc": 830, + "op": "ADD", + "gas": 2947698, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x71", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x0", + "0x4" + ] + }, + { + "pc": 831, + "op": "PUSH2", + "gas": 2947695, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x71", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4" + ] + }, + { + "pc": 834, + "op": "JUMP", + "gas": 2947692, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x71", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x30e" + ] + }, + { + "pc": 782, + "op": "JUMPDEST", + "gas": 2947684, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x71", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4" + ] + }, + { + "pc": 783, + "op": "PUSH1", + "gas": 2947683, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x71", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4" + ] + }, + { + "pc": 785, + "op": "DUP2", + "gas": 2947680, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x71", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 786, + "op": "CALLDATALOAD", + "gas": 2947677, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x71", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x0", + "0x4" + ] + }, + { + "pc": 787, + "op": "SWAP1", + "gas": 2947674, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x71", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x0", + "0x0" + ] + }, + { + "pc": 788, + "op": "POP", + "gas": 2947671, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x71", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x0", + "0x0" + ] + }, + { + "pc": 789, + "op": "PUSH2", + "gas": 2947669, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x71", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 792, + "op": "DUP2", + "gas": 2947666, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x71", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x0", + "0x31d" + ] + }, + { + "pc": 793, + "op": "PUSH2", + "gas": 2947663, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x71", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x0", + "0x31d", + "0x0" + ] + }, + { + "pc": 796, + "op": "JUMP", + "gas": 2947660, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x71", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x0", + "0x31d", + "0x0", + "0x3dc" + ] + }, + { + "pc": 988, + "op": "JUMPDEST", + "gas": 2947652, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x71", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x0", + "0x31d", + "0x0" + ] + }, + { + "pc": 989, + "op": "PUSH2", + "gas": 2947651, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x71", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x0", + "0x31d", + "0x0" + ] + }, + { + "pc": 992, + "op": "DUP2", + "gas": 2947648, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x71", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x0", + "0x31d", + "0x0", + "0x3e5" + ] + }, + { + "pc": 993, + "op": "PUSH2", + "gas": 2947645, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x71", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x0", + "0x31d", + "0x0", + "0x3e5", + "0x0" + ] + }, + { + "pc": 996, + "op": "JUMP", + "gas": 2947642, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x71", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x0", + "0x31d", + "0x0", + "0x3e5", + "0x0", + "0x3d2" + ] + }, + { + "pc": 978, + "op": "JUMPDEST", + "gas": 2947634, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x71", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x0", + "0x31d", + "0x0", + "0x3e5", + "0x0" + ] + }, + { + "pc": 979, + "op": "PUSH1", + "gas": 2947633, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x71", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x0", + "0x31d", + "0x0", + "0x3e5", + "0x0" + ] + }, + { + "pc": 981, + "op": "DUP2", + "gas": 2947630, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x71", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x0", + "0x31d", + "0x0", + "0x3e5", + "0x0", + "0x0" + ] + }, + { + "pc": 982, + "op": "SWAP1", + "gas": 2947627, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x71", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x0", + "0x31d", + "0x0", + "0x3e5", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 983, + "op": "POP", + "gas": 2947624, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x71", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x0", + "0x31d", + "0x0", + "0x3e5", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 984, + "op": "SWAP2", + "gas": 2947622, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x71", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x0", + "0x31d", + "0x0", + "0x3e5", + "0x0", + "0x0" + ] + }, + { + "pc": 985, + "op": "SWAP1", + "gas": 2947619, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x71", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x0", + "0x31d", + "0x0", + "0x0", + "0x0", + "0x3e5" + ] + }, + { + "pc": 986, + "op": "POP", + "gas": 2947616, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x71", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x0", + "0x31d", + "0x0", + "0x0", + "0x3e5", + "0x0" + ] + }, + { + "pc": 987, + "op": "JUMP", + "gas": 2947614, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x71", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x0", + "0x31d", + "0x0", + "0x0", + "0x3e5" + ] + }, + { + "pc": 997, + "op": "JUMPDEST", + "gas": 2947606, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x71", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x0", + "0x31d", + "0x0", + "0x0" + ] + }, + { + "pc": 998, + "op": "DUP2", + "gas": 2947605, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x71", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x0", + "0x31d", + "0x0", + "0x0" + ] + }, + { + "pc": 999, + "op": "EQ", + "gas": 2947602, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x71", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x0", + "0x31d", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 1000, + "op": "PUSH2", + "gas": 2947599, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x71", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x0", + "0x31d", + "0x0", + "0x1" + ] + }, + { + "pc": 1003, + "op": "JUMPI", + "gas": 2947596, + "gasCost": 10, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x71", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x0", + "0x31d", + "0x0", + "0x1", + "0x3f0" + ] + }, + { + "pc": 1008, + "op": "JUMPDEST", + "gas": 2947586, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x71", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x0", + "0x31d", + "0x0" + ] + }, + { + "pc": 1009, + "op": "POP", + "gas": 2947585, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x71", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x0", + "0x31d", + "0x0" + ] + }, + { + "pc": 1010, + "op": "JUMP", + "gas": 2947583, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x71", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x0", + "0x31d" + ] + }, + { + "pc": 797, + "op": "JUMPDEST", + "gas": 2947575, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x71", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 798, + "op": "SWAP3", + "gas": 2947574, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x71", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 799, + "op": "SWAP2", + "gas": 2947571, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x71", + "0x24", + "0x4", + "0x0", + "0x0", + "0x0", + "0x24", + "0x4", + "0x343" + ] + }, + { + "pc": 800, + "op": "POP", + "gas": 2947568, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x71", + "0x24", + "0x4", + "0x0", + "0x0", + "0x0", + "0x343", + "0x4", + "0x24" + ] + }, + { + "pc": 801, + "op": "POP", + "gas": 2947566, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x71", + "0x24", + "0x4", + "0x0", + "0x0", + "0x0", + "0x343", + "0x4" + ] + }, + { + "pc": 802, + "op": "JUMP", + "gas": 2947564, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x71", + "0x24", + "0x4", + "0x0", + "0x0", + "0x0", + "0x343" + ] + }, + { + "pc": 835, + "op": "JUMPDEST", + "gas": 2947556, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x71", + "0x24", + "0x4", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 836, + "op": "SWAP2", + "gas": 2947555, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x71", + "0x24", + "0x4", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 837, + "op": "POP", + "gas": 2947552, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x71", + "0x24", + "0x4", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 838, + "op": "POP", + "gas": 2947550, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x71", + "0x24", + "0x4", + "0x0", + "0x0" + ] + }, + { + "pc": 839, + "op": "SWAP3", + "gas": 2947548, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x71", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 840, + "op": "SWAP2", + "gas": 2947545, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x24", + "0x4", + "0x71" + ] + }, + { + "pc": 841, + "op": "POP", + "gas": 2947542, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x71", + "0x4", + "0x24" + ] + }, + { + "pc": 842, + "op": "POP", + "gas": 2947540, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x71", + "0x4" + ] + }, + { + "pc": 843, + "op": "JUMP", + "gas": 2947538, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x71" + ] + }, + { + "pc": 113, + "op": "JUMPDEST", + "gas": 2947530, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0" + ] + }, + { + "pc": 114, + "op": "PUSH2", + "gas": 2947529, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0" + ] + }, + { + "pc": 117, + "op": "JUMP", + "gas": 2947526, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x112" + ] + }, + { + "pc": 274, + "op": "JUMPDEST", + "gas": 2947518, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0" + ] + }, + { + "pc": 275, + "op": "PUSH1", + "gas": 2947517, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0" + ] + }, + { + "pc": 277, + "op": "DUP2", + "gas": 2947514, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0" + ] + }, + { + "pc": 278, + "op": "PUSH1", + "gas": 2947511, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 280, + "op": "MLOAD", + "gas": 2947508, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x0", + "0x40" + ] + }, + { + "pc": 281, + "op": "PUSH2", + "gas": 2947505, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x0", + "0x80" + ] + }, + { + "pc": 284, + "op": "SWAP1", + "gas": 2947502, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x0", + "0x80", + "0x121" + ] + }, + { + "pc": 285, + "op": "PUSH2", + "gas": 2947499, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x0", + "0x121", + "0x80" + ] + }, + { + "pc": 288, + "op": "JUMP", + "gas": 2947496, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x0", + "0x121", + "0x80", + "0x2f5" + ] + }, + { + "pc": 757, + "op": "JUMPDEST", + "gas": 2947488, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x0", + "0x121", + "0x80" + ] + }, + { + "pc": 758, + "op": "PUSH1", + "gas": 2947487, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x0", + "0x121", + "0x80" + ] + }, + { + "pc": 760, + "op": "DUP1", + "gas": 2947484, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x0", + "0x121", + "0x80", + "0xe2" + ] + }, + { + "pc": 761, + "op": "PUSH2", + "gas": 2947481, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x0", + "0x121", + "0x80", + "0xe2", + "0xe2" + ] + }, + { + "pc": 764, + "op": "DUP4", + "gas": 2947478, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x0", + "0x121", + "0x80", + "0xe2", + "0xe2", + "0x3f4" + ] + }, + { + "pc": 765, + "op": "CODECOPY", + "gas": 2947475, + "gasCost": 54, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x0", + "0x121", + "0x80", + "0xe2", + "0xe2", + "0x3f4", + "0x80" + ], + "extraData": { + "codeList": [ + "0x608060405234801561001057600080fd5b50600436106100575760003560e01c806313ab33b11461005c57806320408cd91461008c578063314a09a8146100bc578063c5b0437c146100da578063ce0dbd67146100f6575b600080fd5b61007660048036038101906100719190610323565b610112565b604051610083919061036a565b60405180910390f35b6100a660048036038101906100a19190610323565b610155565b6040516100b3919061036a565b60405180910390f35b6100c4610197565b6040516100d1919061036a565b60405180910390f35b6100f460048036038101906100ef9190610323565b6101c0565b005b610110600480360381019061010b9190610323565b61023c565b005b600081604051610121906102f5565b61012b9190610385565b604051809103906000f0801561013e5760015b61014b5760009050610150565b809150505b919050565b6000808260405161016590610301565b61016f9190610385565b604051809103906000f08015801561018b573d6000803e3d6000fd5b50905080915050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000816040516101cf90610301565b6101d99190610385565b604051809103906000f0801580156101f5573d6000803e3d6000fd5b509050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b80604051610249906102f5565b6102539190610385565b604051809103906000f080156102665760015b6102b05760008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506102f2565b806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505b50565b60e2806103f483390190565b6103ab806104d683390190565b60008135905061031d816103dc565b92915050565b60006020828403121561033557600080fd5b60006103438482850161030e565b91505092915050565b610355816103a0565b82525050565b610364816103d2565b82525050565b600060208201905061037f600083018461034c565b92915050565b600060208201905061039a600083018461035b565b92915050565b60006103ab826103b2565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6103e5816103d2565b81146103f057600080fd5b5056fe6080604052348015600f57600080fd5b5060405160e238038060e28339818101604052810190602d91906052565b6000811415603a57600080fd5b506096565b600081519050604c816082565b92915050565b600060208284031215606357600080fd5b6000606f84828501603f565b91505092915050565b6000819050919050565b6089816078565b8114609357600080fd5b50565b603f8060a36000396000f3fe6080604052600080fdfea2646970667358221220d980928765b61eb01523442146dc4518e079360da1cc4a7f1ab97c88f137c27e64736f6c63430008040033608060405234801561001057600080fd5b506040516103ab3803806103ab83398181016040528101906100329190610054565b806000819055505061009e565b60008151905061004e81610087565b92915050565b60006020828403121561006657600080fd5b60006100748482850161003f565b91505092915050565b6000819050919050565b6100908161007d565b811461009b57600080fd5b50565b6102fe806100ad6000396000f3fe6080604052600436106100555760003560e01c806321848c461461005a5780632e64cec114610083578063b0f2b72a146100ae578063c4e96ec0146100d7578063e5223f88146100f3578063f34176731461010f575b600080fd5b34801561006657600080fd5b50610081600480360381019061007c91906101d7565b61013a565b005b34801561008f57600080fd5b5061009861014f565b6040516100a59190610252565b60405180910390f35b3480156100ba57600080fd5b506100d560048036038101906100d091906101d7565b610158565b005b6100f160048036038101906100ec91906101d7565b610162565b005b61010d600480360381019061010891906101d7565b6101a4565b005b34801561011b57600080fd5b506101246101ae565b6040516101319190610252565b60405180910390f35b80600081905550600061014c57600080fd5b50565b60008054905090565b8060008190555050565b806000819055506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161019b90610232565b60405180910390fd5b8060008190555050565b6000806101ba57600080fd5b600054905090565b6000813590506101d1816102b1565b92915050565b6000602082840312156101e957600080fd5b60006101f7848285016101c2565b91505092915050565b600061020d600c8361026d565b915061021882610288565b602082019050919050565b61022c8161027e565b82525050565b6000602082019050818103600083015261024b81610200565b9050919050565b60006020820190506102676000830184610223565b92915050565b600082825260208201905092915050565b6000819050919050565b7f64656c696265726174656c790000000000000000000000000000000000000000600082015250565b6102ba8161027e565b81146102c557600080fd5b5056fea26469706673582212206fa6988b66dece47dc22658a0058d7f113ce303b23abdbfb3e29ee300a66489464736f6c63430008040033a264697066735822122024e6552371fbd96476a2ebdebcd94517f44d186fe1b33f5e31629291591786e764736f6c63430008040033" + ] + } + }, + { + "pc": 766, + "op": "ADD", + "gas": 2947421, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x0", + "0x121", + "0x80", + "0xe2" + ] + }, + { + "pc": 767, + "op": "SWAP1", + "gas": 2947418, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x0", + "0x121", + "0x162" + ] + }, + { + "pc": 768, + "op": "JUMP", + "gas": 2947415, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x0", + "0x162", + "0x121" + ] + }, + { + "pc": 289, + "op": "JUMPDEST", + "gas": 2947407, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x0", + "0x162" + ] + }, + { + "pc": 290, + "op": "PUSH2", + "gas": 2947406, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x0", + "0x162" + ] + }, + { + "pc": 293, + "op": "SWAP2", + "gas": 2947403, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x0", + "0x162", + "0x12b" + ] + }, + { + "pc": 294, + "op": "SWAP1", + "gas": 2947400, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x12b", + "0x162", + "0x0" + ] + }, + { + "pc": 295, + "op": "PUSH2", + "gas": 2947397, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x12b", + "0x0", + "0x162" + ] + }, + { + "pc": 298, + "op": "JUMP", + "gas": 2947394, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x12b", + "0x0", + "0x162", + "0x385" + ] + }, + { + "pc": 901, + "op": "JUMPDEST", + "gas": 2947386, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x12b", + "0x0", + "0x162" + ] + }, + { + "pc": 902, + "op": "PUSH1", + "gas": 2947385, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x12b", + "0x0", + "0x162" + ] + }, + { + "pc": 904, + "op": "PUSH1", + "gas": 2947382, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x12b", + "0x0", + "0x162", + "0x0" + ] + }, + { + "pc": 906, + "op": "DUP3", + "gas": 2947379, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x12b", + "0x0", + "0x162", + "0x0", + "0x20" + ] + }, + { + "pc": 907, + "op": "ADD", + "gas": 2947376, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x12b", + "0x0", + "0x162", + "0x0", + "0x20", + "0x162" + ] + }, + { + "pc": 908, + "op": "SWAP1", + "gas": 2947373, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x12b", + "0x0", + "0x162", + "0x0", + "0x182" + ] + }, + { + "pc": 909, + "op": "POP", + "gas": 2947370, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x12b", + "0x0", + "0x162", + "0x182", + "0x0" + ] + }, + { + "pc": 910, + "op": "PUSH2", + "gas": 2947368, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x12b", + "0x0", + "0x162", + "0x182" + ] + }, + { + "pc": 913, + "op": "PUSH1", + "gas": 2947365, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x12b", + "0x0", + "0x162", + "0x182", + "0x39a" + ] + }, + { + "pc": 915, + "op": "DUP4", + "gas": 2947362, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x12b", + "0x0", + "0x162", + "0x182", + "0x39a", + "0x0" + ] + }, + { + "pc": 916, + "op": "ADD", + "gas": 2947359, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x12b", + "0x0", + "0x162", + "0x182", + "0x39a", + "0x0", + "0x162" + ] + }, + { + "pc": 917, + "op": "DUP5", + "gas": 2947356, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x12b", + "0x0", + "0x162", + "0x182", + "0x39a", + "0x162" + ] + }, + { + "pc": 918, + "op": "PUSH2", + "gas": 2947353, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x12b", + "0x0", + "0x162", + "0x182", + "0x39a", + "0x162", + "0x0" + ] + }, + { + "pc": 921, + "op": "JUMP", + "gas": 2947350, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x12b", + "0x0", + "0x162", + "0x182", + "0x39a", + "0x162", + "0x0", + "0x35b" + ] + }, + { + "pc": 859, + "op": "JUMPDEST", + "gas": 2947342, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x12b", + "0x0", + "0x162", + "0x182", + "0x39a", + "0x162", + "0x0" + ] + }, + { + "pc": 860, + "op": "PUSH2", + "gas": 2947341, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x12b", + "0x0", + "0x162", + "0x182", + "0x39a", + "0x162", + "0x0" + ] + }, + { + "pc": 863, + "op": "DUP2", + "gas": 2947338, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x12b", + "0x0", + "0x162", + "0x182", + "0x39a", + "0x162", + "0x0", + "0x364" + ] + }, + { + "pc": 864, + "op": "PUSH2", + "gas": 2947335, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x12b", + "0x0", + "0x162", + "0x182", + "0x39a", + "0x162", + "0x0", + "0x364", + "0x0" + ] + }, + { + "pc": 867, + "op": "JUMP", + "gas": 2947332, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x12b", + "0x0", + "0x162", + "0x182", + "0x39a", + "0x162", + "0x0", + "0x364", + "0x0", + "0x3d2" + ] + }, + { + "pc": 978, + "op": "JUMPDEST", + "gas": 2947324, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x12b", + "0x0", + "0x162", + "0x182", + "0x39a", + "0x162", + "0x0", + "0x364", + "0x0" + ] + }, + { + "pc": 979, + "op": "PUSH1", + "gas": 2947323, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x12b", + "0x0", + "0x162", + "0x182", + "0x39a", + "0x162", + "0x0", + "0x364", + "0x0" + ] + }, + { + "pc": 981, + "op": "DUP2", + "gas": 2947320, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x12b", + "0x0", + "0x162", + "0x182", + "0x39a", + "0x162", + "0x0", + "0x364", + "0x0", + "0x0" + ] + }, + { + "pc": 982, + "op": "SWAP1", + "gas": 2947317, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x12b", + "0x0", + "0x162", + "0x182", + "0x39a", + "0x162", + "0x0", + "0x364", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 983, + "op": "POP", + "gas": 2947314, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x12b", + "0x0", + "0x162", + "0x182", + "0x39a", + "0x162", + "0x0", + "0x364", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 984, + "op": "SWAP2", + "gas": 2947312, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x12b", + "0x0", + "0x162", + "0x182", + "0x39a", + "0x162", + "0x0", + "0x364", + "0x0", + "0x0" + ] + }, + { + "pc": 985, + "op": "SWAP1", + "gas": 2947309, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x12b", + "0x0", + "0x162", + "0x182", + "0x39a", + "0x162", + "0x0", + "0x0", + "0x0", + "0x364" + ] + }, + { + "pc": 986, + "op": "POP", + "gas": 2947306, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x12b", + "0x0", + "0x162", + "0x182", + "0x39a", + "0x162", + "0x0", + "0x0", + "0x364", + "0x0" + ] + }, + { + "pc": 987, + "op": "JUMP", + "gas": 2947304, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x12b", + "0x0", + "0x162", + "0x182", + "0x39a", + "0x162", + "0x0", + "0x0", + "0x364" + ] + }, + { + "pc": 868, + "op": "JUMPDEST", + "gas": 2947296, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x12b", + "0x0", + "0x162", + "0x182", + "0x39a", + "0x162", + "0x0", + "0x0" + ] + }, + { + "pc": 869, + "op": "DUP3", + "gas": 2947295, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x12b", + "0x0", + "0x162", + "0x182", + "0x39a", + "0x162", + "0x0", + "0x0" + ] + }, + { + "pc": 870, + "op": "MSTORE", + "gas": 2947292, + "gasCost": 6, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x12b", + "0x0", + "0x162", + "0x182", + "0x39a", + "0x162", + "0x0", + "0x0", + "0x162" + ] + }, + { + "pc": 871, + "op": "POP", + "gas": 2947286, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x12b", + "0x0", + "0x162", + "0x182", + "0x39a", + "0x162", + "0x0" + ] + }, + { + "pc": 872, + "op": "POP", + "gas": 2947284, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x12b", + "0x0", + "0x162", + "0x182", + "0x39a", + "0x162" + ] + }, + { + "pc": 873, + "op": "JUMP", + "gas": 2947282, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x12b", + "0x0", + "0x162", + "0x182", + "0x39a" + ] + }, + { + "pc": 922, + "op": "JUMPDEST", + "gas": 2947274, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x12b", + "0x0", + "0x162", + "0x182" + ] + }, + { + "pc": 923, + "op": "SWAP3", + "gas": 2947273, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x12b", + "0x0", + "0x162", + "0x182" + ] + }, + { + "pc": 924, + "op": "SWAP2", + "gas": 2947270, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x182", + "0x0", + "0x162", + "0x12b" + ] + }, + { + "pc": 925, + "op": "POP", + "gas": 2947267, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x182", + "0x12b", + "0x162", + "0x0" + ] + }, + { + "pc": 926, + "op": "POP", + "gas": 2947265, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x182", + "0x12b", + "0x162" + ] + }, + { + "pc": 927, + "op": "JUMP", + "gas": 2947263, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x182", + "0x12b" + ] + }, + { + "pc": 299, + "op": "JUMPDEST", + "gas": 2947255, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x182" + ] + }, + { + "pc": 300, + "op": "PUSH1", + "gas": 2947254, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x182" + ] + }, + { + "pc": 302, + "op": "MLOAD", + "gas": 2947251, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x182", + "0x40" + ] + }, + { + "pc": 303, + "op": "DUP1", + "gas": 2947248, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x182", + "0x80" + ] + }, + { + "pc": 304, + "op": "SWAP2", + "gas": 2947245, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x182", + "0x80", + "0x80" + ] + }, + { + "pc": 305, + "op": "SUB", + "gas": 2947242, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x80", + "0x80", + "0x182" + ] + }, + { + "pc": 306, + "op": "SWAP1", + "gas": 2947239, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x80", + "0x102" + ] + }, + { + "pc": 307, + "op": "PUSH1", + "gas": 2947236, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x102", + "0x80" + ] + }, + { + "pc": 309, + "op": "CREATE", + "gas": 2947233, + "gasCost": 32000, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x102", + "0x80", + "0x0" + ], + "extraData": { + "callFailed": true, + "codeList": [ + "0x" + ], + "proofList": [ + { + "address": "0x1d57be6e181386a025e41c3f6aa1855465a4ab1e", + "nonce": 1, + "balance": "0x0", + "codeHash": "0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470" + }, + { + "address": "0x1d57be6e181386a025e41c3f6aa1855465a4ab1e", + "nonce": 0, + "balance": "0x0", + "codeHash": "0x0000000000000000000000000000000000000000000000000000000000000000" + } + ], + "caller": [ + { + "address": "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "nonce": 13, + "balance": "0x0", + "codeHash": "0x0197f7ef0aab588fbcc511af4e7d236206b90e8fbe1adfc7afe76c181cc4e9f0" + }, + { + "address": "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "nonce": 14, + "balance": "0x0", + "codeHash": "0x0197f7ef0aab588fbcc511af4e7d236206b90e8fbe1adfc7afe76c181cc4e9f0" + } + ] + } + }, + { + "pc": 0, + "op": "PUSH1", + "gas": 2869683, + "gasCost": 3, + "depth": 3 + }, + { + "pc": 2, + "op": "PUSH1", + "gas": 2869680, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x80" + ] + }, + { + "pc": 4, + "op": "MSTORE", + "gas": 2869677, + "gasCost": 12, + "depth": 3, + "stack": [ + "0x80", + "0x40" + ] + }, + { + "pc": 5, + "op": "CALLVALUE", + "gas": 2869665, + "gasCost": 2, + "depth": 3 + }, + { + "pc": 6, + "op": "DUP1", + "gas": 2869663, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x0" + ] + }, + { + "pc": 7, + "op": "ISZERO", + "gas": 2869660, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x0", + "0x0" + ] + }, + { + "pc": 8, + "op": "PUSH1", + "gas": 2869657, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x0", + "0x1" + ] + }, + { + "pc": 10, + "op": "JUMPI", + "gas": 2869654, + "gasCost": 10, + "depth": 3, + "stack": [ + "0x0", + "0x1", + "0xf" + ] + }, + { + "pc": 15, + "op": "JUMPDEST", + "gas": 2869644, + "gasCost": 1, + "depth": 3, + "stack": [ + "0x0" + ] + }, + { + "pc": 16, + "op": "POP", + "gas": 2869643, + "gasCost": 2, + "depth": 3, + "stack": [ + "0x0" + ] + }, + { + "pc": 17, + "op": "PUSH1", + "gas": 2869641, + "gasCost": 3, + "depth": 3 + }, + { + "pc": 19, + "op": "MLOAD", + "gas": 2869638, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x40" + ] + }, + { + "pc": 20, + "op": "PUSH1", + "gas": 2869635, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x80" + ] + }, + { + "pc": 22, + "op": "CODESIZE", + "gas": 2869632, + "gasCost": 2, + "depth": 3, + "stack": [ + "0x80", + "0xe2" + ], + "extraData": { + "codeList": [ + "0x" + ] + } + }, + { + "pc": 23, + "op": "SUB", + "gas": 2869630, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x80", + "0xe2", + "0x102" + ] + }, + { + "pc": 24, + "op": "DUP1", + "gas": 2869627, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x80", + "0x20" + ] + }, + { + "pc": 25, + "op": "PUSH1", + "gas": 2869624, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x80", + "0x20", + "0x20" + ] + }, + { + "pc": 27, + "op": "DUP4", + "gas": 2869621, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x80", + "0x20", + "0x20", + "0xe2" + ] + }, + { + "pc": 28, + "op": "CODECOPY", + "gas": 2869618, + "gasCost": 12, + "depth": 3, + "stack": [ + "0x80", + "0x20", + "0x20", + "0xe2", + "0x80" + ], + "extraData": { + "codeList": [ + "0x" + ] + } + }, + { + "pc": 29, + "op": "DUP2", + "gas": 2869606, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x80", + "0x20" + ] + }, + { + "pc": 30, + "op": "DUP2", + "gas": 2869603, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x80", + "0x20", + "0x80" + ] + }, + { + "pc": 31, + "op": "ADD", + "gas": 2869600, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x80", + "0x20", + "0x80", + "0x20" + ] + }, + { + "pc": 32, + "op": "PUSH1", + "gas": 2869597, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x80", + "0x20", + "0xa0" + ] + }, + { + "pc": 34, + "op": "MSTORE", + "gas": 2869594, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x80", + "0x20", + "0xa0", + "0x40" + ] + }, + { + "pc": 35, + "op": "DUP2", + "gas": 2869591, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x80", + "0x20" + ] + }, + { + "pc": 36, + "op": "ADD", + "gas": 2869588, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x80", + "0x20", + "0x80" + ] + }, + { + "pc": 37, + "op": "SWAP1", + "gas": 2869585, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x80", + "0xa0" + ] + }, + { + "pc": 38, + "op": "PUSH1", + "gas": 2869582, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xa0", + "0x80" + ] + }, + { + "pc": 40, + "op": "SWAP2", + "gas": 2869579, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xa0", + "0x80", + "0x2d" + ] + }, + { + "pc": 41, + "op": "SWAP1", + "gas": 2869576, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x2d", + "0x80", + "0xa0" + ] + }, + { + "pc": 42, + "op": "PUSH1", + "gas": 2869573, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x2d", + "0xa0", + "0x80" + ] + }, + { + "pc": 44, + "op": "JUMP", + "gas": 2869570, + "gasCost": 8, + "depth": 3, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x52" + ] + }, + { + "pc": 82, + "op": "JUMPDEST", + "gas": 2869562, + "gasCost": 1, + "depth": 3, + "stack": [ + "0x2d", + "0xa0", + "0x80" + ] + }, + { + "pc": 83, + "op": "PUSH1", + "gas": 2869561, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x2d", + "0xa0", + "0x80" + ] + }, + { + "pc": 85, + "op": "PUSH1", + "gas": 2869558, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0" + ] + }, + { + "pc": 87, + "op": "DUP3", + "gas": 2869555, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x20" + ] + }, + { + "pc": 88, + "op": "DUP5", + "gas": 2869552, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x20", + "0x80" + ] + }, + { + "pc": 89, + "op": "SUB", + "gas": 2869549, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x20", + "0x80", + "0xa0" + ] + }, + { + "pc": 90, + "op": "SLT", + "gas": 2869546, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x20", + "0x20" + ] + }, + { + "pc": 91, + "op": "ISZERO", + "gas": 2869543, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0" + ] + }, + { + "pc": 92, + "op": "PUSH1", + "gas": 2869540, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x1" + ] + }, + { + "pc": 94, + "op": "JUMPI", + "gas": 2869537, + "gasCost": 10, + "depth": 3, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x1", + "0x63" + ] + }, + { + "pc": 99, + "op": "JUMPDEST", + "gas": 2869527, + "gasCost": 1, + "depth": 3, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0" + ] + }, + { + "pc": 100, + "op": "PUSH1", + "gas": 2869526, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0" + ] + }, + { + "pc": 102, + "op": "PUSH1", + "gas": 2869523, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0" + ] + }, + { + "pc": 104, + "op": "DUP5", + "gas": 2869520, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f" + ] + }, + { + "pc": 105, + "op": "DUP3", + "gas": 2869517, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0" + ] + }, + { + "pc": 106, + "op": "DUP6", + "gas": 2869514, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x0" + ] + }, + { + "pc": 107, + "op": "ADD", + "gas": 2869511, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x0", + "0x80" + ] + }, + { + "pc": 108, + "op": "PUSH1", + "gas": 2869508, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80" + ] + }, + { + "pc": 110, + "op": "JUMP", + "gas": 2869505, + "gasCost": 8, + "depth": 3, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x3f" + ] + }, + { + "pc": 63, + "op": "JUMPDEST", + "gas": 2869497, + "gasCost": 1, + "depth": 3, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80" + ] + }, + { + "pc": 64, + "op": "PUSH1", + "gas": 2869496, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80" + ] + }, + { + "pc": 66, + "op": "DUP2", + "gas": 2869493, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x0" + ] + }, + { + "pc": 67, + "op": "MLOAD", + "gas": 2869490, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x0", + "0x80" + ] + }, + { + "pc": 68, + "op": "SWAP1", + "gas": 2869487, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x0", + "0x0" + ] + }, + { + "pc": 69, + "op": "POP", + "gas": 2869484, + "gasCost": 2, + "depth": 3, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x0", + "0x0" + ] + }, + { + "pc": 70, + "op": "PUSH1", + "gas": 2869482, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x0" + ] + }, + { + "pc": 72, + "op": "DUP2", + "gas": 2869479, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x0", + "0x4c" + ] + }, + { + "pc": 73, + "op": "PUSH1", + "gas": 2869476, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x0", + "0x4c", + "0x0" + ] + }, + { + "pc": 75, + "op": "JUMP", + "gas": 2869473, + "gasCost": 8, + "depth": 3, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x0", + "0x4c", + "0x0", + "0x82" + ] + }, + { + "pc": 130, + "op": "JUMPDEST", + "gas": 2869465, + "gasCost": 1, + "depth": 3, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x0", + "0x4c", + "0x0" + ] + }, + { + "pc": 131, + "op": "PUSH1", + "gas": 2869464, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x0", + "0x4c", + "0x0" + ] + }, + { + "pc": 133, + "op": "DUP2", + "gas": 2869461, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x0", + "0x4c", + "0x0", + "0x89" + ] + }, + { + "pc": 134, + "op": "PUSH1", + "gas": 2869458, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x0", + "0x4c", + "0x0", + "0x89", + "0x0" + ] + }, + { + "pc": 136, + "op": "JUMP", + "gas": 2869455, + "gasCost": 8, + "depth": 3, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x0", + "0x4c", + "0x0", + "0x89", + "0x0", + "0x78" + ] + }, + { + "pc": 120, + "op": "JUMPDEST", + "gas": 2869447, + "gasCost": 1, + "depth": 3, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x0", + "0x4c", + "0x0", + "0x89", + "0x0" + ] + }, + { + "pc": 121, + "op": "PUSH1", + "gas": 2869446, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x0", + "0x4c", + "0x0", + "0x89", + "0x0" + ] + }, + { + "pc": 123, + "op": "DUP2", + "gas": 2869443, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x0", + "0x4c", + "0x0", + "0x89", + "0x0", + "0x0" + ] + }, + { + "pc": 124, + "op": "SWAP1", + "gas": 2869440, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x0", + "0x4c", + "0x0", + "0x89", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 125, + "op": "POP", + "gas": 2869437, + "gasCost": 2, + "depth": 3, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x0", + "0x4c", + "0x0", + "0x89", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 126, + "op": "SWAP2", + "gas": 2869435, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x0", + "0x4c", + "0x0", + "0x89", + "0x0", + "0x0" + ] + }, + { + "pc": 127, + "op": "SWAP1", + "gas": 2869432, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x0", + "0x4c", + "0x0", + "0x0", + "0x0", + "0x89" + ] + }, + { + "pc": 128, + "op": "POP", + "gas": 2869429, + "gasCost": 2, + "depth": 3, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x0", + "0x4c", + "0x0", + "0x0", + "0x89", + "0x0" + ] + }, + { + "pc": 129, + "op": "JUMP", + "gas": 2869427, + "gasCost": 8, + "depth": 3, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x0", + "0x4c", + "0x0", + "0x0", + "0x89" + ] + }, + { + "pc": 137, + "op": "JUMPDEST", + "gas": 2869419, + "gasCost": 1, + "depth": 3, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x0", + "0x4c", + "0x0", + "0x0" + ] + }, + { + "pc": 138, + "op": "DUP2", + "gas": 2869418, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x0", + "0x4c", + "0x0", + "0x0" + ] + }, + { + "pc": 139, + "op": "EQ", + "gas": 2869415, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x0", + "0x4c", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 140, + "op": "PUSH1", + "gas": 2869412, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x0", + "0x4c", + "0x0", + "0x1" + ] + }, + { + "pc": 142, + "op": "JUMPI", + "gas": 2869409, + "gasCost": 10, + "depth": 3, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x0", + "0x4c", + "0x0", + "0x1", + "0x93" + ] + }, + { + "pc": 147, + "op": "JUMPDEST", + "gas": 2869399, + "gasCost": 1, + "depth": 3, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x0", + "0x4c", + "0x0" + ] + }, + { + "pc": 148, + "op": "POP", + "gas": 2869398, + "gasCost": 2, + "depth": 3, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x0", + "0x4c", + "0x0" + ] + }, + { + "pc": 149, + "op": "JUMP", + "gas": 2869396, + "gasCost": 8, + "depth": 3, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x0", + "0x4c" + ] + }, + { + "pc": 76, + "op": "JUMPDEST", + "gas": 2869388, + "gasCost": 1, + "depth": 3, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x0" + ] + }, + { + "pc": 77, + "op": "SWAP3", + "gas": 2869387, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x0" + ] + }, + { + "pc": 78, + "op": "SWAP2", + "gas": 2869384, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x80", + "0x6f" + ] + }, + { + "pc": 79, + "op": "POP", + "gas": 2869381, + "gasCost": 2, + "depth": 3, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x0", + "0x6f", + "0x80", + "0xa0" + ] + }, + { + "pc": 80, + "op": "POP", + "gas": 2869379, + "gasCost": 2, + "depth": 3, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x0", + "0x6f", + "0x80" + ] + }, + { + "pc": 81, + "op": "JUMP", + "gas": 2869377, + "gasCost": 8, + "depth": 3, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x0", + "0x6f" + ] + }, + { + "pc": 111, + "op": "JUMPDEST", + "gas": 2869369, + "gasCost": 1, + "depth": 3, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 112, + "op": "SWAP2", + "gas": 2869368, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 113, + "op": "POP", + "gas": 2869365, + "gasCost": 2, + "depth": 3, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 114, + "op": "POP", + "gas": 2869363, + "gasCost": 2, + "depth": 3, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0" + ] + }, + { + "pc": 115, + "op": "SWAP3", + "gas": 2869361, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0" + ] + }, + { + "pc": 116, + "op": "SWAP2", + "gas": 2869358, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x0", + "0xa0", + "0x80", + "0x2d" + ] + }, + { + "pc": 117, + "op": "POP", + "gas": 2869355, + "gasCost": 2, + "depth": 3, + "stack": [ + "0x0", + "0x2d", + "0x80", + "0xa0" + ] + }, + { + "pc": 118, + "op": "POP", + "gas": 2869353, + "gasCost": 2, + "depth": 3, + "stack": [ + "0x0", + "0x2d", + "0x80" + ] + }, + { + "pc": 119, + "op": "JUMP", + "gas": 2869351, + "gasCost": 8, + "depth": 3, + "stack": [ + "0x0", + "0x2d" + ] + }, + { + "pc": 45, + "op": "JUMPDEST", + "gas": 2869343, + "gasCost": 1, + "depth": 3, + "stack": [ + "0x0" + ] + }, + { + "pc": 46, + "op": "PUSH1", + "gas": 2869342, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x0" + ] + }, + { + "pc": 48, + "op": "DUP2", + "gas": 2869339, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x0", + "0x0" + ] + }, + { + "pc": 49, + "op": "EQ", + "gas": 2869336, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 50, + "op": "ISZERO", + "gas": 2869333, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x0", + "0x1" + ] + }, + { + "pc": 51, + "op": "PUSH1", + "gas": 2869330, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x0", + "0x0" + ] + }, + { + "pc": 53, + "op": "JUMPI", + "gas": 2869327, + "gasCost": 10, + "depth": 3, + "stack": [ + "0x0", + "0x0", + "0x3a" + ] + }, + { + "pc": 54, + "op": "PUSH1", + "gas": 2869317, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x0" + ] + }, + { + "pc": 56, + "op": "DUP1", + "gas": 2869314, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x0", + "0x0" + ] + }, + { + "pc": 57, + "op": "REVERT", + "gas": 2869311, + "gasCost": 0, + "depth": 3, + "stack": [ + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 310, + "op": "DUP1", + "gas": 2914861, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 311, + "op": "ISZERO", + "gas": 2914858, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 312, + "op": "PUSH2", + "gas": 2914855, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x0", + "0x1" + ] + }, + { + "pc": 315, + "op": "JUMPI", + "gas": 2914852, + "gasCost": 10, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x0", + "0x1", + "0x13e" + ] + }, + { + "pc": 318, + "op": "JUMPDEST", + "gas": 2914842, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 319, + "op": "PUSH2", + "gas": 2914841, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 322, + "op": "JUMPI", + "gas": 2914838, + "gasCost": 10, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x0", + "0x14b" + ] + }, + { + "pc": 323, + "op": "PUSH1", + "gas": 2914828, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0" + ] + }, + { + "pc": 325, + "op": "SWAP1", + "gas": 2914825, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 326, + "op": "POP", + "gas": 2914822, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 327, + "op": "PUSH2", + "gas": 2914820, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0" + ] + }, + { + "pc": 330, + "op": "JUMP", + "gas": 2914817, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x150" + ] + }, + { + "pc": 336, + "op": "JUMPDEST", + "gas": 2914809, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0" + ] + }, + { + "pc": 337, + "op": "SWAP2", + "gas": 2914808, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0" + ] + }, + { + "pc": 338, + "op": "SWAP1", + "gas": 2914805, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x0", + "0x0", + "0x76" + ] + }, + { + "pc": 339, + "op": "POP", + "gas": 2914802, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x0", + "0x76", + "0x0" + ] + }, + { + "pc": 340, + "op": "JUMP", + "gas": 2914800, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x0", + "0x76" + ] + }, + { + "pc": 118, + "op": "JUMPDEST", + "gas": 2914792, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x0" + ] + }, + { + "pc": 119, + "op": "PUSH1", + "gas": 2914791, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x0" + ] + }, + { + "pc": 121, + "op": "MLOAD", + "gas": 2914788, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x0", + "0x40" + ] + }, + { + "pc": 122, + "op": "PUSH2", + "gas": 2914785, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x0", + "0x80" + ] + }, + { + "pc": 125, + "op": "SWAP2", + "gas": 2914782, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x0", + "0x80", + "0x83" + ] + }, + { + "pc": 126, + "op": "SWAP1", + "gas": 2914779, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x83", + "0x80", + "0x0" + ] + }, + { + "pc": 127, + "op": "PUSH2", + "gas": 2914776, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x83", + "0x0", + "0x80" + ] + }, + { + "pc": 130, + "op": "JUMP", + "gas": 2914773, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x83", + "0x0", + "0x80", + "0x36a" + ] + }, + { + "pc": 874, + "op": "JUMPDEST", + "gas": 2914765, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x83", + "0x0", + "0x80" + ] + }, + { + "pc": 875, + "op": "PUSH1", + "gas": 2914764, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x83", + "0x0", + "0x80" + ] + }, + { + "pc": 877, + "op": "PUSH1", + "gas": 2914761, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x83", + "0x0", + "0x80", + "0x0" + ] + }, + { + "pc": 879, + "op": "DUP3", + "gas": 2914758, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x83", + "0x0", + "0x80", + "0x0", + "0x20" + ] + }, + { + "pc": 880, + "op": "ADD", + "gas": 2914755, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x83", + "0x0", + "0x80", + "0x0", + "0x20", + "0x80" + ] + }, + { + "pc": 881, + "op": "SWAP1", + "gas": 2914752, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x83", + "0x0", + "0x80", + "0x0", + "0xa0" + ] + }, + { + "pc": 882, + "op": "POP", + "gas": 2914749, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x83", + "0x0", + "0x80", + "0xa0", + "0x0" + ] + }, + { + "pc": 883, + "op": "PUSH2", + "gas": 2914747, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x83", + "0x0", + "0x80", + "0xa0" + ] + }, + { + "pc": 886, + "op": "PUSH1", + "gas": 2914744, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x83", + "0x0", + "0x80", + "0xa0", + "0x37f" + ] + }, + { + "pc": 888, + "op": "DUP4", + "gas": 2914741, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x83", + "0x0", + "0x80", + "0xa0", + "0x37f", + "0x0" + ] + }, + { + "pc": 889, + "op": "ADD", + "gas": 2914738, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x83", + "0x0", + "0x80", + "0xa0", + "0x37f", + "0x0", + "0x80" + ] + }, + { + "pc": 890, + "op": "DUP5", + "gas": 2914735, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x83", + "0x0", + "0x80", + "0xa0", + "0x37f", + "0x80" + ] + }, + { + "pc": 891, + "op": "PUSH2", + "gas": 2914732, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x83", + "0x0", + "0x80", + "0xa0", + "0x37f", + "0x80", + "0x0" + ] + }, + { + "pc": 894, + "op": "JUMP", + "gas": 2914729, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x83", + "0x0", + "0x80", + "0xa0", + "0x37f", + "0x80", + "0x0", + "0x34c" + ] + }, + { + "pc": 844, + "op": "JUMPDEST", + "gas": 2914721, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x83", + "0x0", + "0x80", + "0xa0", + "0x37f", + "0x80", + "0x0" + ] + }, + { + "pc": 845, + "op": "PUSH2", + "gas": 2914720, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x83", + "0x0", + "0x80", + "0xa0", + "0x37f", + "0x80", + "0x0" + ] + }, + { + "pc": 848, + "op": "DUP2", + "gas": 2914717, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x83", + "0x0", + "0x80", + "0xa0", + "0x37f", + "0x80", + "0x0", + "0x355" + ] + }, + { + "pc": 849, + "op": "PUSH2", + "gas": 2914714, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x83", + "0x0", + "0x80", + "0xa0", + "0x37f", + "0x80", + "0x0", + "0x355", + "0x0" + ] + }, + { + "pc": 852, + "op": "JUMP", + "gas": 2914711, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x83", + "0x0", + "0x80", + "0xa0", + "0x37f", + "0x80", + "0x0", + "0x355", + "0x0", + "0x3a0" + ] + }, + { + "pc": 928, + "op": "JUMPDEST", + "gas": 2914703, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x83", + "0x0", + "0x80", + "0xa0", + "0x37f", + "0x80", + "0x0", + "0x355", + "0x0" + ] + }, + { + "pc": 929, + "op": "PUSH1", + "gas": 2914702, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x83", + "0x0", + "0x80", + "0xa0", + "0x37f", + "0x80", + "0x0", + "0x355", + "0x0" + ] + }, + { + "pc": 931, + "op": "PUSH2", + "gas": 2914699, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x83", + "0x0", + "0x80", + "0xa0", + "0x37f", + "0x80", + "0x0", + "0x355", + "0x0", + "0x0" + ] + }, + { + "pc": 934, + "op": "DUP3", + "gas": 2914696, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x83", + "0x0", + "0x80", + "0xa0", + "0x37f", + "0x80", + "0x0", + "0x355", + "0x0", + "0x0", + "0x3ab" + ] + }, + { + "pc": 935, + "op": "PUSH2", + "gas": 2914693, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x83", + "0x0", + "0x80", + "0xa0", + "0x37f", + "0x80", + "0x0", + "0x355", + "0x0", + "0x0", + "0x3ab", + "0x0" + ] + }, + { + "pc": 938, + "op": "JUMP", + "gas": 2914690, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x83", + "0x0", + "0x80", + "0xa0", + "0x37f", + "0x80", + "0x0", + "0x355", + "0x0", + "0x0", + "0x3ab", + "0x0", + "0x3b2" + ] + }, + { + "pc": 946, + "op": "JUMPDEST", + "gas": 2914682, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x83", + "0x0", + "0x80", + "0xa0", + "0x37f", + "0x80", + "0x0", + "0x355", + "0x0", + "0x0", + "0x3ab", + "0x0" + ] + }, + { + "pc": 947, + "op": "PUSH1", + "gas": 2914681, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x83", + "0x0", + "0x80", + "0xa0", + "0x37f", + "0x80", + "0x0", + "0x355", + "0x0", + "0x0", + "0x3ab", + "0x0" + ] + }, + { + "pc": 949, + "op": "PUSH20", + "gas": 2914678, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x83", + "0x0", + "0x80", + "0xa0", + "0x37f", + "0x80", + "0x0", + "0x355", + "0x0", + "0x0", + "0x3ab", + "0x0", + "0x0" + ] + }, + { + "pc": 970, + "op": "DUP3", + "gas": 2914675, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x83", + "0x0", + "0x80", + "0xa0", + "0x37f", + "0x80", + "0x0", + "0x355", + "0x0", + "0x0", + "0x3ab", + "0x0", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 971, + "op": "AND", + "gas": 2914672, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x83", + "0x0", + "0x80", + "0xa0", + "0x37f", + "0x80", + "0x0", + "0x355", + "0x0", + "0x0", + "0x3ab", + "0x0", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x0" + ] + }, + { + "pc": 972, + "op": "SWAP1", + "gas": 2914669, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x83", + "0x0", + "0x80", + "0xa0", + "0x37f", + "0x80", + "0x0", + "0x355", + "0x0", + "0x0", + "0x3ab", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 973, + "op": "POP", + "gas": 2914666, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x83", + "0x0", + "0x80", + "0xa0", + "0x37f", + "0x80", + "0x0", + "0x355", + "0x0", + "0x0", + "0x3ab", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 974, + "op": "SWAP2", + "gas": 2914664, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x83", + "0x0", + "0x80", + "0xa0", + "0x37f", + "0x80", + "0x0", + "0x355", + "0x0", + "0x0", + "0x3ab", + "0x0", + "0x0" + ] + }, + { + "pc": 975, + "op": "SWAP1", + "gas": 2914661, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x83", + "0x0", + "0x80", + "0xa0", + "0x37f", + "0x80", + "0x0", + "0x355", + "0x0", + "0x0", + "0x0", + "0x0", + "0x3ab" + ] + }, + { + "pc": 976, + "op": "POP", + "gas": 2914658, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x83", + "0x0", + "0x80", + "0xa0", + "0x37f", + "0x80", + "0x0", + "0x355", + "0x0", + "0x0", + "0x0", + "0x3ab", + "0x0" + ] + }, + { + "pc": 977, + "op": "JUMP", + "gas": 2914656, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x83", + "0x0", + "0x80", + "0xa0", + "0x37f", + "0x80", + "0x0", + "0x355", + "0x0", + "0x0", + "0x0", + "0x3ab" + ] + }, + { + "pc": 939, + "op": "JUMPDEST", + "gas": 2914648, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x83", + "0x0", + "0x80", + "0xa0", + "0x37f", + "0x80", + "0x0", + "0x355", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 940, + "op": "SWAP1", + "gas": 2914647, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x83", + "0x0", + "0x80", + "0xa0", + "0x37f", + "0x80", + "0x0", + "0x355", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 941, + "op": "POP", + "gas": 2914644, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x83", + "0x0", + "0x80", + "0xa0", + "0x37f", + "0x80", + "0x0", + "0x355", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 942, + "op": "SWAP2", + "gas": 2914642, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x83", + "0x0", + "0x80", + "0xa0", + "0x37f", + "0x80", + "0x0", + "0x355", + "0x0", + "0x0" + ] + }, + { + "pc": 943, + "op": "SWAP1", + "gas": 2914639, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x83", + "0x0", + "0x80", + "0xa0", + "0x37f", + "0x80", + "0x0", + "0x0", + "0x0", + "0x355" + ] + }, + { + "pc": 944, + "op": "POP", + "gas": 2914636, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x83", + "0x0", + "0x80", + "0xa0", + "0x37f", + "0x80", + "0x0", + "0x0", + "0x355", + "0x0" + ] + }, + { + "pc": 945, + "op": "JUMP", + "gas": 2914634, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x83", + "0x0", + "0x80", + "0xa0", + "0x37f", + "0x80", + "0x0", + "0x0", + "0x355" + ] + }, + { + "pc": 853, + "op": "JUMPDEST", + "gas": 2914626, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x83", + "0x0", + "0x80", + "0xa0", + "0x37f", + "0x80", + "0x0", + "0x0" + ] + }, + { + "pc": 854, + "op": "DUP3", + "gas": 2914625, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x83", + "0x0", + "0x80", + "0xa0", + "0x37f", + "0x80", + "0x0", + "0x0" + ] + }, + { + "pc": 855, + "op": "MSTORE", + "gas": 2914622, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x83", + "0x0", + "0x80", + "0xa0", + "0x37f", + "0x80", + "0x0", + "0x0", + "0x80" + ] + }, + { + "pc": 856, + "op": "POP", + "gas": 2914619, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x83", + "0x0", + "0x80", + "0xa0", + "0x37f", + "0x80", + "0x0" + ] + }, + { + "pc": 857, + "op": "POP", + "gas": 2914617, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x83", + "0x0", + "0x80", + "0xa0", + "0x37f", + "0x80" + ] + }, + { + "pc": 858, + "op": "JUMP", + "gas": 2914615, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x83", + "0x0", + "0x80", + "0xa0", + "0x37f" + ] + }, + { + "pc": 895, + "op": "JUMPDEST", + "gas": 2914607, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x83", + "0x0", + "0x80", + "0xa0" + ] + }, + { + "pc": 896, + "op": "SWAP3", + "gas": 2914606, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x83", + "0x0", + "0x80", + "0xa0" + ] + }, + { + "pc": 897, + "op": "SWAP2", + "gas": 2914603, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0xa0", + "0x0", + "0x80", + "0x83" + ] + }, + { + "pc": 898, + "op": "POP", + "gas": 2914600, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0xa0", + "0x83", + "0x80", + "0x0" + ] + }, + { + "pc": 899, + "op": "POP", + "gas": 2914598, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0xa0", + "0x83", + "0x80" + ] + }, + { + "pc": 900, + "op": "JUMP", + "gas": 2914596, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0xa0", + "0x83" + ] + }, + { + "pc": 131, + "op": "JUMPDEST", + "gas": 2914588, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0xa0" + ] + }, + { + "pc": 132, + "op": "PUSH1", + "gas": 2914587, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0xa0" + ] + }, + { + "pc": 134, + "op": "MLOAD", + "gas": 2914584, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0xa0", + "0x40" + ] + }, + { + "pc": 135, + "op": "DUP1", + "gas": 2914581, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0xa0", + "0x80" + ] + }, + { + "pc": 136, + "op": "SWAP2", + "gas": 2914578, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0xa0", + "0x80", + "0x80" + ] + }, + { + "pc": 137, + "op": "SUB", + "gas": 2914575, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x80", + "0x80", + "0xa0" + ] + }, + { + "pc": 138, + "op": "SWAP1", + "gas": 2914572, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x80", + "0x20" + ] + }, + { + "pc": 139, + "op": "RETURN", + "gas": 2914569, + "gasCost": 0, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x20", + "0x80" + ] + }, + { + "pc": 742, + "op": "ISZERO", + "gas": 2961360, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0xa4", + "0x1" + ] + }, + { + "pc": 743, + "op": "DUP1", + "gas": 2961357, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0xa4", + "0x0" + ] + }, + { + "pc": 744, + "op": "ISZERO", + "gas": 2961354, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0xa4", + "0x0", + "0x0" + ] + }, + { + "pc": 745, + "op": "PUSH2", + "gas": 2961351, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0xa4", + "0x0", + "0x1" + ] + }, + { + "pc": 748, + "op": "JUMPI", + "gas": 2961348, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0xa4", + "0x0", + "0x1", + "0x2f6" + ] + }, + { + "pc": 758, + "op": "JUMPDEST", + "gas": 2961338, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0xa4", + "0x0" + ] + }, + { + "pc": 759, + "op": "POP", + "gas": 2961337, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0xa4", + "0x0" + ] + }, + { + "pc": 760, + "op": "POP", + "gas": 2961335, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0xa4" + ] + }, + { + "pc": 761, + "op": "POP", + "gas": 2961333, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1" + ] + }, + { + "pc": 762, + "op": "POP", + "gas": 2961331, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a" + ] + }, + { + "pc": 763, + "op": "PUSH1", + "gas": 2961329, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a" + ] + }, + { + "pc": 765, + "op": "MLOAD", + "gas": 2961326, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x40" + ] + }, + { + "pc": 766, + "op": "RETURNDATASIZE", + "gas": 2961323, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x80" + ] + }, + { + "pc": 767, + "op": "PUSH1", + "gas": 2961321, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x80", + "0x20" + ] + }, + { + "pc": 769, + "op": "NOT", + "gas": 2961318, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x80", + "0x20", + "0x1f" + ] + }, + { + "pc": 770, + "op": "PUSH1", + "gas": 2961315, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x80", + "0x20", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0" + ] + }, + { + "pc": 772, + "op": "DUP3", + "gas": 2961312, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x80", + "0x20", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", + "0x1f" + ] + }, + { + "pc": 773, + "op": "ADD", + "gas": 2961309, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x80", + "0x20", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", + "0x1f", + "0x20" + ] + }, + { + "pc": 774, + "op": "AND", + "gas": 2961306, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x80", + "0x20", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", + "0x3f" + ] + }, + { + "pc": 775, + "op": "DUP3", + "gas": 2961303, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x80", + "0x20", + "0x20" + ] + }, + { + "pc": 776, + "op": "ADD", + "gas": 2961300, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x80", + "0x20", + "0x20", + "0x80" + ] + }, + { + "pc": 777, + "op": "DUP1", + "gas": 2961297, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x80", + "0x20", + "0xa0" + ] + }, + { + "pc": 778, + "op": "PUSH1", + "gas": 2961294, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x80", + "0x20", + "0xa0", + "0xa0" + ] + }, + { + "pc": 780, + "op": "MSTORE", + "gas": 2961291, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x80", + "0x20", + "0xa0", + "0xa0", + "0x40" + ] + }, + { + "pc": 781, + "op": "POP", + "gas": 2961288, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x80", + "0x20", + "0xa0" + ] + }, + { + "pc": 782, + "op": "DUP2", + "gas": 2961286, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x80", + "0x20" + ] + }, + { + "pc": 783, + "op": "ADD", + "gas": 2961283, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x80", + "0x20", + "0x80" + ] + }, + { + "pc": 784, + "op": "SWAP1", + "gas": 2961280, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x80", + "0xa0" + ] + }, + { + "pc": 785, + "op": "PUSH2", + "gas": 2961277, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0xa0", + "0x80" + ] + }, + { + "pc": 788, + "op": "SWAP2", + "gas": 2961274, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0xa0", + "0x80", + "0x31a" + ] + }, + { + "pc": 789, + "op": "SWAP1", + "gas": 2961271, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x31a", + "0x80", + "0xa0" + ] + }, + { + "pc": 790, + "op": "PUSH2", + "gas": 2961268, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x31a", + "0xa0", + "0x80" + ] + }, + { + "pc": 793, + "op": "JUMP", + "gas": 2961265, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x31a", + "0xa0", + "0x80", + "0x5d2" + ] + }, + { + "pc": 1490, + "op": "JUMPDEST", + "gas": 2961257, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x31a", + "0xa0", + "0x80" + ] + }, + { + "pc": 1491, + "op": "PUSH1", + "gas": 2961256, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x31a", + "0xa0", + "0x80" + ] + }, + { + "pc": 1493, + "op": "PUSH1", + "gas": 2961253, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x31a", + "0xa0", + "0x80", + "0x0" + ] + }, + { + "pc": 1495, + "op": "DUP3", + "gas": 2961250, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x31a", + "0xa0", + "0x80", + "0x0", + "0x20" + ] + }, + { + "pc": 1496, + "op": "DUP5", + "gas": 2961247, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x31a", + "0xa0", + "0x80", + "0x0", + "0x20", + "0x80" + ] + }, + { + "pc": 1497, + "op": "SUB", + "gas": 2961244, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x31a", + "0xa0", + "0x80", + "0x0", + "0x20", + "0x80", + "0xa0" + ] + }, + { + "pc": 1498, + "op": "SLT", + "gas": 2961241, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x31a", + "0xa0", + "0x80", + "0x0", + "0x20", + "0x20" + ] + }, + { + "pc": 1499, + "op": "ISZERO", + "gas": 2961238, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x31a", + "0xa0", + "0x80", + "0x0", + "0x0" + ] + }, + { + "pc": 1500, + "op": "PUSH2", + "gas": 2961235, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x31a", + "0xa0", + "0x80", + "0x0", + "0x1" + ] + }, + { + "pc": 1503, + "op": "JUMPI", + "gas": 2961232, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x31a", + "0xa0", + "0x80", + "0x0", + "0x1", + "0x5e4" + ] + }, + { + "pc": 1508, + "op": "JUMPDEST", + "gas": 2961222, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x31a", + "0xa0", + "0x80", + "0x0" + ] + }, + { + "pc": 1509, + "op": "PUSH1", + "gas": 2961221, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x31a", + "0xa0", + "0x80", + "0x0" + ] + }, + { + "pc": 1511, + "op": "PUSH2", + "gas": 2961218, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x31a", + "0xa0", + "0x80", + "0x0", + "0x0" + ] + }, + { + "pc": 1514, + "op": "DUP5", + "gas": 2961215, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x31a", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2" + ] + }, + { + "pc": 1515, + "op": "DUP3", + "gas": 2961212, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x31a", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0" + ] + }, + { + "pc": 1516, + "op": "DUP6", + "gas": 2961209, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x31a", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x0" + ] + }, + { + "pc": 1517, + "op": "ADD", + "gas": 2961206, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x31a", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x0", + "0x80" + ] + }, + { + "pc": 1518, + "op": "PUSH2", + "gas": 2961203, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x31a", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80" + ] + }, + { + "pc": 1521, + "op": "JUMP", + "gas": 2961200, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x31a", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x5a8" + ] + }, + { + "pc": 1448, + "op": "JUMPDEST", + "gas": 2961192, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x31a", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80" + ] + }, + { + "pc": 1449, + "op": "PUSH1", + "gas": 2961191, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x31a", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80" + ] + }, + { + "pc": 1451, + "op": "DUP2", + "gas": 2961188, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x31a", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x0" + ] + }, + { + "pc": 1452, + "op": "MLOAD", + "gas": 2961185, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x31a", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x0", + "0x80" + ] + }, + { + "pc": 1453, + "op": "SWAP1", + "gas": 2961182, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x31a", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x0", + "0x0" + ] + }, + { + "pc": 1454, + "op": "POP", + "gas": 2961179, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x31a", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x0", + "0x0" + ] + }, + { + "pc": 1455, + "op": "PUSH2", + "gas": 2961177, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x31a", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x0" + ] + }, + { + "pc": 1458, + "op": "DUP2", + "gas": 2961174, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x31a", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x0", + "0x5b7" + ] + }, + { + "pc": 1459, + "op": "PUSH2", + "gas": 2961171, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x31a", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x0", + "0x5b7", + "0x0" + ] + }, + { + "pc": 1462, + "op": "JUMP", + "gas": 2961168, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x31a", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x0", + "0x5b7", + "0x0", + "0x731" + ] + }, + { + "pc": 1841, + "op": "JUMPDEST", + "gas": 2961160, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x31a", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x0", + "0x5b7", + "0x0" + ] + }, + { + "pc": 1842, + "op": "PUSH2", + "gas": 2961159, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x31a", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x0", + "0x5b7", + "0x0" + ] + }, + { + "pc": 1845, + "op": "DUP2", + "gas": 2961156, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x31a", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x0", + "0x5b7", + "0x0", + "0x73a" + ] + }, + { + "pc": 1846, + "op": "PUSH2", + "gas": 2961153, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x31a", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x0", + "0x5b7", + "0x0", + "0x73a", + "0x0" + ] + }, + { + "pc": 1849, + "op": "JUMP", + "gas": 2961150, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x31a", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x0", + "0x5b7", + "0x0", + "0x73a", + "0x0", + "0x6cc" + ] + }, + { + "pc": 1740, + "op": "JUMPDEST", + "gas": 2961142, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x31a", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x0", + "0x5b7", + "0x0", + "0x73a", + "0x0" + ] + }, + { + "pc": 1741, + "op": "PUSH1", + "gas": 2961141, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x31a", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x0", + "0x5b7", + "0x0", + "0x73a", + "0x0" + ] + }, + { + "pc": 1743, + "op": "PUSH2", + "gas": 2961138, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x31a", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x0", + "0x5b7", + "0x0", + "0x73a", + "0x0", + "0x0" + ] + }, + { + "pc": 1746, + "op": "DUP3", + "gas": 2961135, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x31a", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x0", + "0x5b7", + "0x0", + "0x73a", + "0x0", + "0x0", + "0x6d7" + ] + }, + { + "pc": 1747, + "op": "PUSH2", + "gas": 2961132, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x31a", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x0", + "0x5b7", + "0x0", + "0x73a", + "0x0", + "0x0", + "0x6d7", + "0x0" + ] + }, + { + "pc": 1750, + "op": "JUMP", + "gas": 2961129, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x31a", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x0", + "0x5b7", + "0x0", + "0x73a", + "0x0", + "0x0", + "0x6d7", + "0x0", + "0x6de" + ] + }, + { + "pc": 1758, + "op": "JUMPDEST", + "gas": 2961121, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x31a", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x0", + "0x5b7", + "0x0", + "0x73a", + "0x0", + "0x0", + "0x6d7", + "0x0" + ] + }, + { + "pc": 1759, + "op": "PUSH1", + "gas": 2961120, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x31a", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x0", + "0x5b7", + "0x0", + "0x73a", + "0x0", + "0x0", + "0x6d7", + "0x0" + ] + }, + { + "pc": 1761, + "op": "PUSH20", + "gas": 2961117, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x31a", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x0", + "0x5b7", + "0x0", + "0x73a", + "0x0", + "0x0", + "0x6d7", + "0x0", + "0x0" + ] + }, + { + "pc": 1782, + "op": "DUP3", + "gas": 2961114, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x31a", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x0", + "0x5b7", + "0x0", + "0x73a", + "0x0", + "0x0", + "0x6d7", + "0x0", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 1783, + "op": "AND", + "gas": 2961111, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x31a", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x0", + "0x5b7", + "0x0", + "0x73a", + "0x0", + "0x0", + "0x6d7", + "0x0", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x0" + ] + }, + { + "pc": 1784, + "op": "SWAP1", + "gas": 2961108, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x31a", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x0", + "0x5b7", + "0x0", + "0x73a", + "0x0", + "0x0", + "0x6d7", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 1785, + "op": "POP", + "gas": 2961105, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x31a", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x0", + "0x5b7", + "0x0", + "0x73a", + "0x0", + "0x0", + "0x6d7", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 1786, + "op": "SWAP2", + "gas": 2961103, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x31a", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x0", + "0x5b7", + "0x0", + "0x73a", + "0x0", + "0x0", + "0x6d7", + "0x0", + "0x0" + ] + }, + { + "pc": 1787, + "op": "SWAP1", + "gas": 2961100, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x31a", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x0", + "0x5b7", + "0x0", + "0x73a", + "0x0", + "0x0", + "0x0", + "0x0", + "0x6d7" + ] + }, + { + "pc": 1788, + "op": "POP", + "gas": 2961097, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x31a", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x0", + "0x5b7", + "0x0", + "0x73a", + "0x0", + "0x0", + "0x0", + "0x6d7", + "0x0" + ] + }, + { + "pc": 1789, + "op": "JUMP", + "gas": 2961095, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x31a", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x0", + "0x5b7", + "0x0", + "0x73a", + "0x0", + "0x0", + "0x0", + "0x6d7" + ] + }, + { + "pc": 1751, + "op": "JUMPDEST", + "gas": 2961087, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x31a", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x0", + "0x5b7", + "0x0", + "0x73a", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 1752, + "op": "SWAP1", + "gas": 2961086, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x31a", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x0", + "0x5b7", + "0x0", + "0x73a", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 1753, + "op": "POP", + "gas": 2961083, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x31a", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x0", + "0x5b7", + "0x0", + "0x73a", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 1754, + "op": "SWAP2", + "gas": 2961081, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x31a", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x0", + "0x5b7", + "0x0", + "0x73a", + "0x0", + "0x0" + ] + }, + { + "pc": 1755, + "op": "SWAP1", + "gas": 2961078, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x31a", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x0", + "0x5b7", + "0x0", + "0x0", + "0x0", + "0x73a" + ] + }, + { + "pc": 1756, + "op": "POP", + "gas": 2961075, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x31a", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x0", + "0x5b7", + "0x0", + "0x0", + "0x73a", + "0x0" + ] + }, + { + "pc": 1757, + "op": "JUMP", + "gas": 2961073, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x31a", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x0", + "0x5b7", + "0x0", + "0x0", + "0x73a" + ] + }, + { + "pc": 1850, + "op": "JUMPDEST", + "gas": 2961065, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x31a", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x0", + "0x5b7", + "0x0", + "0x0" + ] + }, + { + "pc": 1851, + "op": "DUP2", + "gas": 2961064, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x31a", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x0", + "0x5b7", + "0x0", + "0x0" + ] + }, + { + "pc": 1852, + "op": "EQ", + "gas": 2961061, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x31a", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x0", + "0x5b7", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 1853, + "op": "PUSH2", + "gas": 2961058, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x31a", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x0", + "0x5b7", + "0x0", + "0x1" + ] + }, + { + "pc": 1856, + "op": "JUMPI", + "gas": 2961055, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x31a", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x0", + "0x5b7", + "0x0", + "0x1", + "0x745" + ] + }, + { + "pc": 1861, + "op": "JUMPDEST", + "gas": 2961045, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x31a", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x0", + "0x5b7", + "0x0" + ] + }, + { + "pc": 1862, + "op": "POP", + "gas": 2961044, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x31a", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x0", + "0x5b7", + "0x0" + ] + }, + { + "pc": 1863, + "op": "JUMP", + "gas": 2961042, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x31a", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x0", + "0x5b7" + ] + }, + { + "pc": 1463, + "op": "JUMPDEST", + "gas": 2961034, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x31a", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x0" + ] + }, + { + "pc": 1464, + "op": "SWAP3", + "gas": 2961033, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x31a", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x0" + ] + }, + { + "pc": 1465, + "op": "SWAP2", + "gas": 2961030, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x31a", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x80", + "0x5f2" + ] + }, + { + "pc": 1466, + "op": "POP", + "gas": 2961027, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x31a", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x0", + "0x5f2", + "0x80", + "0xa0" + ] + }, + { + "pc": 1467, + "op": "POP", + "gas": 2961025, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x31a", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x0", + "0x5f2", + "0x80" + ] + }, + { + "pc": 1468, + "op": "JUMP", + "gas": 2961023, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x31a", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x0", + "0x5f2" + ] + }, + { + "pc": 1522, + "op": "JUMPDEST", + "gas": 2961015, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x31a", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 1523, + "op": "SWAP2", + "gas": 2961014, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x31a", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 1524, + "op": "POP", + "gas": 2961011, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x31a", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 1525, + "op": "POP", + "gas": 2961009, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x31a", + "0xa0", + "0x80", + "0x0", + "0x0" + ] + }, + { + "pc": 1526, + "op": "SWAP3", + "gas": 2961007, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x31a", + "0xa0", + "0x80", + "0x0" + ] + }, + { + "pc": 1527, + "op": "SWAP2", + "gas": 2961004, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x0", + "0xa0", + "0x80", + "0x31a" + ] + }, + { + "pc": 1528, + "op": "POP", + "gas": 2961001, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x0", + "0x31a", + "0x80", + "0xa0" + ] + }, + { + "pc": 1529, + "op": "POP", + "gas": 2960999, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x0", + "0x31a", + "0x80" + ] + }, + { + "pc": 1530, + "op": "JUMP", + "gas": 2960997, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x0", + "0x31a" + ] + }, + { + "pc": 794, + "op": "JUMPDEST", + "gas": 2960989, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x0" + ] + }, + { + "pc": 795, + "op": "PUSH1", + "gas": 2960988, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x0" + ] + }, + { + "pc": 797, + "op": "PUSH1", + "gas": 2960985, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x0", + "0x1" + ] + }, + { + "pc": 799, + "op": "PUSH2", + "gas": 2960982, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x0", + "0x1", + "0x0" + ] + }, + { + "pc": 802, + "op": "EXP", + "gas": 2960979, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x0", + "0x1", + "0x0", + "0x100" + ] + }, + { + "pc": 803, + "op": "DUP2", + "gas": 2960969, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x0", + "0x1", + "0x1" + ] + }, + { + "pc": 804, + "op": "SLOAD", + "gas": 2960966, + "gasCost": 2100, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x0", + "0x1", + "0x1", + "0x1" + ], + "storage": { + "0x0000000000000000000000000000000000000000000000000000000000000000": "0x000000000000000000000000467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x0000000000000000000000000000000000000000000000000000000000000001": "0x00000000000000000000000007179993df93db69cfdefca8af12ffcc24f3188c" + }, + "extraData": { + "proofList": [ + { + "address": "0xda1ad647621a1984ce21b0bab020005fe3b5f4da", + "nonce": 1, + "balance": "0x0", + "codeHash": "0x00c2455a35210099bbbb95bdd1b6a9bfc4702d98ba0f971009391cd8f970e729", + "storage": { + "key": "0x0000000000000000000000000000000000000000000000000000000000000001", + "value": "0x00000000000000000000000007179993df93db69cfdefca8af12ffcc24f3188c" + } + } + ] + } + }, + { + "pc": 805, + "op": "DUP2", + "gas": 2958866, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x0", + "0x1", + "0x1", + "0x7179993df93db69cfdefca8af12ffcc24f3188c" + ] + }, + { + "pc": 806, + "op": "PUSH20", + "gas": 2958863, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x0", + "0x1", + "0x1", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x1" + ] + }, + { + "pc": 827, + "op": "MUL", + "gas": 2958860, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x0", + "0x1", + "0x1", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0x1", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 828, + "op": "NOT", + "gas": 2958855, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x0", + "0x1", + "0x1", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 829, + "op": "AND", + "gas": 2958852, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x0", + "0x1", + "0x1", + "0x7179993df93db69cfdefca8af12ffcc24f3188c", + "0xffffffffffffffffffffffff0000000000000000000000000000000000000000" + ] + }, + { + "pc": 830, + "op": "SWAP1", + "gas": 2958849, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x0", + "0x1", + "0x1", + "0x0" + ] + }, + { + "pc": 831, + "op": "DUP4", + "gas": 2958846, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x0", + "0x1", + "0x0", + "0x1" + ] + }, + { + "pc": 832, + "op": "PUSH20", + "gas": 2958843, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x0", + "0x1", + "0x0", + "0x1", + "0x0" + ] + }, + { + "pc": 853, + "op": "AND", + "gas": 2958840, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x0", + "0x1", + "0x0", + "0x1", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 854, + "op": "MUL", + "gas": 2958837, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x0", + "0x1", + "0x0", + "0x1", + "0x0" + ] + }, + { + "pc": 855, + "op": "OR", + "gas": 2958832, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x0", + "0x1", + "0x0", + "0x0" + ] + }, + { + "pc": 856, + "op": "SWAP1", + "gas": 2958829, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x0", + "0x1", + "0x0" + ] + }, + { + "pc": 857, + "op": "SSTORE", + "gas": 2958826, + "gasCost": 2900, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x0", + "0x0", + "0x1" + ], + "storage": { + "0x0000000000000000000000000000000000000000000000000000000000000000": "0x000000000000000000000000467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x0000000000000000000000000000000000000000000000000000000000000001": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "refund": 4800, + "extraData": { + "proofList": [ + { + "address": "0xda1ad647621a1984ce21b0bab020005fe3b5f4da", + "nonce": 1, + "balance": "0x0", + "codeHash": "0x00c2455a35210099bbbb95bdd1b6a9bfc4702d98ba0f971009391cd8f970e729", + "storage": { + "key": "0x0000000000000000000000000000000000000000000000000000000000000001", + "value": "0x00000000000000000000000007179993df93db69cfdefca8af12ffcc24f3188c" + } + } + ] + } + }, + { + "pc": 858, + "op": "POP", + "gas": 2955926, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x0" + ], + "refund": 4800 + }, + { + "pc": 859, + "op": "POP", + "gas": 2955924, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a" + ], + "refund": 4800 + }, + { + "pc": 860, + "op": "POP", + "gas": 2955922, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb", + "0x0" + ], + "refund": 4800 + }, + { + "pc": 861, + "op": "JUMP", + "gas": 2955920, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x3719f511", + "0xbb" + ], + "refund": 4800 + }, + { + "pc": 187, + "op": "JUMPDEST", + "gas": 2955912, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x3719f511" + ], + "refund": 4800 + }, + { + "pc": 188, + "op": "STOP", + "gas": 2955911, + "gasCost": 0, + "depth": 1, + "stack": [ + "0x3719f511" + ], + "refund": 4800 + } + ] + }, + { + "gas": 63035, + "failed": true, + "returnValue": "08c379a00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000c64656c696265726174656c790000000000000000000000000000000000000000", + "from": { + "address": "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "nonce": 227, + "balance": "0x56bc75e2d630ffffffffffffffffffffffffffffffffffff334673c726f3ae", + "codeHash": "0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470" + }, + "to": { + "address": "0xda1ad647621a1984ce21b0bab020005fe3b5f4da", + "nonce": 1, + "balance": "0x0", + "codeHash": "0x00c2455a35210099bbbb95bdd1b6a9bfc4702d98ba0f971009391cd8f970e729" + }, + "accountAfter": [ + { + "address": "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "nonce": 228, + "balance": "0x56bc75e2d630ffffffffffffffffffffffffffffffffffff334673c56a9534", + "codeHash": "0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470" + }, + { + "address": "0xda1ad647621a1984ce21b0bab020005fe3b5f4da", + "nonce": 1, + "balance": "0x0", + "codeHash": "0x00c2455a35210099bbbb95bdd1b6a9bfc4702d98ba0f971009391cd8f970e729" + } + ], + "codeHash": "0x00c2455a35210099bbbb95bdd1b6a9bfc4702d98ba0f971009391cd8f970e729", + "byteCode": "0x608060405234801561001057600080fd5b50600436106100625760003560e01c8063200d2ed214610067578063295a8edc146100855780633719f511146100a15780633e23ee43146100bd5780635696ec35146100db5780635dec31ca146100f7575b600080fd5b61006f610113565b60405161007c9190610665565b60405180910390f35b61009f600480360381019061009a91906105fb565b61013d565b005b6100bb60048036038101906100b691906105fb565b610269565b005b6100c561035e565b6040516100d29190610665565b60405180910390f35b6100f560048036038101906100f091906105fb565b610387565b005b610111600480360381019061010c91906105fb565b61047c565b005b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff166320408cd9836040518263ffffffff1660e01b815260040161019c91906106a0565b602060405180830381600087803b1580156101b657600080fd5b505af11580156101ca573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906101ee91906105d2565b600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161026090610680565b60405180910390fd5b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff166313ab33b1836040518263ffffffff1660e01b81526004016102c891906106a0565b602060405180830381600087803b1580156102e257600080fd5b505af11580156102f6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061031a91906105d2565b600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff166320408cd9836040518263ffffffff1660e01b81526004016103e691906106a0565b602060405180830381600087803b15801561040057600080fd5b505af1158015610414573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061043891906105d2565b600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff166313ab33b1836040518263ffffffff1660e01b81526004016104db91906106a0565b602060405180830381600087803b1580156104f557600080fd5b505af1158015610509573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061052d91906105d2565b600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161059f90610680565b60405180910390fd5b6000815190506105b781610731565b92915050565b6000813590506105cc81610748565b92915050565b6000602082840312156105e457600080fd5b60006105f2848285016105a8565b91505092915050565b60006020828403121561060d57600080fd5b600061061b848285016105bd565b91505092915050565b61062d816106cc565b82525050565b6000610640600c836106bb565b915061064b82610708565b602082019050919050565b61065f816106fe565b82525050565b600060208201905061067a6000830184610624565b92915050565b6000602082019050818103600083015261069981610633565b9050919050565b60006020820190506106b56000830184610656565b92915050565b600082825260208201905092915050565b60006106d7826106de565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b7f64656c696265726174656c790000000000000000000000000000000000000000600082015250565b61073a816106cc565b811461074557600080fd5b50565b610751816106fe565b811461075c57600080fd5b5056fea26469706673582212206d22486e2deddb5e91f0979599a7e467825532693839695bd2c007645b06ee3f64736f6c63430008040033", + "structLogs": [ + { + "pc": 0, + "op": "PUSH1", + "gas": 3000208, + "gasCost": 3, + "depth": 1 + }, + { + "pc": 2, + "op": "PUSH1", + "gas": 3000205, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80" + ] + }, + { + "pc": 4, + "op": "MSTORE", + "gas": 3000202, + "gasCost": 12, + "depth": 1, + "stack": [ + "0x80", + "0x40" + ] + }, + { + "pc": 5, + "op": "CALLVALUE", + "gas": 3000190, + "gasCost": 2, + "depth": 1 + }, + { + "pc": 6, + "op": "DUP1", + "gas": 3000188, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 7, + "op": "ISZERO", + "gas": 3000185, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0", + "0x0" + ] + }, + { + "pc": 8, + "op": "PUSH2", + "gas": 3000182, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0", + "0x1" + ] + }, + { + "pc": 11, + "op": "JUMPI", + "gas": 3000179, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x0", + "0x1", + "0x10" + ] + }, + { + "pc": 16, + "op": "JUMPDEST", + "gas": 3000169, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 17, + "op": "POP", + "gas": 3000168, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 18, + "op": "PUSH1", + "gas": 3000166, + "gasCost": 3, + "depth": 1 + }, + { + "pc": 20, + "op": "CALLDATASIZE", + "gas": 3000163, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x4" + ] + }, + { + "pc": 21, + "op": "LT", + "gas": 3000161, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4", + "0x24" + ] + }, + { + "pc": 22, + "op": "PUSH2", + "gas": 3000158, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 25, + "op": "JUMPI", + "gas": 3000155, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x0", + "0x62" + ] + }, + { + "pc": 26, + "op": "PUSH1", + "gas": 3000145, + "gasCost": 3, + "depth": 1 + }, + { + "pc": 28, + "op": "CALLDATALOAD", + "gas": 3000142, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 29, + "op": "PUSH1", + "gas": 3000139, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca00000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 31, + "op": "SHR", + "gas": 3000136, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca00000000000000000000000000000000000000000000000000000000", + "0xe0" + ] + }, + { + "pc": 32, + "op": "DUP1", + "gas": 3000133, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca" + ] + }, + { + "pc": 33, + "op": "PUSH4", + "gas": 3000130, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x5dec31ca" + ] + }, + { + "pc": 38, + "op": "EQ", + "gas": 3000127, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x5dec31ca", + "0x200d2ed2" + ] + }, + { + "pc": 39, + "op": "PUSH2", + "gas": 3000124, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x0" + ] + }, + { + "pc": 42, + "op": "JUMPI", + "gas": 3000121, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x0", + "0x67" + ] + }, + { + "pc": 43, + "op": "DUP1", + "gas": 3000111, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca" + ] + }, + { + "pc": 44, + "op": "PUSH4", + "gas": 3000108, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x5dec31ca" + ] + }, + { + "pc": 49, + "op": "EQ", + "gas": 3000105, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x5dec31ca", + "0x295a8edc" + ] + }, + { + "pc": 50, + "op": "PUSH2", + "gas": 3000102, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x0" + ] + }, + { + "pc": 53, + "op": "JUMPI", + "gas": 3000099, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x0", + "0x85" + ] + }, + { + "pc": 54, + "op": "DUP1", + "gas": 3000089, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca" + ] + }, + { + "pc": 55, + "op": "PUSH4", + "gas": 3000086, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x5dec31ca" + ] + }, + { + "pc": 60, + "op": "EQ", + "gas": 3000083, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x5dec31ca", + "0x3719f511" + ] + }, + { + "pc": 61, + "op": "PUSH2", + "gas": 3000080, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x0" + ] + }, + { + "pc": 64, + "op": "JUMPI", + "gas": 3000077, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x0", + "0xa1" + ] + }, + { + "pc": 65, + "op": "DUP1", + "gas": 3000067, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca" + ] + }, + { + "pc": 66, + "op": "PUSH4", + "gas": 3000064, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x5dec31ca" + ] + }, + { + "pc": 71, + "op": "EQ", + "gas": 3000061, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x5dec31ca", + "0x3e23ee43" + ] + }, + { + "pc": 72, + "op": "PUSH2", + "gas": 3000058, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x0" + ] + }, + { + "pc": 75, + "op": "JUMPI", + "gas": 3000055, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x0", + "0xbd" + ] + }, + { + "pc": 76, + "op": "DUP1", + "gas": 3000045, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca" + ] + }, + { + "pc": 77, + "op": "PUSH4", + "gas": 3000042, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x5dec31ca" + ] + }, + { + "pc": 82, + "op": "EQ", + "gas": 3000039, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x5dec31ca", + "0x5696ec35" + ] + }, + { + "pc": 83, + "op": "PUSH2", + "gas": 3000036, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x0" + ] + }, + { + "pc": 86, + "op": "JUMPI", + "gas": 3000033, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x0", + "0xdb" + ] + }, + { + "pc": 87, + "op": "DUP1", + "gas": 3000023, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca" + ] + }, + { + "pc": 88, + "op": "PUSH4", + "gas": 3000020, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x5dec31ca" + ] + }, + { + "pc": 93, + "op": "EQ", + "gas": 3000017, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x5dec31ca", + "0x5dec31ca" + ] + }, + { + "pc": 94, + "op": "PUSH2", + "gas": 3000014, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x1" + ] + }, + { + "pc": 97, + "op": "JUMPI", + "gas": 3000011, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x1", + "0xf7" + ] + }, + { + "pc": 247, + "op": "JUMPDEST", + "gas": 3000001, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x5dec31ca" + ] + }, + { + "pc": 248, + "op": "PUSH2", + "gas": 3000000, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca" + ] + }, + { + "pc": 251, + "op": "PUSH1", + "gas": 2999997, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111" + ] + }, + { + "pc": 253, + "op": "DUP1", + "gas": 2999994, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x4" + ] + }, + { + "pc": 254, + "op": "CALLDATASIZE", + "gas": 2999991, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x4", + "0x4" + ] + }, + { + "pc": 255, + "op": "SUB", + "gas": 2999989, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x4", + "0x4", + "0x24" + ] + }, + { + "pc": 256, + "op": "DUP2", + "gas": 2999986, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x4", + "0x20" + ] + }, + { + "pc": 257, + "op": "ADD", + "gas": 2999983, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x4", + "0x20", + "0x4" + ] + }, + { + "pc": 258, + "op": "SWAP1", + "gas": 2999980, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x4", + "0x24" + ] + }, + { + "pc": 259, + "op": "PUSH2", + "gas": 2999977, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x24", + "0x4" + ] + }, + { + "pc": 262, + "op": "SWAP2", + "gas": 2999974, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x24", + "0x4", + "0x10c" + ] + }, + { + "pc": 263, + "op": "SWAP1", + "gas": 2999971, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x10c", + "0x4", + "0x24" + ] + }, + { + "pc": 264, + "op": "PUSH2", + "gas": 2999968, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x10c", + "0x24", + "0x4" + ] + }, + { + "pc": 267, + "op": "JUMP", + "gas": 2999965, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x10c", + "0x24", + "0x4", + "0x5fb" + ] + }, + { + "pc": 1531, + "op": "JUMPDEST", + "gas": 2999957, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x10c", + "0x24", + "0x4" + ] + }, + { + "pc": 1532, + "op": "PUSH1", + "gas": 2999956, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x10c", + "0x24", + "0x4" + ] + }, + { + "pc": 1534, + "op": "PUSH1", + "gas": 2999953, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x10c", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 1536, + "op": "DUP3", + "gas": 2999950, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x10c", + "0x24", + "0x4", + "0x0", + "0x20" + ] + }, + { + "pc": 1537, + "op": "DUP5", + "gas": 2999947, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x10c", + "0x24", + "0x4", + "0x0", + "0x20", + "0x4" + ] + }, + { + "pc": 1538, + "op": "SUB", + "gas": 2999944, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x10c", + "0x24", + "0x4", + "0x0", + "0x20", + "0x4", + "0x24" + ] + }, + { + "pc": 1539, + "op": "SLT", + "gas": 2999941, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x10c", + "0x24", + "0x4", + "0x0", + "0x20", + "0x20" + ] + }, + { + "pc": 1540, + "op": "ISZERO", + "gas": 2999938, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x10c", + "0x24", + "0x4", + "0x0", + "0x0" + ] + }, + { + "pc": 1541, + "op": "PUSH2", + "gas": 2999935, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x10c", + "0x24", + "0x4", + "0x0", + "0x1" + ] + }, + { + "pc": 1544, + "op": "JUMPI", + "gas": 2999932, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x10c", + "0x24", + "0x4", + "0x0", + "0x1", + "0x60d" + ] + }, + { + "pc": 1549, + "op": "JUMPDEST", + "gas": 2999922, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x10c", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 1550, + "op": "PUSH1", + "gas": 2999921, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x10c", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 1552, + "op": "PUSH2", + "gas": 2999918, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x10c", + "0x24", + "0x4", + "0x0", + "0x0" + ] + }, + { + "pc": 1555, + "op": "DUP5", + "gas": 2999915, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x10c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x61b" + ] + }, + { + "pc": 1556, + "op": "DUP3", + "gas": 2999912, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x10c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x61b", + "0x24" + ] + }, + { + "pc": 1557, + "op": "DUP6", + "gas": 2999909, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x10c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x61b", + "0x24", + "0x0" + ] + }, + { + "pc": 1558, + "op": "ADD", + "gas": 2999906, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x10c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x61b", + "0x24", + "0x0", + "0x4" + ] + }, + { + "pc": 1559, + "op": "PUSH2", + "gas": 2999903, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x10c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x61b", + "0x24", + "0x4" + ] + }, + { + "pc": 1562, + "op": "JUMP", + "gas": 2999900, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x10c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x61b", + "0x24", + "0x4", + "0x5bd" + ] + }, + { + "pc": 1469, + "op": "JUMPDEST", + "gas": 2999892, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x10c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x61b", + "0x24", + "0x4" + ] + }, + { + "pc": 1470, + "op": "PUSH1", + "gas": 2999891, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x10c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x61b", + "0x24", + "0x4" + ] + }, + { + "pc": 1472, + "op": "DUP2", + "gas": 2999888, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x10c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x61b", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 1473, + "op": "CALLDATALOAD", + "gas": 2999885, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x10c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x61b", + "0x24", + "0x4", + "0x0", + "0x4" + ] + }, + { + "pc": 1474, + "op": "SWAP1", + "gas": 2999882, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x10c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x61b", + "0x24", + "0x4", + "0x0", + "0x0" + ] + }, + { + "pc": 1475, + "op": "POP", + "gas": 2999879, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x10c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x61b", + "0x24", + "0x4", + "0x0", + "0x0" + ] + }, + { + "pc": 1476, + "op": "PUSH2", + "gas": 2999877, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x10c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x61b", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 1479, + "op": "DUP2", + "gas": 2999874, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x10c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x61b", + "0x24", + "0x4", + "0x0", + "0x5cc" + ] + }, + { + "pc": 1480, + "op": "PUSH2", + "gas": 2999871, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x10c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x61b", + "0x24", + "0x4", + "0x0", + "0x5cc", + "0x0" + ] + }, + { + "pc": 1483, + "op": "JUMP", + "gas": 2999868, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x10c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x61b", + "0x24", + "0x4", + "0x0", + "0x5cc", + "0x0", + "0x748" + ] + }, + { + "pc": 1864, + "op": "JUMPDEST", + "gas": 2999860, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x10c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x61b", + "0x24", + "0x4", + "0x0", + "0x5cc", + "0x0" + ] + }, + { + "pc": 1865, + "op": "PUSH2", + "gas": 2999859, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x10c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x61b", + "0x24", + "0x4", + "0x0", + "0x5cc", + "0x0" + ] + }, + { + "pc": 1868, + "op": "DUP2", + "gas": 2999856, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x10c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x61b", + "0x24", + "0x4", + "0x0", + "0x5cc", + "0x0", + "0x751" + ] + }, + { + "pc": 1869, + "op": "PUSH2", + "gas": 2999853, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x10c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x61b", + "0x24", + "0x4", + "0x0", + "0x5cc", + "0x0", + "0x751", + "0x0" + ] + }, + { + "pc": 1872, + "op": "JUMP", + "gas": 2999850, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x10c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x61b", + "0x24", + "0x4", + "0x0", + "0x5cc", + "0x0", + "0x751", + "0x0", + "0x6fe" + ] + }, + { + "pc": 1790, + "op": "JUMPDEST", + "gas": 2999842, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x10c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x61b", + "0x24", + "0x4", + "0x0", + "0x5cc", + "0x0", + "0x751", + "0x0" + ] + }, + { + "pc": 1791, + "op": "PUSH1", + "gas": 2999841, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x10c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x61b", + "0x24", + "0x4", + "0x0", + "0x5cc", + "0x0", + "0x751", + "0x0" + ] + }, + { + "pc": 1793, + "op": "DUP2", + "gas": 2999838, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x10c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x61b", + "0x24", + "0x4", + "0x0", + "0x5cc", + "0x0", + "0x751", + "0x0", + "0x0" + ] + }, + { + "pc": 1794, + "op": "SWAP1", + "gas": 2999835, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x10c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x61b", + "0x24", + "0x4", + "0x0", + "0x5cc", + "0x0", + "0x751", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 1795, + "op": "POP", + "gas": 2999832, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x10c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x61b", + "0x24", + "0x4", + "0x0", + "0x5cc", + "0x0", + "0x751", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 1796, + "op": "SWAP2", + "gas": 2999830, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x10c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x61b", + "0x24", + "0x4", + "0x0", + "0x5cc", + "0x0", + "0x751", + "0x0", + "0x0" + ] + }, + { + "pc": 1797, + "op": "SWAP1", + "gas": 2999827, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x10c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x61b", + "0x24", + "0x4", + "0x0", + "0x5cc", + "0x0", + "0x0", + "0x0", + "0x751" + ] + }, + { + "pc": 1798, + "op": "POP", + "gas": 2999824, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x10c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x61b", + "0x24", + "0x4", + "0x0", + "0x5cc", + "0x0", + "0x0", + "0x751", + "0x0" + ] + }, + { + "pc": 1799, + "op": "JUMP", + "gas": 2999822, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x10c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x61b", + "0x24", + "0x4", + "0x0", + "0x5cc", + "0x0", + "0x0", + "0x751" + ] + }, + { + "pc": 1873, + "op": "JUMPDEST", + "gas": 2999814, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x10c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x61b", + "0x24", + "0x4", + "0x0", + "0x5cc", + "0x0", + "0x0" + ] + }, + { + "pc": 1874, + "op": "DUP2", + "gas": 2999813, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x10c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x61b", + "0x24", + "0x4", + "0x0", + "0x5cc", + "0x0", + "0x0" + ] + }, + { + "pc": 1875, + "op": "EQ", + "gas": 2999810, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x10c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x61b", + "0x24", + "0x4", + "0x0", + "0x5cc", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 1876, + "op": "PUSH2", + "gas": 2999807, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x10c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x61b", + "0x24", + "0x4", + "0x0", + "0x5cc", + "0x0", + "0x1" + ] + }, + { + "pc": 1879, + "op": "JUMPI", + "gas": 2999804, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x10c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x61b", + "0x24", + "0x4", + "0x0", + "0x5cc", + "0x0", + "0x1", + "0x75c" + ] + }, + { + "pc": 1884, + "op": "JUMPDEST", + "gas": 2999794, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x10c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x61b", + "0x24", + "0x4", + "0x0", + "0x5cc", + "0x0" + ] + }, + { + "pc": 1885, + "op": "POP", + "gas": 2999793, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x10c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x61b", + "0x24", + "0x4", + "0x0", + "0x5cc", + "0x0" + ] + }, + { + "pc": 1886, + "op": "JUMP", + "gas": 2999791, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x10c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x61b", + "0x24", + "0x4", + "0x0", + "0x5cc" + ] + }, + { + "pc": 1484, + "op": "JUMPDEST", + "gas": 2999783, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x10c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x61b", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 1485, + "op": "SWAP3", + "gas": 2999782, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x10c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x61b", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 1486, + "op": "SWAP2", + "gas": 2999779, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x10c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x0", + "0x24", + "0x4", + "0x61b" + ] + }, + { + "pc": 1487, + "op": "POP", + "gas": 2999776, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x10c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x0", + "0x61b", + "0x4", + "0x24" + ] + }, + { + "pc": 1488, + "op": "POP", + "gas": 2999774, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x10c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x0", + "0x61b", + "0x4" + ] + }, + { + "pc": 1489, + "op": "JUMP", + "gas": 2999772, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x10c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x0", + "0x61b" + ] + }, + { + "pc": 1563, + "op": "JUMPDEST", + "gas": 2999764, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x10c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 1564, + "op": "SWAP2", + "gas": 2999763, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x10c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 1565, + "op": "POP", + "gas": 2999760, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x10c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 1566, + "op": "POP", + "gas": 2999758, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x10c", + "0x24", + "0x4", + "0x0", + "0x0" + ] + }, + { + "pc": 1567, + "op": "SWAP3", + "gas": 2999756, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x10c", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 1568, + "op": "SWAP2", + "gas": 2999753, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x24", + "0x4", + "0x10c" + ] + }, + { + "pc": 1569, + "op": "POP", + "gas": 2999750, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x10c", + "0x4", + "0x24" + ] + }, + { + "pc": 1570, + "op": "POP", + "gas": 2999748, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x10c", + "0x4" + ] + }, + { + "pc": 1571, + "op": "JUMP", + "gas": 2999746, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x10c" + ] + }, + { + "pc": 268, + "op": "JUMPDEST", + "gas": 2999738, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0" + ] + }, + { + "pc": 269, + "op": "PUSH2", + "gas": 2999737, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0" + ] + }, + { + "pc": 272, + "op": "JUMP", + "gas": 2999734, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x47c" + ] + }, + { + "pc": 1148, + "op": "JUMPDEST", + "gas": 2999726, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0" + ] + }, + { + "pc": 1149, + "op": "PUSH1", + "gas": 2999725, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0" + ] + }, + { + "pc": 1151, + "op": "DUP1", + "gas": 2999722, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x0" + ] + }, + { + "pc": 1152, + "op": "PUSH1", + "gas": 2999719, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 1154, + "op": "SWAP1", + "gas": 2999716, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 1155, + "op": "SLOAD", + "gas": 2999713, + "gasCost": 2100, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "storage": { + "0x0000000000000000000000000000000000000000000000000000000000000000": "0x000000000000000000000000467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a" + }, + "extraData": { + "proofList": [ + { + "address": "0xda1ad647621a1984ce21b0bab020005fe3b5f4da", + "nonce": 1, + "balance": "0x0", + "codeHash": "0x00c2455a35210099bbbb95bdd1b6a9bfc4702d98ba0f971009391cd8f970e729", + "storage": { + "key": "0x0000000000000000000000000000000000000000000000000000000000000000", + "value": "0x000000000000000000000000467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a" + } + } + ] + } + }, + { + "pc": 1156, + "op": "SWAP1", + "gas": 2997613, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x0", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a" + ] + }, + { + "pc": 1157, + "op": "PUSH2", + "gas": 2997610, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x0" + ] + }, + { + "pc": 1160, + "op": "EXP", + "gas": 2997607, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x0", + "0x100" + ] + }, + { + "pc": 1161, + "op": "SWAP1", + "gas": 2997597, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x1" + ] + }, + { + "pc": 1162, + "op": "DIV", + "gas": 2997594, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x0", + "0x1", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a" + ] + }, + { + "pc": 1163, + "op": "PUSH20", + "gas": 2997589, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a" + ] + }, + { + "pc": 1184, + "op": "AND", + "gas": 2997586, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 1185, + "op": "SWAP1", + "gas": 2997583, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a" + ] + }, + { + "pc": 1186, + "op": "POP", + "gas": 2997580, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x0" + ] + }, + { + "pc": 1187, + "op": "DUP1", + "gas": 2997578, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a" + ] + }, + { + "pc": 1188, + "op": "PUSH20", + "gas": 2997575, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a" + ] + }, + { + "pc": 1209, + "op": "AND", + "gas": 2997572, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 1210, + "op": "PUSH4", + "gas": 2997569, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a" + ] + }, + { + "pc": 1215, + "op": "DUP4", + "gas": 2997566, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1" + ] + }, + { + "pc": 1216, + "op": "PUSH1", + "gas": 2997563, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0x0" + ] + }, + { + "pc": 1218, + "op": "MLOAD", + "gas": 2997560, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0x0", + "0x40" + ] + }, + { + "pc": 1219, + "op": "DUP3", + "gas": 2997557, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0x0", + "0x80" + ] + }, + { + "pc": 1220, + "op": "PUSH4", + "gas": 2997554, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0x0", + "0x80", + "0x13ab33b1" + ] + }, + { + "pc": 1225, + "op": "AND", + "gas": 2997551, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0x0", + "0x80", + "0x13ab33b1", + "0xffffffff" + ] + }, + { + "pc": 1226, + "op": "PUSH1", + "gas": 2997548, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0x0", + "0x80", + "0x13ab33b1" + ] + }, + { + "pc": 1228, + "op": "SHL", + "gas": 2997545, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0x0", + "0x80", + "0x13ab33b1", + "0xe0" + ] + }, + { + "pc": 1229, + "op": "DUP2", + "gas": 2997542, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0x0", + "0x80", + "0x13ab33b100000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 1230, + "op": "MSTORE", + "gas": 2997539, + "gasCost": 9, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0x0", + "0x80", + "0x13ab33b100000000000000000000000000000000000000000000000000000000", + "0x80" + ] + }, + { + "pc": 1231, + "op": "PUSH1", + "gas": 2997530, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0x0", + "0x80" + ] + }, + { + "pc": 1233, + "op": "ADD", + "gas": 2997527, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0x0", + "0x80", + "0x4" + ] + }, + { + "pc": 1234, + "op": "PUSH2", + "gas": 2997524, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0x0", + "0x84" + ] + }, + { + "pc": 1237, + "op": "SWAP2", + "gas": 2997521, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0x0", + "0x84", + "0x4db" + ] + }, + { + "pc": 1238, + "op": "SWAP1", + "gas": 2997518, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0x4db", + "0x84", + "0x0" + ] + }, + { + "pc": 1239, + "op": "PUSH2", + "gas": 2997515, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0x4db", + "0x0", + "0x84" + ] + }, + { + "pc": 1242, + "op": "JUMP", + "gas": 2997512, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0x4db", + "0x0", + "0x84", + "0x6a0" + ] + }, + { + "pc": 1696, + "op": "JUMPDEST", + "gas": 2997504, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0x4db", + "0x0", + "0x84" + ] + }, + { + "pc": 1697, + "op": "PUSH1", + "gas": 2997503, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0x4db", + "0x0", + "0x84" + ] + }, + { + "pc": 1699, + "op": "PUSH1", + "gas": 2997500, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0x4db", + "0x0", + "0x84", + "0x0" + ] + }, + { + "pc": 1701, + "op": "DUP3", + "gas": 2997497, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0x4db", + "0x0", + "0x84", + "0x0", + "0x20" + ] + }, + { + "pc": 1702, + "op": "ADD", + "gas": 2997494, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0x4db", + "0x0", + "0x84", + "0x0", + "0x20", + "0x84" + ] + }, + { + "pc": 1703, + "op": "SWAP1", + "gas": 2997491, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0x4db", + "0x0", + "0x84", + "0x0", + "0xa4" + ] + }, + { + "pc": 1704, + "op": "POP", + "gas": 2997488, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0x4db", + "0x0", + "0x84", + "0xa4", + "0x0" + ] + }, + { + "pc": 1705, + "op": "PUSH2", + "gas": 2997486, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0x4db", + "0x0", + "0x84", + "0xa4" + ] + }, + { + "pc": 1708, + "op": "PUSH1", + "gas": 2997483, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0x4db", + "0x0", + "0x84", + "0xa4", + "0x6b5" + ] + }, + { + "pc": 1710, + "op": "DUP4", + "gas": 2997480, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0x4db", + "0x0", + "0x84", + "0xa4", + "0x6b5", + "0x0" + ] + }, + { + "pc": 1711, + "op": "ADD", + "gas": 2997477, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0x4db", + "0x0", + "0x84", + "0xa4", + "0x6b5", + "0x0", + "0x84" + ] + }, + { + "pc": 1712, + "op": "DUP5", + "gas": 2997474, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0x4db", + "0x0", + "0x84", + "0xa4", + "0x6b5", + "0x84" + ] + }, + { + "pc": 1713, + "op": "PUSH2", + "gas": 2997471, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0x4db", + "0x0", + "0x84", + "0xa4", + "0x6b5", + "0x84", + "0x0" + ] + }, + { + "pc": 1716, + "op": "JUMP", + "gas": 2997468, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0x4db", + "0x0", + "0x84", + "0xa4", + "0x6b5", + "0x84", + "0x0", + "0x656" + ] + }, + { + "pc": 1622, + "op": "JUMPDEST", + "gas": 2997460, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0x4db", + "0x0", + "0x84", + "0xa4", + "0x6b5", + "0x84", + "0x0" + ] + }, + { + "pc": 1623, + "op": "PUSH2", + "gas": 2997459, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0x4db", + "0x0", + "0x84", + "0xa4", + "0x6b5", + "0x84", + "0x0" + ] + }, + { + "pc": 1626, + "op": "DUP2", + "gas": 2997456, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0x4db", + "0x0", + "0x84", + "0xa4", + "0x6b5", + "0x84", + "0x0", + "0x65f" + ] + }, + { + "pc": 1627, + "op": "PUSH2", + "gas": 2997453, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0x4db", + "0x0", + "0x84", + "0xa4", + "0x6b5", + "0x84", + "0x0", + "0x65f", + "0x0" + ] + }, + { + "pc": 1630, + "op": "JUMP", + "gas": 2997450, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0x4db", + "0x0", + "0x84", + "0xa4", + "0x6b5", + "0x84", + "0x0", + "0x65f", + "0x0", + "0x6fe" + ] + }, + { + "pc": 1790, + "op": "JUMPDEST", + "gas": 2997442, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0x4db", + "0x0", + "0x84", + "0xa4", + "0x6b5", + "0x84", + "0x0", + "0x65f", + "0x0" + ] + }, + { + "pc": 1791, + "op": "PUSH1", + "gas": 2997441, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0x4db", + "0x0", + "0x84", + "0xa4", + "0x6b5", + "0x84", + "0x0", + "0x65f", + "0x0" + ] + }, + { + "pc": 1793, + "op": "DUP2", + "gas": 2997438, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0x4db", + "0x0", + "0x84", + "0xa4", + "0x6b5", + "0x84", + "0x0", + "0x65f", + "0x0", + "0x0" + ] + }, + { + "pc": 1794, + "op": "SWAP1", + "gas": 2997435, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0x4db", + "0x0", + "0x84", + "0xa4", + "0x6b5", + "0x84", + "0x0", + "0x65f", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 1795, + "op": "POP", + "gas": 2997432, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0x4db", + "0x0", + "0x84", + "0xa4", + "0x6b5", + "0x84", + "0x0", + "0x65f", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 1796, + "op": "SWAP2", + "gas": 2997430, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0x4db", + "0x0", + "0x84", + "0xa4", + "0x6b5", + "0x84", + "0x0", + "0x65f", + "0x0", + "0x0" + ] + }, + { + "pc": 1797, + "op": "SWAP1", + "gas": 2997427, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0x4db", + "0x0", + "0x84", + "0xa4", + "0x6b5", + "0x84", + "0x0", + "0x0", + "0x0", + "0x65f" + ] + }, + { + "pc": 1798, + "op": "POP", + "gas": 2997424, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0x4db", + "0x0", + "0x84", + "0xa4", + "0x6b5", + "0x84", + "0x0", + "0x0", + "0x65f", + "0x0" + ] + }, + { + "pc": 1799, + "op": "JUMP", + "gas": 2997422, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0x4db", + "0x0", + "0x84", + "0xa4", + "0x6b5", + "0x84", + "0x0", + "0x0", + "0x65f" + ] + }, + { + "pc": 1631, + "op": "JUMPDEST", + "gas": 2997414, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0x4db", + "0x0", + "0x84", + "0xa4", + "0x6b5", + "0x84", + "0x0", + "0x0" + ] + }, + { + "pc": 1632, + "op": "DUP3", + "gas": 2997413, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0x4db", + "0x0", + "0x84", + "0xa4", + "0x6b5", + "0x84", + "0x0", + "0x0" + ] + }, + { + "pc": 1633, + "op": "MSTORE", + "gas": 2997410, + "gasCost": 6, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0x4db", + "0x0", + "0x84", + "0xa4", + "0x6b5", + "0x84", + "0x0", + "0x0", + "0x84" + ] + }, + { + "pc": 1634, + "op": "POP", + "gas": 2997404, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0x4db", + "0x0", + "0x84", + "0xa4", + "0x6b5", + "0x84", + "0x0" + ] + }, + { + "pc": 1635, + "op": "POP", + "gas": 2997402, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0x4db", + "0x0", + "0x84", + "0xa4", + "0x6b5", + "0x84" + ] + }, + { + "pc": 1636, + "op": "JUMP", + "gas": 2997400, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0x4db", + "0x0", + "0x84", + "0xa4", + "0x6b5" + ] + }, + { + "pc": 1717, + "op": "JUMPDEST", + "gas": 2997392, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0x4db", + "0x0", + "0x84", + "0xa4" + ] + }, + { + "pc": 1718, + "op": "SWAP3", + "gas": 2997391, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0x4db", + "0x0", + "0x84", + "0xa4" + ] + }, + { + "pc": 1719, + "op": "SWAP2", + "gas": 2997388, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0xa4", + "0x0", + "0x84", + "0x4db" + ] + }, + { + "pc": 1720, + "op": "POP", + "gas": 2997385, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0xa4", + "0x4db", + "0x84", + "0x0" + ] + }, + { + "pc": 1721, + "op": "POP", + "gas": 2997383, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0xa4", + "0x4db", + "0x84" + ] + }, + { + "pc": 1722, + "op": "JUMP", + "gas": 2997381, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0xa4", + "0x4db" + ] + }, + { + "pc": 1243, + "op": "JUMPDEST", + "gas": 2997373, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0xa4" + ] + }, + { + "pc": 1244, + "op": "PUSH1", + "gas": 2997372, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0xa4" + ] + }, + { + "pc": 1246, + "op": "PUSH1", + "gas": 2997369, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0xa4", + "0x20" + ] + }, + { + "pc": 1248, + "op": "MLOAD", + "gas": 2997366, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0xa4", + "0x20", + "0x40" + ] + }, + { + "pc": 1249, + "op": "DUP1", + "gas": 2997363, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0xa4", + "0x20", + "0x80" + ] + }, + { + "pc": 1250, + "op": "DUP4", + "gas": 2997360, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0xa4", + "0x20", + "0x80", + "0x80" + ] + }, + { + "pc": 1251, + "op": "SUB", + "gas": 2997357, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0xa4", + "0x20", + "0x80", + "0x80", + "0xa4" + ] + }, + { + "pc": 1252, + "op": "DUP2", + "gas": 2997354, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0xa4", + "0x20", + "0x80", + "0x24" + ] + }, + { + "pc": 1253, + "op": "PUSH1", + "gas": 2997351, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0xa4", + "0x20", + "0x80", + "0x24", + "0x80" + ] + }, + { + "pc": 1255, + "op": "DUP8", + "gas": 2997348, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0xa4", + "0x20", + "0x80", + "0x24", + "0x80", + "0x0" + ] + }, + { + "pc": 1256, + "op": "DUP1", + "gas": 2997345, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0xa4", + "0x20", + "0x80", + "0x24", + "0x80", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a" + ] + }, + { + "pc": 1257, + "op": "EXTCODESIZE", + "gas": 2997342, + "gasCost": 2600, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0xa4", + "0x20", + "0x80", + "0x24", + "0x80", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a" + ], + "extraData": { + "codeList": [ + "0x608060405234801561001057600080fd5b50600436106100575760003560e01c806313ab33b11461005c57806320408cd91461008c578063314a09a8146100bc578063c5b0437c146100da578063ce0dbd67146100f6575b600080fd5b61007660048036038101906100719190610323565b610112565b604051610083919061036a565b60405180910390f35b6100a660048036038101906100a19190610323565b610155565b6040516100b3919061036a565b60405180910390f35b6100c4610197565b6040516100d1919061036a565b60405180910390f35b6100f460048036038101906100ef9190610323565b6101c0565b005b610110600480360381019061010b9190610323565b61023c565b005b600081604051610121906102f5565b61012b9190610385565b604051809103906000f0801561013e5760015b61014b5760009050610150565b809150505b919050565b6000808260405161016590610301565b61016f9190610385565b604051809103906000f08015801561018b573d6000803e3d6000fd5b50905080915050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000816040516101cf90610301565b6101d99190610385565b604051809103906000f0801580156101f5573d6000803e3d6000fd5b509050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b80604051610249906102f5565b6102539190610385565b604051809103906000f080156102665760015b6102b05760008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506102f2565b806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505b50565b60e2806103f483390190565b6103ab806104d683390190565b60008135905061031d816103dc565b92915050565b60006020828403121561033557600080fd5b60006103438482850161030e565b91505092915050565b610355816103a0565b82525050565b610364816103d2565b82525050565b600060208201905061037f600083018461034c565b92915050565b600060208201905061039a600083018461035b565b92915050565b60006103ab826103b2565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6103e5816103d2565b81146103f057600080fd5b5056fe6080604052348015600f57600080fd5b5060405160e238038060e28339818101604052810190602d91906052565b6000811415603a57600080fd5b506096565b600081519050604c816082565b92915050565b600060208284031215606357600080fd5b6000606f84828501603f565b91505092915050565b6000819050919050565b6089816078565b8114609357600080fd5b50565b603f8060a36000396000f3fe6080604052600080fdfea2646970667358221220d980928765b61eb01523442146dc4518e079360da1cc4a7f1ab97c88f137c27e64736f6c63430008040033608060405234801561001057600080fd5b506040516103ab3803806103ab83398181016040528101906100329190610054565b806000819055505061009e565b60008151905061004e81610087565b92915050565b60006020828403121561006657600080fd5b60006100748482850161003f565b91505092915050565b6000819050919050565b6100908161007d565b811461009b57600080fd5b50565b6102fe806100ad6000396000f3fe6080604052600436106100555760003560e01c806321848c461461005a5780632e64cec114610083578063b0f2b72a146100ae578063c4e96ec0146100d7578063e5223f88146100f3578063f34176731461010f575b600080fd5b34801561006657600080fd5b50610081600480360381019061007c91906101d7565b61013a565b005b34801561008f57600080fd5b5061009861014f565b6040516100a59190610252565b60405180910390f35b3480156100ba57600080fd5b506100d560048036038101906100d091906101d7565b610158565b005b6100f160048036038101906100ec91906101d7565b610162565b005b61010d600480360381019061010891906101d7565b6101a4565b005b34801561011b57600080fd5b506101246101ae565b6040516101319190610252565b60405180910390f35b80600081905550600061014c57600080fd5b50565b60008054905090565b8060008190555050565b806000819055506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161019b90610232565b60405180910390fd5b8060008190555050565b6000806101ba57600080fd5b600054905090565b6000813590506101d1816102b1565b92915050565b6000602082840312156101e957600080fd5b60006101f7848285016101c2565b91505092915050565b600061020d600c8361026d565b915061021882610288565b602082019050919050565b61022c8161027e565b82525050565b6000602082019050818103600083015261024b81610200565b9050919050565b60006020820190506102676000830184610223565b92915050565b600082825260208201905092915050565b6000819050919050565b7f64656c696265726174656c790000000000000000000000000000000000000000600082015250565b6102ba8161027e565b81146102c557600080fd5b5056fea26469706673582212206fa6988b66dece47dc22658a0058d7f113ce303b23abdbfb3e29ee300a66489464736f6c63430008040033a264697066735822122024e6552371fbd96476a2ebdebcd94517f44d186fe1b33f5e31629291591786e764736f6c63430008040033" + ] + } + }, + { + "pc": 1258, + "op": "ISZERO", + "gas": 2994742, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0xa4", + "0x20", + "0x80", + "0x24", + "0x80", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x8b6" + ] + }, + { + "pc": 1259, + "op": "DUP1", + "gas": 2994739, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0xa4", + "0x20", + "0x80", + "0x24", + "0x80", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x0" + ] + }, + { + "pc": 1260, + "op": "ISZERO", + "gas": 2994736, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0xa4", + "0x20", + "0x80", + "0x24", + "0x80", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x0", + "0x0" + ] + }, + { + "pc": 1261, + "op": "PUSH2", + "gas": 2994733, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0xa4", + "0x20", + "0x80", + "0x24", + "0x80", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x0", + "0x1" + ] + }, + { + "pc": 1264, + "op": "JUMPI", + "gas": 2994730, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0xa4", + "0x20", + "0x80", + "0x24", + "0x80", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x0", + "0x1", + "0x4f5" + ] + }, + { + "pc": 1269, + "op": "JUMPDEST", + "gas": 2994720, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0xa4", + "0x20", + "0x80", + "0x24", + "0x80", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x0" + ] + }, + { + "pc": 1270, + "op": "POP", + "gas": 2994719, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0xa4", + "0x20", + "0x80", + "0x24", + "0x80", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x0" + ] + }, + { + "pc": 1271, + "op": "GAS", + "gas": 2994717, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0xa4", + "0x20", + "0x80", + "0x24", + "0x80", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a" + ] + }, + { + "pc": 1272, + "op": "CALL", + "gas": 2994715, + "gasCost": 2947925, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0xa4", + "0x20", + "0x80", + "0x24", + "0x80", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x2db21b" + ], + "extraData": { + "codeList": [ + "0x608060405234801561001057600080fd5b50600436106100625760003560e01c8063200d2ed214610067578063295a8edc146100855780633719f511146100a15780633e23ee43146100bd5780635696ec35146100db5780635dec31ca146100f7575b600080fd5b61006f610113565b60405161007c9190610665565b60405180910390f35b61009f600480360381019061009a91906105fb565b61013d565b005b6100bb60048036038101906100b691906105fb565b610269565b005b6100c561035e565b6040516100d29190610665565b60405180910390f35b6100f560048036038101906100f091906105fb565b610387565b005b610111600480360381019061010c91906105fb565b61047c565b005b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff166320408cd9836040518263ffffffff1660e01b815260040161019c91906106a0565b602060405180830381600087803b1580156101b657600080fd5b505af11580156101ca573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906101ee91906105d2565b600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161026090610680565b60405180910390fd5b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff166313ab33b1836040518263ffffffff1660e01b81526004016102c891906106a0565b602060405180830381600087803b1580156102e257600080fd5b505af11580156102f6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061031a91906105d2565b600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff166320408cd9836040518263ffffffff1660e01b81526004016103e691906106a0565b602060405180830381600087803b15801561040057600080fd5b505af1158015610414573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061043891906105d2565b600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff166313ab33b1836040518263ffffffff1660e01b81526004016104db91906106a0565b602060405180830381600087803b1580156104f557600080fd5b505af1158015610509573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061052d91906105d2565b600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161059f90610680565b60405180910390fd5b6000815190506105b781610731565b92915050565b6000813590506105cc81610748565b92915050565b6000602082840312156105e457600080fd5b60006105f2848285016105a8565b91505092915050565b60006020828403121561060d57600080fd5b600061061b848285016105bd565b91505092915050565b61062d816106cc565b82525050565b6000610640600c836106bb565b915061064b82610708565b602082019050919050565b61065f816106fe565b82525050565b600060208201905061067a6000830184610624565b92915050565b6000602082019050818103600083015261069981610633565b9050919050565b60006020820190506106b56000830184610656565b92915050565b600082825260208201905092915050565b60006106d7826106de565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b7f64656c696265726174656c790000000000000000000000000000000000000000600082015250565b61073a816106cc565b811461074557600080fd5b50565b610751816106fe565b811461075c57600080fd5b5056fea26469706673582212206d22486e2deddb5e91f0979599a7e467825532693839695bd2c007645b06ee3f64736f6c63430008040033", + "0x608060405234801561001057600080fd5b50600436106100575760003560e01c806313ab33b11461005c57806320408cd91461008c578063314a09a8146100bc578063c5b0437c146100da578063ce0dbd67146100f6575b600080fd5b61007660048036038101906100719190610323565b610112565b604051610083919061036a565b60405180910390f35b6100a660048036038101906100a19190610323565b610155565b6040516100b3919061036a565b60405180910390f35b6100c4610197565b6040516100d1919061036a565b60405180910390f35b6100f460048036038101906100ef9190610323565b6101c0565b005b610110600480360381019061010b9190610323565b61023c565b005b600081604051610121906102f5565b61012b9190610385565b604051809103906000f0801561013e5760015b61014b5760009050610150565b809150505b919050565b6000808260405161016590610301565b61016f9190610385565b604051809103906000f08015801561018b573d6000803e3d6000fd5b50905080915050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000816040516101cf90610301565b6101d99190610385565b604051809103906000f0801580156101f5573d6000803e3d6000fd5b509050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b80604051610249906102f5565b6102539190610385565b604051809103906000f080156102665760015b6102b05760008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506102f2565b806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505b50565b60e2806103f483390190565b6103ab806104d683390190565b60008135905061031d816103dc565b92915050565b60006020828403121561033557600080fd5b60006103438482850161030e565b91505092915050565b610355816103a0565b82525050565b610364816103d2565b82525050565b600060208201905061037f600083018461034c565b92915050565b600060208201905061039a600083018461035b565b92915050565b60006103ab826103b2565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6103e5816103d2565b81146103f057600080fd5b5056fe6080604052348015600f57600080fd5b5060405160e238038060e28339818101604052810190602d91906052565b6000811415603a57600080fd5b506096565b600081519050604c816082565b92915050565b600060208284031215606357600080fd5b6000606f84828501603f565b91505092915050565b6000819050919050565b6089816078565b8114609357600080fd5b50565b603f8060a36000396000f3fe6080604052600080fdfea2646970667358221220d980928765b61eb01523442146dc4518e079360da1cc4a7f1ab97c88f137c27e64736f6c63430008040033608060405234801561001057600080fd5b506040516103ab3803806103ab83398181016040528101906100329190610054565b806000819055505061009e565b60008151905061004e81610087565b92915050565b60006020828403121561006657600080fd5b60006100748482850161003f565b91505092915050565b6000819050919050565b6100908161007d565b811461009b57600080fd5b50565b6102fe806100ad6000396000f3fe6080604052600436106100555760003560e01c806321848c461461005a5780632e64cec114610083578063b0f2b72a146100ae578063c4e96ec0146100d7578063e5223f88146100f3578063f34176731461010f575b600080fd5b34801561006657600080fd5b50610081600480360381019061007c91906101d7565b61013a565b005b34801561008f57600080fd5b5061009861014f565b6040516100a59190610252565b60405180910390f35b3480156100ba57600080fd5b506100d560048036038101906100d091906101d7565b610158565b005b6100f160048036038101906100ec91906101d7565b610162565b005b61010d600480360381019061010891906101d7565b6101a4565b005b34801561011b57600080fd5b506101246101ae565b6040516101319190610252565b60405180910390f35b80600081905550600061014c57600080fd5b50565b60008054905090565b8060008190555050565b806000819055506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161019b90610232565b60405180910390fd5b8060008190555050565b6000806101ba57600080fd5b600054905090565b6000813590506101d1816102b1565b92915050565b6000602082840312156101e957600080fd5b60006101f7848285016101c2565b91505092915050565b600061020d600c8361026d565b915061021882610288565b602082019050919050565b61022c8161027e565b82525050565b6000602082019050818103600083015261024b81610200565b9050919050565b60006020820190506102676000830184610223565b92915050565b600082825260208201905092915050565b6000819050919050565b7f64656c696265726174656c790000000000000000000000000000000000000000600082015250565b6102ba8161027e565b81146102c557600080fd5b5056fea26469706673582212206fa6988b66dece47dc22658a0058d7f113ce303b23abdbfb3e29ee300a66489464736f6c63430008040033a264697066735822122024e6552371fbd96476a2ebdebcd94517f44d186fe1b33f5e31629291591786e764736f6c63430008040033" + ], + "proofList": [ + { + "address": "0xda1ad647621a1984ce21b0bab020005fe3b5f4da", + "nonce": 1, + "balance": "0x0", + "codeHash": "0x00c2455a35210099bbbb95bdd1b6a9bfc4702d98ba0f971009391cd8f970e729" + }, + { + "address": "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "nonce": 14, + "balance": "0x0", + "codeHash": "0x0197f7ef0aab588fbcc511af4e7d236206b90e8fbe1adfc7afe76c181cc4e9f0" + }, + { + "address": "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "nonce": 14, + "balance": "0x0", + "codeHash": "0x0197f7ef0aab588fbcc511af4e7d236206b90e8fbe1adfc7afe76c181cc4e9f0" + } + ], + "caller": [ + { + "address": "0xda1ad647621a1984ce21b0bab020005fe3b5f4da", + "nonce": 1, + "balance": "0x0", + "codeHash": "0x00c2455a35210099bbbb95bdd1b6a9bfc4702d98ba0f971009391cd8f970e729" + }, + { + "address": "0xda1ad647621a1984ce21b0bab020005fe3b5f4da", + "nonce": 1, + "balance": "0x0", + "codeHash": "0x00c2455a35210099bbbb95bdd1b6a9bfc4702d98ba0f971009391cd8f970e729" + } + ] + } + }, + { + "pc": 0, + "op": "PUSH1", + "gas": 2947825, + "gasCost": 3, + "depth": 2 + }, + { + "pc": 2, + "op": "PUSH1", + "gas": 2947822, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x80" + ] + }, + { + "pc": 4, + "op": "MSTORE", + "gas": 2947819, + "gasCost": 12, + "depth": 2, + "stack": [ + "0x80", + "0x40" + ] + }, + { + "pc": 5, + "op": "CALLVALUE", + "gas": 2947807, + "gasCost": 2, + "depth": 2 + }, + { + "pc": 6, + "op": "DUP1", + "gas": 2947805, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x0" + ] + }, + { + "pc": 7, + "op": "ISZERO", + "gas": 2947802, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x0", + "0x0" + ] + }, + { + "pc": 8, + "op": "PUSH2", + "gas": 2947799, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x0", + "0x1" + ] + }, + { + "pc": 11, + "op": "JUMPI", + "gas": 2947796, + "gasCost": 10, + "depth": 2, + "stack": [ + "0x0", + "0x1", + "0x10" + ] + }, + { + "pc": 16, + "op": "JUMPDEST", + "gas": 2947786, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x0" + ] + }, + { + "pc": 17, + "op": "POP", + "gas": 2947785, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x0" + ] + }, + { + "pc": 18, + "op": "PUSH1", + "gas": 2947783, + "gasCost": 3, + "depth": 2 + }, + { + "pc": 20, + "op": "CALLDATASIZE", + "gas": 2947780, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x4" + ] + }, + { + "pc": 21, + "op": "LT", + "gas": 2947778, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x4", + "0x24" + ] + }, + { + "pc": 22, + "op": "PUSH2", + "gas": 2947775, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x0" + ] + }, + { + "pc": 25, + "op": "JUMPI", + "gas": 2947772, + "gasCost": 10, + "depth": 2, + "stack": [ + "0x0", + "0x57" + ] + }, + { + "pc": 26, + "op": "PUSH1", + "gas": 2947762, + "gasCost": 3, + "depth": 2 + }, + { + "pc": 28, + "op": "CALLDATALOAD", + "gas": 2947759, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x0" + ] + }, + { + "pc": 29, + "op": "PUSH1", + "gas": 2947756, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b100000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 31, + "op": "SHR", + "gas": 2947753, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b100000000000000000000000000000000000000000000000000000000", + "0xe0" + ] + }, + { + "pc": 32, + "op": "DUP1", + "gas": 2947750, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1" + ] + }, + { + "pc": 33, + "op": "PUSH4", + "gas": 2947747, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x13ab33b1" + ] + }, + { + "pc": 38, + "op": "EQ", + "gas": 2947744, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x13ab33b1", + "0x13ab33b1" + ] + }, + { + "pc": 39, + "op": "PUSH2", + "gas": 2947741, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x1" + ] + }, + { + "pc": 42, + "op": "JUMPI", + "gas": 2947738, + "gasCost": 10, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x1", + "0x5c" + ] + }, + { + "pc": 92, + "op": "JUMPDEST", + "gas": 2947728, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x13ab33b1" + ] + }, + { + "pc": 93, + "op": "PUSH2", + "gas": 2947727, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1" + ] + }, + { + "pc": 96, + "op": "PUSH1", + "gas": 2947724, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76" + ] + }, + { + "pc": 98, + "op": "DUP1", + "gas": 2947721, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x4" + ] + }, + { + "pc": 99, + "op": "CALLDATASIZE", + "gas": 2947718, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x4", + "0x4" + ] + }, + { + "pc": 100, + "op": "SUB", + "gas": 2947716, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x4", + "0x4", + "0x24" + ] + }, + { + "pc": 101, + "op": "DUP2", + "gas": 2947713, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x4", + "0x20" + ] + }, + { + "pc": 102, + "op": "ADD", + "gas": 2947710, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x4", + "0x20", + "0x4" + ] + }, + { + "pc": 103, + "op": "SWAP1", + "gas": 2947707, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x4", + "0x24" + ] + }, + { + "pc": 104, + "op": "PUSH2", + "gas": 2947704, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x24", + "0x4" + ] + }, + { + "pc": 107, + "op": "SWAP2", + "gas": 2947701, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x24", + "0x4", + "0x71" + ] + }, + { + "pc": 108, + "op": "SWAP1", + "gas": 2947698, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x71", + "0x4", + "0x24" + ] + }, + { + "pc": 109, + "op": "PUSH2", + "gas": 2947695, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x71", + "0x24", + "0x4" + ] + }, + { + "pc": 112, + "op": "JUMP", + "gas": 2947692, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x71", + "0x24", + "0x4", + "0x323" + ] + }, + { + "pc": 803, + "op": "JUMPDEST", + "gas": 2947684, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x71", + "0x24", + "0x4" + ] + }, + { + "pc": 804, + "op": "PUSH1", + "gas": 2947683, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x71", + "0x24", + "0x4" + ] + }, + { + "pc": 806, + "op": "PUSH1", + "gas": 2947680, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x71", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 808, + "op": "DUP3", + "gas": 2947677, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x71", + "0x24", + "0x4", + "0x0", + "0x20" + ] + }, + { + "pc": 809, + "op": "DUP5", + "gas": 2947674, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x71", + "0x24", + "0x4", + "0x0", + "0x20", + "0x4" + ] + }, + { + "pc": 810, + "op": "SUB", + "gas": 2947671, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x71", + "0x24", + "0x4", + "0x0", + "0x20", + "0x4", + "0x24" + ] + }, + { + "pc": 811, + "op": "SLT", + "gas": 2947668, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x71", + "0x24", + "0x4", + "0x0", + "0x20", + "0x20" + ] + }, + { + "pc": 812, + "op": "ISZERO", + "gas": 2947665, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x71", + "0x24", + "0x4", + "0x0", + "0x0" + ] + }, + { + "pc": 813, + "op": "PUSH2", + "gas": 2947662, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x71", + "0x24", + "0x4", + "0x0", + "0x1" + ] + }, + { + "pc": 816, + "op": "JUMPI", + "gas": 2947659, + "gasCost": 10, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x71", + "0x24", + "0x4", + "0x0", + "0x1", + "0x335" + ] + }, + { + "pc": 821, + "op": "JUMPDEST", + "gas": 2947649, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x71", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 822, + "op": "PUSH1", + "gas": 2947648, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x71", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 824, + "op": "PUSH2", + "gas": 2947645, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x71", + "0x24", + "0x4", + "0x0", + "0x0" + ] + }, + { + "pc": 827, + "op": "DUP5", + "gas": 2947642, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x71", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343" + ] + }, + { + "pc": 828, + "op": "DUP3", + "gas": 2947639, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x71", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24" + ] + }, + { + "pc": 829, + "op": "DUP6", + "gas": 2947636, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x71", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x0" + ] + }, + { + "pc": 830, + "op": "ADD", + "gas": 2947633, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x71", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x0", + "0x4" + ] + }, + { + "pc": 831, + "op": "PUSH2", + "gas": 2947630, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x71", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4" + ] + }, + { + "pc": 834, + "op": "JUMP", + "gas": 2947627, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x71", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x30e" + ] + }, + { + "pc": 782, + "op": "JUMPDEST", + "gas": 2947619, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x71", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4" + ] + }, + { + "pc": 783, + "op": "PUSH1", + "gas": 2947618, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x71", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4" + ] + }, + { + "pc": 785, + "op": "DUP2", + "gas": 2947615, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x71", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 786, + "op": "CALLDATALOAD", + "gas": 2947612, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x71", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x0", + "0x4" + ] + }, + { + "pc": 787, + "op": "SWAP1", + "gas": 2947609, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x71", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x0", + "0x0" + ] + }, + { + "pc": 788, + "op": "POP", + "gas": 2947606, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x71", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x0", + "0x0" + ] + }, + { + "pc": 789, + "op": "PUSH2", + "gas": 2947604, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x71", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 792, + "op": "DUP2", + "gas": 2947601, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x71", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x0", + "0x31d" + ] + }, + { + "pc": 793, + "op": "PUSH2", + "gas": 2947598, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x71", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x0", + "0x31d", + "0x0" + ] + }, + { + "pc": 796, + "op": "JUMP", + "gas": 2947595, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x71", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x0", + "0x31d", + "0x0", + "0x3dc" + ] + }, + { + "pc": 988, + "op": "JUMPDEST", + "gas": 2947587, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x71", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x0", + "0x31d", + "0x0" + ] + }, + { + "pc": 989, + "op": "PUSH2", + "gas": 2947586, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x71", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x0", + "0x31d", + "0x0" + ] + }, + { + "pc": 992, + "op": "DUP2", + "gas": 2947583, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x71", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x0", + "0x31d", + "0x0", + "0x3e5" + ] + }, + { + "pc": 993, + "op": "PUSH2", + "gas": 2947580, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x71", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x0", + "0x31d", + "0x0", + "0x3e5", + "0x0" + ] + }, + { + "pc": 996, + "op": "JUMP", + "gas": 2947577, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x71", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x0", + "0x31d", + "0x0", + "0x3e5", + "0x0", + "0x3d2" + ] + }, + { + "pc": 978, + "op": "JUMPDEST", + "gas": 2947569, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x71", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x0", + "0x31d", + "0x0", + "0x3e5", + "0x0" + ] + }, + { + "pc": 979, + "op": "PUSH1", + "gas": 2947568, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x71", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x0", + "0x31d", + "0x0", + "0x3e5", + "0x0" + ] + }, + { + "pc": 981, + "op": "DUP2", + "gas": 2947565, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x71", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x0", + "0x31d", + "0x0", + "0x3e5", + "0x0", + "0x0" + ] + }, + { + "pc": 982, + "op": "SWAP1", + "gas": 2947562, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x71", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x0", + "0x31d", + "0x0", + "0x3e5", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 983, + "op": "POP", + "gas": 2947559, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x71", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x0", + "0x31d", + "0x0", + "0x3e5", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 984, + "op": "SWAP2", + "gas": 2947557, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x71", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x0", + "0x31d", + "0x0", + "0x3e5", + "0x0", + "0x0" + ] + }, + { + "pc": 985, + "op": "SWAP1", + "gas": 2947554, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x71", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x0", + "0x31d", + "0x0", + "0x0", + "0x0", + "0x3e5" + ] + }, + { + "pc": 986, + "op": "POP", + "gas": 2947551, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x71", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x0", + "0x31d", + "0x0", + "0x0", + "0x3e5", + "0x0" + ] + }, + { + "pc": 987, + "op": "JUMP", + "gas": 2947549, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x71", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x0", + "0x31d", + "0x0", + "0x0", + "0x3e5" + ] + }, + { + "pc": 997, + "op": "JUMPDEST", + "gas": 2947541, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x71", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x0", + "0x31d", + "0x0", + "0x0" + ] + }, + { + "pc": 998, + "op": "DUP2", + "gas": 2947540, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x71", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x0", + "0x31d", + "0x0", + "0x0" + ] + }, + { + "pc": 999, + "op": "EQ", + "gas": 2947537, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x71", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x0", + "0x31d", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 1000, + "op": "PUSH2", + "gas": 2947534, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x71", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x0", + "0x31d", + "0x0", + "0x1" + ] + }, + { + "pc": 1003, + "op": "JUMPI", + "gas": 2947531, + "gasCost": 10, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x71", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x0", + "0x31d", + "0x0", + "0x1", + "0x3f0" + ] + }, + { + "pc": 1008, + "op": "JUMPDEST", + "gas": 2947521, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x71", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x0", + "0x31d", + "0x0" + ] + }, + { + "pc": 1009, + "op": "POP", + "gas": 2947520, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x71", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x0", + "0x31d", + "0x0" + ] + }, + { + "pc": 1010, + "op": "JUMP", + "gas": 2947518, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x71", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x0", + "0x31d" + ] + }, + { + "pc": 797, + "op": "JUMPDEST", + "gas": 2947510, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x71", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 798, + "op": "SWAP3", + "gas": 2947509, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x71", + "0x24", + "0x4", + "0x0", + "0x0", + "0x343", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 799, + "op": "SWAP2", + "gas": 2947506, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x71", + "0x24", + "0x4", + "0x0", + "0x0", + "0x0", + "0x24", + "0x4", + "0x343" + ] + }, + { + "pc": 800, + "op": "POP", + "gas": 2947503, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x71", + "0x24", + "0x4", + "0x0", + "0x0", + "0x0", + "0x343", + "0x4", + "0x24" + ] + }, + { + "pc": 801, + "op": "POP", + "gas": 2947501, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x71", + "0x24", + "0x4", + "0x0", + "0x0", + "0x0", + "0x343", + "0x4" + ] + }, + { + "pc": 802, + "op": "JUMP", + "gas": 2947499, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x71", + "0x24", + "0x4", + "0x0", + "0x0", + "0x0", + "0x343" + ] + }, + { + "pc": 835, + "op": "JUMPDEST", + "gas": 2947491, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x71", + "0x24", + "0x4", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 836, + "op": "SWAP2", + "gas": 2947490, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x71", + "0x24", + "0x4", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 837, + "op": "POP", + "gas": 2947487, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x71", + "0x24", + "0x4", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 838, + "op": "POP", + "gas": 2947485, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x71", + "0x24", + "0x4", + "0x0", + "0x0" + ] + }, + { + "pc": 839, + "op": "SWAP3", + "gas": 2947483, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x71", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 840, + "op": "SWAP2", + "gas": 2947480, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x24", + "0x4", + "0x71" + ] + }, + { + "pc": 841, + "op": "POP", + "gas": 2947477, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x71", + "0x4", + "0x24" + ] + }, + { + "pc": 842, + "op": "POP", + "gas": 2947475, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x71", + "0x4" + ] + }, + { + "pc": 843, + "op": "JUMP", + "gas": 2947473, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x71" + ] + }, + { + "pc": 113, + "op": "JUMPDEST", + "gas": 2947465, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0" + ] + }, + { + "pc": 114, + "op": "PUSH2", + "gas": 2947464, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0" + ] + }, + { + "pc": 117, + "op": "JUMP", + "gas": 2947461, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x112" + ] + }, + { + "pc": 274, + "op": "JUMPDEST", + "gas": 2947453, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0" + ] + }, + { + "pc": 275, + "op": "PUSH1", + "gas": 2947452, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0" + ] + }, + { + "pc": 277, + "op": "DUP2", + "gas": 2947449, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0" + ] + }, + { + "pc": 278, + "op": "PUSH1", + "gas": 2947446, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 280, + "op": "MLOAD", + "gas": 2947443, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x0", + "0x40" + ] + }, + { + "pc": 281, + "op": "PUSH2", + "gas": 2947440, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x0", + "0x80" + ] + }, + { + "pc": 284, + "op": "SWAP1", + "gas": 2947437, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x0", + "0x80", + "0x121" + ] + }, + { + "pc": 285, + "op": "PUSH2", + "gas": 2947434, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x0", + "0x121", + "0x80" + ] + }, + { + "pc": 288, + "op": "JUMP", + "gas": 2947431, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x0", + "0x121", + "0x80", + "0x2f5" + ] + }, + { + "pc": 757, + "op": "JUMPDEST", + "gas": 2947423, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x0", + "0x121", + "0x80" + ] + }, + { + "pc": 758, + "op": "PUSH1", + "gas": 2947422, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x0", + "0x121", + "0x80" + ] + }, + { + "pc": 760, + "op": "DUP1", + "gas": 2947419, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x0", + "0x121", + "0x80", + "0xe2" + ] + }, + { + "pc": 761, + "op": "PUSH2", + "gas": 2947416, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x0", + "0x121", + "0x80", + "0xe2", + "0xe2" + ] + }, + { + "pc": 764, + "op": "DUP4", + "gas": 2947413, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x0", + "0x121", + "0x80", + "0xe2", + "0xe2", + "0x3f4" + ] + }, + { + "pc": 765, + "op": "CODECOPY", + "gas": 2947410, + "gasCost": 54, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x0", + "0x121", + "0x80", + "0xe2", + "0xe2", + "0x3f4", + "0x80" + ], + "extraData": { + "codeList": [ + "0x608060405234801561001057600080fd5b50600436106100575760003560e01c806313ab33b11461005c57806320408cd91461008c578063314a09a8146100bc578063c5b0437c146100da578063ce0dbd67146100f6575b600080fd5b61007660048036038101906100719190610323565b610112565b604051610083919061036a565b60405180910390f35b6100a660048036038101906100a19190610323565b610155565b6040516100b3919061036a565b60405180910390f35b6100c4610197565b6040516100d1919061036a565b60405180910390f35b6100f460048036038101906100ef9190610323565b6101c0565b005b610110600480360381019061010b9190610323565b61023c565b005b600081604051610121906102f5565b61012b9190610385565b604051809103906000f0801561013e5760015b61014b5760009050610150565b809150505b919050565b6000808260405161016590610301565b61016f9190610385565b604051809103906000f08015801561018b573d6000803e3d6000fd5b50905080915050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000816040516101cf90610301565b6101d99190610385565b604051809103906000f0801580156101f5573d6000803e3d6000fd5b509050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b80604051610249906102f5565b6102539190610385565b604051809103906000f080156102665760015b6102b05760008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506102f2565b806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505b50565b60e2806103f483390190565b6103ab806104d683390190565b60008135905061031d816103dc565b92915050565b60006020828403121561033557600080fd5b60006103438482850161030e565b91505092915050565b610355816103a0565b82525050565b610364816103d2565b82525050565b600060208201905061037f600083018461034c565b92915050565b600060208201905061039a600083018461035b565b92915050565b60006103ab826103b2565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6103e5816103d2565b81146103f057600080fd5b5056fe6080604052348015600f57600080fd5b5060405160e238038060e28339818101604052810190602d91906052565b6000811415603a57600080fd5b506096565b600081519050604c816082565b92915050565b600060208284031215606357600080fd5b6000606f84828501603f565b91505092915050565b6000819050919050565b6089816078565b8114609357600080fd5b50565b603f8060a36000396000f3fe6080604052600080fdfea2646970667358221220d980928765b61eb01523442146dc4518e079360da1cc4a7f1ab97c88f137c27e64736f6c63430008040033608060405234801561001057600080fd5b506040516103ab3803806103ab83398181016040528101906100329190610054565b806000819055505061009e565b60008151905061004e81610087565b92915050565b60006020828403121561006657600080fd5b60006100748482850161003f565b91505092915050565b6000819050919050565b6100908161007d565b811461009b57600080fd5b50565b6102fe806100ad6000396000f3fe6080604052600436106100555760003560e01c806321848c461461005a5780632e64cec114610083578063b0f2b72a146100ae578063c4e96ec0146100d7578063e5223f88146100f3578063f34176731461010f575b600080fd5b34801561006657600080fd5b50610081600480360381019061007c91906101d7565b61013a565b005b34801561008f57600080fd5b5061009861014f565b6040516100a59190610252565b60405180910390f35b3480156100ba57600080fd5b506100d560048036038101906100d091906101d7565b610158565b005b6100f160048036038101906100ec91906101d7565b610162565b005b61010d600480360381019061010891906101d7565b6101a4565b005b34801561011b57600080fd5b506101246101ae565b6040516101319190610252565b60405180910390f35b80600081905550600061014c57600080fd5b50565b60008054905090565b8060008190555050565b806000819055506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161019b90610232565b60405180910390fd5b8060008190555050565b6000806101ba57600080fd5b600054905090565b6000813590506101d1816102b1565b92915050565b6000602082840312156101e957600080fd5b60006101f7848285016101c2565b91505092915050565b600061020d600c8361026d565b915061021882610288565b602082019050919050565b61022c8161027e565b82525050565b6000602082019050818103600083015261024b81610200565b9050919050565b60006020820190506102676000830184610223565b92915050565b600082825260208201905092915050565b6000819050919050565b7f64656c696265726174656c790000000000000000000000000000000000000000600082015250565b6102ba8161027e565b81146102c557600080fd5b5056fea26469706673582212206fa6988b66dece47dc22658a0058d7f113ce303b23abdbfb3e29ee300a66489464736f6c63430008040033a264697066735822122024e6552371fbd96476a2ebdebcd94517f44d186fe1b33f5e31629291591786e764736f6c63430008040033" + ] + } + }, + { + "pc": 766, + "op": "ADD", + "gas": 2947356, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x0", + "0x121", + "0x80", + "0xe2" + ] + }, + { + "pc": 767, + "op": "SWAP1", + "gas": 2947353, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x0", + "0x121", + "0x162" + ] + }, + { + "pc": 768, + "op": "JUMP", + "gas": 2947350, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x0", + "0x162", + "0x121" + ] + }, + { + "pc": 289, + "op": "JUMPDEST", + "gas": 2947342, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x0", + "0x162" + ] + }, + { + "pc": 290, + "op": "PUSH2", + "gas": 2947341, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x0", + "0x162" + ] + }, + { + "pc": 293, + "op": "SWAP2", + "gas": 2947338, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x0", + "0x162", + "0x12b" + ] + }, + { + "pc": 294, + "op": "SWAP1", + "gas": 2947335, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x12b", + "0x162", + "0x0" + ] + }, + { + "pc": 295, + "op": "PUSH2", + "gas": 2947332, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x12b", + "0x0", + "0x162" + ] + }, + { + "pc": 298, + "op": "JUMP", + "gas": 2947329, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x12b", + "0x0", + "0x162", + "0x385" + ] + }, + { + "pc": 901, + "op": "JUMPDEST", + "gas": 2947321, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x12b", + "0x0", + "0x162" + ] + }, + { + "pc": 902, + "op": "PUSH1", + "gas": 2947320, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x12b", + "0x0", + "0x162" + ] + }, + { + "pc": 904, + "op": "PUSH1", + "gas": 2947317, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x12b", + "0x0", + "0x162", + "0x0" + ] + }, + { + "pc": 906, + "op": "DUP3", + "gas": 2947314, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x12b", + "0x0", + "0x162", + "0x0", + "0x20" + ] + }, + { + "pc": 907, + "op": "ADD", + "gas": 2947311, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x12b", + "0x0", + "0x162", + "0x0", + "0x20", + "0x162" + ] + }, + { + "pc": 908, + "op": "SWAP1", + "gas": 2947308, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x12b", + "0x0", + "0x162", + "0x0", + "0x182" + ] + }, + { + "pc": 909, + "op": "POP", + "gas": 2947305, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x12b", + "0x0", + "0x162", + "0x182", + "0x0" + ] + }, + { + "pc": 910, + "op": "PUSH2", + "gas": 2947303, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x12b", + "0x0", + "0x162", + "0x182" + ] + }, + { + "pc": 913, + "op": "PUSH1", + "gas": 2947300, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x12b", + "0x0", + "0x162", + "0x182", + "0x39a" + ] + }, + { + "pc": 915, + "op": "DUP4", + "gas": 2947297, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x12b", + "0x0", + "0x162", + "0x182", + "0x39a", + "0x0" + ] + }, + { + "pc": 916, + "op": "ADD", + "gas": 2947294, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x12b", + "0x0", + "0x162", + "0x182", + "0x39a", + "0x0", + "0x162" + ] + }, + { + "pc": 917, + "op": "DUP5", + "gas": 2947291, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x12b", + "0x0", + "0x162", + "0x182", + "0x39a", + "0x162" + ] + }, + { + "pc": 918, + "op": "PUSH2", + "gas": 2947288, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x12b", + "0x0", + "0x162", + "0x182", + "0x39a", + "0x162", + "0x0" + ] + }, + { + "pc": 921, + "op": "JUMP", + "gas": 2947285, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x12b", + "0x0", + "0x162", + "0x182", + "0x39a", + "0x162", + "0x0", + "0x35b" + ] + }, + { + "pc": 859, + "op": "JUMPDEST", + "gas": 2947277, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x12b", + "0x0", + "0x162", + "0x182", + "0x39a", + "0x162", + "0x0" + ] + }, + { + "pc": 860, + "op": "PUSH2", + "gas": 2947276, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x12b", + "0x0", + "0x162", + "0x182", + "0x39a", + "0x162", + "0x0" + ] + }, + { + "pc": 863, + "op": "DUP2", + "gas": 2947273, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x12b", + "0x0", + "0x162", + "0x182", + "0x39a", + "0x162", + "0x0", + "0x364" + ] + }, + { + "pc": 864, + "op": "PUSH2", + "gas": 2947270, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x12b", + "0x0", + "0x162", + "0x182", + "0x39a", + "0x162", + "0x0", + "0x364", + "0x0" + ] + }, + { + "pc": 867, + "op": "JUMP", + "gas": 2947267, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x12b", + "0x0", + "0x162", + "0x182", + "0x39a", + "0x162", + "0x0", + "0x364", + "0x0", + "0x3d2" + ] + }, + { + "pc": 978, + "op": "JUMPDEST", + "gas": 2947259, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x12b", + "0x0", + "0x162", + "0x182", + "0x39a", + "0x162", + "0x0", + "0x364", + "0x0" + ] + }, + { + "pc": 979, + "op": "PUSH1", + "gas": 2947258, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x12b", + "0x0", + "0x162", + "0x182", + "0x39a", + "0x162", + "0x0", + "0x364", + "0x0" + ] + }, + { + "pc": 981, + "op": "DUP2", + "gas": 2947255, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x12b", + "0x0", + "0x162", + "0x182", + "0x39a", + "0x162", + "0x0", + "0x364", + "0x0", + "0x0" + ] + }, + { + "pc": 982, + "op": "SWAP1", + "gas": 2947252, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x12b", + "0x0", + "0x162", + "0x182", + "0x39a", + "0x162", + "0x0", + "0x364", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 983, + "op": "POP", + "gas": 2947249, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x12b", + "0x0", + "0x162", + "0x182", + "0x39a", + "0x162", + "0x0", + "0x364", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 984, + "op": "SWAP2", + "gas": 2947247, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x12b", + "0x0", + "0x162", + "0x182", + "0x39a", + "0x162", + "0x0", + "0x364", + "0x0", + "0x0" + ] + }, + { + "pc": 985, + "op": "SWAP1", + "gas": 2947244, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x12b", + "0x0", + "0x162", + "0x182", + "0x39a", + "0x162", + "0x0", + "0x0", + "0x0", + "0x364" + ] + }, + { + "pc": 986, + "op": "POP", + "gas": 2947241, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x12b", + "0x0", + "0x162", + "0x182", + "0x39a", + "0x162", + "0x0", + "0x0", + "0x364", + "0x0" + ] + }, + { + "pc": 987, + "op": "JUMP", + "gas": 2947239, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x12b", + "0x0", + "0x162", + "0x182", + "0x39a", + "0x162", + "0x0", + "0x0", + "0x364" + ] + }, + { + "pc": 868, + "op": "JUMPDEST", + "gas": 2947231, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x12b", + "0x0", + "0x162", + "0x182", + "0x39a", + "0x162", + "0x0", + "0x0" + ] + }, + { + "pc": 869, + "op": "DUP3", + "gas": 2947230, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x12b", + "0x0", + "0x162", + "0x182", + "0x39a", + "0x162", + "0x0", + "0x0" + ] + }, + { + "pc": 870, + "op": "MSTORE", + "gas": 2947227, + "gasCost": 6, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x12b", + "0x0", + "0x162", + "0x182", + "0x39a", + "0x162", + "0x0", + "0x0", + "0x162" + ] + }, + { + "pc": 871, + "op": "POP", + "gas": 2947221, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x12b", + "0x0", + "0x162", + "0x182", + "0x39a", + "0x162", + "0x0" + ] + }, + { + "pc": 872, + "op": "POP", + "gas": 2947219, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x12b", + "0x0", + "0x162", + "0x182", + "0x39a", + "0x162" + ] + }, + { + "pc": 873, + "op": "JUMP", + "gas": 2947217, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x12b", + "0x0", + "0x162", + "0x182", + "0x39a" + ] + }, + { + "pc": 922, + "op": "JUMPDEST", + "gas": 2947209, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x12b", + "0x0", + "0x162", + "0x182" + ] + }, + { + "pc": 923, + "op": "SWAP3", + "gas": 2947208, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x12b", + "0x0", + "0x162", + "0x182" + ] + }, + { + "pc": 924, + "op": "SWAP2", + "gas": 2947205, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x182", + "0x0", + "0x162", + "0x12b" + ] + }, + { + "pc": 925, + "op": "POP", + "gas": 2947202, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x182", + "0x12b", + "0x162", + "0x0" + ] + }, + { + "pc": 926, + "op": "POP", + "gas": 2947200, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x182", + "0x12b", + "0x162" + ] + }, + { + "pc": 927, + "op": "JUMP", + "gas": 2947198, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x182", + "0x12b" + ] + }, + { + "pc": 299, + "op": "JUMPDEST", + "gas": 2947190, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x182" + ] + }, + { + "pc": 300, + "op": "PUSH1", + "gas": 2947189, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x182" + ] + }, + { + "pc": 302, + "op": "MLOAD", + "gas": 2947186, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x182", + "0x40" + ] + }, + { + "pc": 303, + "op": "DUP1", + "gas": 2947183, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x182", + "0x80" + ] + }, + { + "pc": 304, + "op": "SWAP2", + "gas": 2947180, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x182", + "0x80", + "0x80" + ] + }, + { + "pc": 305, + "op": "SUB", + "gas": 2947177, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x80", + "0x80", + "0x182" + ] + }, + { + "pc": 306, + "op": "SWAP1", + "gas": 2947174, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x80", + "0x102" + ] + }, + { + "pc": 307, + "op": "PUSH1", + "gas": 2947171, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x102", + "0x80" + ] + }, + { + "pc": 309, + "op": "CREATE", + "gas": 2947168, + "gasCost": 32000, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x102", + "0x80", + "0x0" + ], + "extraData": { + "callFailed": true, + "codeList": [ + "0x" + ], + "proofList": [ + { + "address": "0x7c8e871818ae2534b1de8beb169eece2179232b4", + "nonce": 1, + "balance": "0x0", + "codeHash": "0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470" + }, + { + "address": "0x7c8e871818ae2534b1de8beb169eece2179232b4", + "nonce": 0, + "balance": "0x0", + "codeHash": "0x0000000000000000000000000000000000000000000000000000000000000000" + } + ], + "caller": [ + { + "address": "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "nonce": 14, + "balance": "0x0", + "codeHash": "0x0197f7ef0aab588fbcc511af4e7d236206b90e8fbe1adfc7afe76c181cc4e9f0" + }, + { + "address": "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "nonce": 15, + "balance": "0x0", + "codeHash": "0x0197f7ef0aab588fbcc511af4e7d236206b90e8fbe1adfc7afe76c181cc4e9f0" + } + ] + } + }, + { + "pc": 0, + "op": "PUSH1", + "gas": 2869619, + "gasCost": 3, + "depth": 3 + }, + { + "pc": 2, + "op": "PUSH1", + "gas": 2869616, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x80" + ] + }, + { + "pc": 4, + "op": "MSTORE", + "gas": 2869613, + "gasCost": 12, + "depth": 3, + "stack": [ + "0x80", + "0x40" + ] + }, + { + "pc": 5, + "op": "CALLVALUE", + "gas": 2869601, + "gasCost": 2, + "depth": 3 + }, + { + "pc": 6, + "op": "DUP1", + "gas": 2869599, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x0" + ] + }, + { + "pc": 7, + "op": "ISZERO", + "gas": 2869596, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x0", + "0x0" + ] + }, + { + "pc": 8, + "op": "PUSH1", + "gas": 2869593, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x0", + "0x1" + ] + }, + { + "pc": 10, + "op": "JUMPI", + "gas": 2869590, + "gasCost": 10, + "depth": 3, + "stack": [ + "0x0", + "0x1", + "0xf" + ] + }, + { + "pc": 15, + "op": "JUMPDEST", + "gas": 2869580, + "gasCost": 1, + "depth": 3, + "stack": [ + "0x0" + ] + }, + { + "pc": 16, + "op": "POP", + "gas": 2869579, + "gasCost": 2, + "depth": 3, + "stack": [ + "0x0" + ] + }, + { + "pc": 17, + "op": "PUSH1", + "gas": 2869577, + "gasCost": 3, + "depth": 3 + }, + { + "pc": 19, + "op": "MLOAD", + "gas": 2869574, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x40" + ] + }, + { + "pc": 20, + "op": "PUSH1", + "gas": 2869571, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x80" + ] + }, + { + "pc": 22, + "op": "CODESIZE", + "gas": 2869568, + "gasCost": 2, + "depth": 3, + "stack": [ + "0x80", + "0xe2" + ], + "extraData": { + "codeList": [ + "0x" + ] + } + }, + { + "pc": 23, + "op": "SUB", + "gas": 2869566, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x80", + "0xe2", + "0x102" + ] + }, + { + "pc": 24, + "op": "DUP1", + "gas": 2869563, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x80", + "0x20" + ] + }, + { + "pc": 25, + "op": "PUSH1", + "gas": 2869560, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x80", + "0x20", + "0x20" + ] + }, + { + "pc": 27, + "op": "DUP4", + "gas": 2869557, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x80", + "0x20", + "0x20", + "0xe2" + ] + }, + { + "pc": 28, + "op": "CODECOPY", + "gas": 2869554, + "gasCost": 12, + "depth": 3, + "stack": [ + "0x80", + "0x20", + "0x20", + "0xe2", + "0x80" + ], + "extraData": { + "codeList": [ + "0x" + ] + } + }, + { + "pc": 29, + "op": "DUP2", + "gas": 2869542, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x80", + "0x20" + ] + }, + { + "pc": 30, + "op": "DUP2", + "gas": 2869539, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x80", + "0x20", + "0x80" + ] + }, + { + "pc": 31, + "op": "ADD", + "gas": 2869536, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x80", + "0x20", + "0x80", + "0x20" + ] + }, + { + "pc": 32, + "op": "PUSH1", + "gas": 2869533, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x80", + "0x20", + "0xa0" + ] + }, + { + "pc": 34, + "op": "MSTORE", + "gas": 2869530, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x80", + "0x20", + "0xa0", + "0x40" + ] + }, + { + "pc": 35, + "op": "DUP2", + "gas": 2869527, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x80", + "0x20" + ] + }, + { + "pc": 36, + "op": "ADD", + "gas": 2869524, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x80", + "0x20", + "0x80" + ] + }, + { + "pc": 37, + "op": "SWAP1", + "gas": 2869521, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x80", + "0xa0" + ] + }, + { + "pc": 38, + "op": "PUSH1", + "gas": 2869518, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xa0", + "0x80" + ] + }, + { + "pc": 40, + "op": "SWAP2", + "gas": 2869515, + "gasCost": 3, + "depth": 3, + "stack": [ + "0xa0", + "0x80", + "0x2d" + ] + }, + { + "pc": 41, + "op": "SWAP1", + "gas": 2869512, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x2d", + "0x80", + "0xa0" + ] + }, + { + "pc": 42, + "op": "PUSH1", + "gas": 2869509, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x2d", + "0xa0", + "0x80" + ] + }, + { + "pc": 44, + "op": "JUMP", + "gas": 2869506, + "gasCost": 8, + "depth": 3, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x52" + ] + }, + { + "pc": 82, + "op": "JUMPDEST", + "gas": 2869498, + "gasCost": 1, + "depth": 3, + "stack": [ + "0x2d", + "0xa0", + "0x80" + ] + }, + { + "pc": 83, + "op": "PUSH1", + "gas": 2869497, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x2d", + "0xa0", + "0x80" + ] + }, + { + "pc": 85, + "op": "PUSH1", + "gas": 2869494, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0" + ] + }, + { + "pc": 87, + "op": "DUP3", + "gas": 2869491, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x20" + ] + }, + { + "pc": 88, + "op": "DUP5", + "gas": 2869488, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x20", + "0x80" + ] + }, + { + "pc": 89, + "op": "SUB", + "gas": 2869485, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x20", + "0x80", + "0xa0" + ] + }, + { + "pc": 90, + "op": "SLT", + "gas": 2869482, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x20", + "0x20" + ] + }, + { + "pc": 91, + "op": "ISZERO", + "gas": 2869479, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0" + ] + }, + { + "pc": 92, + "op": "PUSH1", + "gas": 2869476, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x1" + ] + }, + { + "pc": 94, + "op": "JUMPI", + "gas": 2869473, + "gasCost": 10, + "depth": 3, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x1", + "0x63" + ] + }, + { + "pc": 99, + "op": "JUMPDEST", + "gas": 2869463, + "gasCost": 1, + "depth": 3, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0" + ] + }, + { + "pc": 100, + "op": "PUSH1", + "gas": 2869462, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0" + ] + }, + { + "pc": 102, + "op": "PUSH1", + "gas": 2869459, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0" + ] + }, + { + "pc": 104, + "op": "DUP5", + "gas": 2869456, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f" + ] + }, + { + "pc": 105, + "op": "DUP3", + "gas": 2869453, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0" + ] + }, + { + "pc": 106, + "op": "DUP6", + "gas": 2869450, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x0" + ] + }, + { + "pc": 107, + "op": "ADD", + "gas": 2869447, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x0", + "0x80" + ] + }, + { + "pc": 108, + "op": "PUSH1", + "gas": 2869444, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80" + ] + }, + { + "pc": 110, + "op": "JUMP", + "gas": 2869441, + "gasCost": 8, + "depth": 3, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x3f" + ] + }, + { + "pc": 63, + "op": "JUMPDEST", + "gas": 2869433, + "gasCost": 1, + "depth": 3, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80" + ] + }, + { + "pc": 64, + "op": "PUSH1", + "gas": 2869432, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80" + ] + }, + { + "pc": 66, + "op": "DUP2", + "gas": 2869429, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x0" + ] + }, + { + "pc": 67, + "op": "MLOAD", + "gas": 2869426, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x0", + "0x80" + ] + }, + { + "pc": 68, + "op": "SWAP1", + "gas": 2869423, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x0", + "0x0" + ] + }, + { + "pc": 69, + "op": "POP", + "gas": 2869420, + "gasCost": 2, + "depth": 3, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x0", + "0x0" + ] + }, + { + "pc": 70, + "op": "PUSH1", + "gas": 2869418, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x0" + ] + }, + { + "pc": 72, + "op": "DUP2", + "gas": 2869415, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x0", + "0x4c" + ] + }, + { + "pc": 73, + "op": "PUSH1", + "gas": 2869412, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x0", + "0x4c", + "0x0" + ] + }, + { + "pc": 75, + "op": "JUMP", + "gas": 2869409, + "gasCost": 8, + "depth": 3, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x0", + "0x4c", + "0x0", + "0x82" + ] + }, + { + "pc": 130, + "op": "JUMPDEST", + "gas": 2869401, + "gasCost": 1, + "depth": 3, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x0", + "0x4c", + "0x0" + ] + }, + { + "pc": 131, + "op": "PUSH1", + "gas": 2869400, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x0", + "0x4c", + "0x0" + ] + }, + { + "pc": 133, + "op": "DUP2", + "gas": 2869397, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x0", + "0x4c", + "0x0", + "0x89" + ] + }, + { + "pc": 134, + "op": "PUSH1", + "gas": 2869394, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x0", + "0x4c", + "0x0", + "0x89", + "0x0" + ] + }, + { + "pc": 136, + "op": "JUMP", + "gas": 2869391, + "gasCost": 8, + "depth": 3, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x0", + "0x4c", + "0x0", + "0x89", + "0x0", + "0x78" + ] + }, + { + "pc": 120, + "op": "JUMPDEST", + "gas": 2869383, + "gasCost": 1, + "depth": 3, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x0", + "0x4c", + "0x0", + "0x89", + "0x0" + ] + }, + { + "pc": 121, + "op": "PUSH1", + "gas": 2869382, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x0", + "0x4c", + "0x0", + "0x89", + "0x0" + ] + }, + { + "pc": 123, + "op": "DUP2", + "gas": 2869379, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x0", + "0x4c", + "0x0", + "0x89", + "0x0", + "0x0" + ] + }, + { + "pc": 124, + "op": "SWAP1", + "gas": 2869376, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x0", + "0x4c", + "0x0", + "0x89", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 125, + "op": "POP", + "gas": 2869373, + "gasCost": 2, + "depth": 3, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x0", + "0x4c", + "0x0", + "0x89", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 126, + "op": "SWAP2", + "gas": 2869371, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x0", + "0x4c", + "0x0", + "0x89", + "0x0", + "0x0" + ] + }, + { + "pc": 127, + "op": "SWAP1", + "gas": 2869368, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x0", + "0x4c", + "0x0", + "0x0", + "0x0", + "0x89" + ] + }, + { + "pc": 128, + "op": "POP", + "gas": 2869365, + "gasCost": 2, + "depth": 3, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x0", + "0x4c", + "0x0", + "0x0", + "0x89", + "0x0" + ] + }, + { + "pc": 129, + "op": "JUMP", + "gas": 2869363, + "gasCost": 8, + "depth": 3, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x0", + "0x4c", + "0x0", + "0x0", + "0x89" + ] + }, + { + "pc": 137, + "op": "JUMPDEST", + "gas": 2869355, + "gasCost": 1, + "depth": 3, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x0", + "0x4c", + "0x0", + "0x0" + ] + }, + { + "pc": 138, + "op": "DUP2", + "gas": 2869354, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x0", + "0x4c", + "0x0", + "0x0" + ] + }, + { + "pc": 139, + "op": "EQ", + "gas": 2869351, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x0", + "0x4c", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 140, + "op": "PUSH1", + "gas": 2869348, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x0", + "0x4c", + "0x0", + "0x1" + ] + }, + { + "pc": 142, + "op": "JUMPI", + "gas": 2869345, + "gasCost": 10, + "depth": 3, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x0", + "0x4c", + "0x0", + "0x1", + "0x93" + ] + }, + { + "pc": 147, + "op": "JUMPDEST", + "gas": 2869335, + "gasCost": 1, + "depth": 3, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x0", + "0x4c", + "0x0" + ] + }, + { + "pc": 148, + "op": "POP", + "gas": 2869334, + "gasCost": 2, + "depth": 3, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x0", + "0x4c", + "0x0" + ] + }, + { + "pc": 149, + "op": "JUMP", + "gas": 2869332, + "gasCost": 8, + "depth": 3, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x0", + "0x4c" + ] + }, + { + "pc": 76, + "op": "JUMPDEST", + "gas": 2869324, + "gasCost": 1, + "depth": 3, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x0" + ] + }, + { + "pc": 77, + "op": "SWAP3", + "gas": 2869323, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x6f", + "0xa0", + "0x80", + "0x0" + ] + }, + { + "pc": 78, + "op": "SWAP2", + "gas": 2869320, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x80", + "0x6f" + ] + }, + { + "pc": 79, + "op": "POP", + "gas": 2869317, + "gasCost": 2, + "depth": 3, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x0", + "0x6f", + "0x80", + "0xa0" + ] + }, + { + "pc": 80, + "op": "POP", + "gas": 2869315, + "gasCost": 2, + "depth": 3, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x0", + "0x6f", + "0x80" + ] + }, + { + "pc": 81, + "op": "JUMP", + "gas": 2869313, + "gasCost": 8, + "depth": 3, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x0", + "0x6f" + ] + }, + { + "pc": 111, + "op": "JUMPDEST", + "gas": 2869305, + "gasCost": 1, + "depth": 3, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 112, + "op": "SWAP2", + "gas": 2869304, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 113, + "op": "POP", + "gas": 2869301, + "gasCost": 2, + "depth": 3, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 114, + "op": "POP", + "gas": 2869299, + "gasCost": 2, + "depth": 3, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0", + "0x0" + ] + }, + { + "pc": 115, + "op": "SWAP3", + "gas": 2869297, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x2d", + "0xa0", + "0x80", + "0x0" + ] + }, + { + "pc": 116, + "op": "SWAP2", + "gas": 2869294, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x0", + "0xa0", + "0x80", + "0x2d" + ] + }, + { + "pc": 117, + "op": "POP", + "gas": 2869291, + "gasCost": 2, + "depth": 3, + "stack": [ + "0x0", + "0x2d", + "0x80", + "0xa0" + ] + }, + { + "pc": 118, + "op": "POP", + "gas": 2869289, + "gasCost": 2, + "depth": 3, + "stack": [ + "0x0", + "0x2d", + "0x80" + ] + }, + { + "pc": 119, + "op": "JUMP", + "gas": 2869287, + "gasCost": 8, + "depth": 3, + "stack": [ + "0x0", + "0x2d" + ] + }, + { + "pc": 45, + "op": "JUMPDEST", + "gas": 2869279, + "gasCost": 1, + "depth": 3, + "stack": [ + "0x0" + ] + }, + { + "pc": 46, + "op": "PUSH1", + "gas": 2869278, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x0" + ] + }, + { + "pc": 48, + "op": "DUP2", + "gas": 2869275, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x0", + "0x0" + ] + }, + { + "pc": 49, + "op": "EQ", + "gas": 2869272, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 50, + "op": "ISZERO", + "gas": 2869269, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x0", + "0x1" + ] + }, + { + "pc": 51, + "op": "PUSH1", + "gas": 2869266, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x0", + "0x0" + ] + }, + { + "pc": 53, + "op": "JUMPI", + "gas": 2869263, + "gasCost": 10, + "depth": 3, + "stack": [ + "0x0", + "0x0", + "0x3a" + ] + }, + { + "pc": 54, + "op": "PUSH1", + "gas": 2869253, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x0" + ] + }, + { + "pc": 56, + "op": "DUP1", + "gas": 2869250, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x0", + "0x0" + ] + }, + { + "pc": 57, + "op": "REVERT", + "gas": 2869247, + "gasCost": 0, + "depth": 3, + "stack": [ + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 310, + "op": "DUP1", + "gas": 2914796, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 311, + "op": "ISZERO", + "gas": 2914793, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 312, + "op": "PUSH2", + "gas": 2914790, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x0", + "0x1" + ] + }, + { + "pc": 315, + "op": "JUMPI", + "gas": 2914787, + "gasCost": 10, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x0", + "0x1", + "0x13e" + ] + }, + { + "pc": 318, + "op": "JUMPDEST", + "gas": 2914777, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 319, + "op": "PUSH2", + "gas": 2914776, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 322, + "op": "JUMPI", + "gas": 2914773, + "gasCost": 10, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x0", + "0x14b" + ] + }, + { + "pc": 323, + "op": "PUSH1", + "gas": 2914763, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0" + ] + }, + { + "pc": 325, + "op": "SWAP1", + "gas": 2914760, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 326, + "op": "POP", + "gas": 2914757, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 327, + "op": "PUSH2", + "gas": 2914755, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0" + ] + }, + { + "pc": 330, + "op": "JUMP", + "gas": 2914752, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0", + "0x150" + ] + }, + { + "pc": 336, + "op": "JUMPDEST", + "gas": 2914744, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0" + ] + }, + { + "pc": 337, + "op": "SWAP2", + "gas": 2914743, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x76", + "0x0", + "0x0" + ] + }, + { + "pc": 338, + "op": "SWAP1", + "gas": 2914740, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x0", + "0x0", + "0x76" + ] + }, + { + "pc": 339, + "op": "POP", + "gas": 2914737, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x0", + "0x76", + "0x0" + ] + }, + { + "pc": 340, + "op": "JUMP", + "gas": 2914735, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x0", + "0x76" + ] + }, + { + "pc": 118, + "op": "JUMPDEST", + "gas": 2914727, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x0" + ] + }, + { + "pc": 119, + "op": "PUSH1", + "gas": 2914726, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x0" + ] + }, + { + "pc": 121, + "op": "MLOAD", + "gas": 2914723, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x0", + "0x40" + ] + }, + { + "pc": 122, + "op": "PUSH2", + "gas": 2914720, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x0", + "0x80" + ] + }, + { + "pc": 125, + "op": "SWAP2", + "gas": 2914717, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x0", + "0x80", + "0x83" + ] + }, + { + "pc": 126, + "op": "SWAP1", + "gas": 2914714, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x83", + "0x80", + "0x0" + ] + }, + { + "pc": 127, + "op": "PUSH2", + "gas": 2914711, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x83", + "0x0", + "0x80" + ] + }, + { + "pc": 130, + "op": "JUMP", + "gas": 2914708, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x83", + "0x0", + "0x80", + "0x36a" + ] + }, + { + "pc": 874, + "op": "JUMPDEST", + "gas": 2914700, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x83", + "0x0", + "0x80" + ] + }, + { + "pc": 875, + "op": "PUSH1", + "gas": 2914699, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x83", + "0x0", + "0x80" + ] + }, + { + "pc": 877, + "op": "PUSH1", + "gas": 2914696, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x83", + "0x0", + "0x80", + "0x0" + ] + }, + { + "pc": 879, + "op": "DUP3", + "gas": 2914693, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x83", + "0x0", + "0x80", + "0x0", + "0x20" + ] + }, + { + "pc": 880, + "op": "ADD", + "gas": 2914690, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x83", + "0x0", + "0x80", + "0x0", + "0x20", + "0x80" + ] + }, + { + "pc": 881, + "op": "SWAP1", + "gas": 2914687, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x83", + "0x0", + "0x80", + "0x0", + "0xa0" + ] + }, + { + "pc": 882, + "op": "POP", + "gas": 2914684, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x83", + "0x0", + "0x80", + "0xa0", + "0x0" + ] + }, + { + "pc": 883, + "op": "PUSH2", + "gas": 2914682, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x83", + "0x0", + "0x80", + "0xa0" + ] + }, + { + "pc": 886, + "op": "PUSH1", + "gas": 2914679, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x83", + "0x0", + "0x80", + "0xa0", + "0x37f" + ] + }, + { + "pc": 888, + "op": "DUP4", + "gas": 2914676, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x83", + "0x0", + "0x80", + "0xa0", + "0x37f", + "0x0" + ] + }, + { + "pc": 889, + "op": "ADD", + "gas": 2914673, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x83", + "0x0", + "0x80", + "0xa0", + "0x37f", + "0x0", + "0x80" + ] + }, + { + "pc": 890, + "op": "DUP5", + "gas": 2914670, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x83", + "0x0", + "0x80", + "0xa0", + "0x37f", + "0x80" + ] + }, + { + "pc": 891, + "op": "PUSH2", + "gas": 2914667, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x83", + "0x0", + "0x80", + "0xa0", + "0x37f", + "0x80", + "0x0" + ] + }, + { + "pc": 894, + "op": "JUMP", + "gas": 2914664, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x83", + "0x0", + "0x80", + "0xa0", + "0x37f", + "0x80", + "0x0", + "0x34c" + ] + }, + { + "pc": 844, + "op": "JUMPDEST", + "gas": 2914656, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x83", + "0x0", + "0x80", + "0xa0", + "0x37f", + "0x80", + "0x0" + ] + }, + { + "pc": 845, + "op": "PUSH2", + "gas": 2914655, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x83", + "0x0", + "0x80", + "0xa0", + "0x37f", + "0x80", + "0x0" + ] + }, + { + "pc": 848, + "op": "DUP2", + "gas": 2914652, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x83", + "0x0", + "0x80", + "0xa0", + "0x37f", + "0x80", + "0x0", + "0x355" + ] + }, + { + "pc": 849, + "op": "PUSH2", + "gas": 2914649, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x83", + "0x0", + "0x80", + "0xa0", + "0x37f", + "0x80", + "0x0", + "0x355", + "0x0" + ] + }, + { + "pc": 852, + "op": "JUMP", + "gas": 2914646, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x83", + "0x0", + "0x80", + "0xa0", + "0x37f", + "0x80", + "0x0", + "0x355", + "0x0", + "0x3a0" + ] + }, + { + "pc": 928, + "op": "JUMPDEST", + "gas": 2914638, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x83", + "0x0", + "0x80", + "0xa0", + "0x37f", + "0x80", + "0x0", + "0x355", + "0x0" + ] + }, + { + "pc": 929, + "op": "PUSH1", + "gas": 2914637, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x83", + "0x0", + "0x80", + "0xa0", + "0x37f", + "0x80", + "0x0", + "0x355", + "0x0" + ] + }, + { + "pc": 931, + "op": "PUSH2", + "gas": 2914634, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x83", + "0x0", + "0x80", + "0xa0", + "0x37f", + "0x80", + "0x0", + "0x355", + "0x0", + "0x0" + ] + }, + { + "pc": 934, + "op": "DUP3", + "gas": 2914631, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x83", + "0x0", + "0x80", + "0xa0", + "0x37f", + "0x80", + "0x0", + "0x355", + "0x0", + "0x0", + "0x3ab" + ] + }, + { + "pc": 935, + "op": "PUSH2", + "gas": 2914628, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x83", + "0x0", + "0x80", + "0xa0", + "0x37f", + "0x80", + "0x0", + "0x355", + "0x0", + "0x0", + "0x3ab", + "0x0" + ] + }, + { + "pc": 938, + "op": "JUMP", + "gas": 2914625, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x83", + "0x0", + "0x80", + "0xa0", + "0x37f", + "0x80", + "0x0", + "0x355", + "0x0", + "0x0", + "0x3ab", + "0x0", + "0x3b2" + ] + }, + { + "pc": 946, + "op": "JUMPDEST", + "gas": 2914617, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x83", + "0x0", + "0x80", + "0xa0", + "0x37f", + "0x80", + "0x0", + "0x355", + "0x0", + "0x0", + "0x3ab", + "0x0" + ] + }, + { + "pc": 947, + "op": "PUSH1", + "gas": 2914616, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x83", + "0x0", + "0x80", + "0xa0", + "0x37f", + "0x80", + "0x0", + "0x355", + "0x0", + "0x0", + "0x3ab", + "0x0" + ] + }, + { + "pc": 949, + "op": "PUSH20", + "gas": 2914613, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x83", + "0x0", + "0x80", + "0xa0", + "0x37f", + "0x80", + "0x0", + "0x355", + "0x0", + "0x0", + "0x3ab", + "0x0", + "0x0" + ] + }, + { + "pc": 970, + "op": "DUP3", + "gas": 2914610, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x83", + "0x0", + "0x80", + "0xa0", + "0x37f", + "0x80", + "0x0", + "0x355", + "0x0", + "0x0", + "0x3ab", + "0x0", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 971, + "op": "AND", + "gas": 2914607, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x83", + "0x0", + "0x80", + "0xa0", + "0x37f", + "0x80", + "0x0", + "0x355", + "0x0", + "0x0", + "0x3ab", + "0x0", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x0" + ] + }, + { + "pc": 972, + "op": "SWAP1", + "gas": 2914604, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x83", + "0x0", + "0x80", + "0xa0", + "0x37f", + "0x80", + "0x0", + "0x355", + "0x0", + "0x0", + "0x3ab", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 973, + "op": "POP", + "gas": 2914601, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x83", + "0x0", + "0x80", + "0xa0", + "0x37f", + "0x80", + "0x0", + "0x355", + "0x0", + "0x0", + "0x3ab", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 974, + "op": "SWAP2", + "gas": 2914599, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x83", + "0x0", + "0x80", + "0xa0", + "0x37f", + "0x80", + "0x0", + "0x355", + "0x0", + "0x0", + "0x3ab", + "0x0", + "0x0" + ] + }, + { + "pc": 975, + "op": "SWAP1", + "gas": 2914596, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x83", + "0x0", + "0x80", + "0xa0", + "0x37f", + "0x80", + "0x0", + "0x355", + "0x0", + "0x0", + "0x0", + "0x0", + "0x3ab" + ] + }, + { + "pc": 976, + "op": "POP", + "gas": 2914593, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x83", + "0x0", + "0x80", + "0xa0", + "0x37f", + "0x80", + "0x0", + "0x355", + "0x0", + "0x0", + "0x0", + "0x3ab", + "0x0" + ] + }, + { + "pc": 977, + "op": "JUMP", + "gas": 2914591, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x83", + "0x0", + "0x80", + "0xa0", + "0x37f", + "0x80", + "0x0", + "0x355", + "0x0", + "0x0", + "0x0", + "0x3ab" + ] + }, + { + "pc": 939, + "op": "JUMPDEST", + "gas": 2914583, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x83", + "0x0", + "0x80", + "0xa0", + "0x37f", + "0x80", + "0x0", + "0x355", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 940, + "op": "SWAP1", + "gas": 2914582, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x83", + "0x0", + "0x80", + "0xa0", + "0x37f", + "0x80", + "0x0", + "0x355", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 941, + "op": "POP", + "gas": 2914579, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x83", + "0x0", + "0x80", + "0xa0", + "0x37f", + "0x80", + "0x0", + "0x355", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 942, + "op": "SWAP2", + "gas": 2914577, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x83", + "0x0", + "0x80", + "0xa0", + "0x37f", + "0x80", + "0x0", + "0x355", + "0x0", + "0x0" + ] + }, + { + "pc": 943, + "op": "SWAP1", + "gas": 2914574, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x83", + "0x0", + "0x80", + "0xa0", + "0x37f", + "0x80", + "0x0", + "0x0", + "0x0", + "0x355" + ] + }, + { + "pc": 944, + "op": "POP", + "gas": 2914571, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x83", + "0x0", + "0x80", + "0xa0", + "0x37f", + "0x80", + "0x0", + "0x0", + "0x355", + "0x0" + ] + }, + { + "pc": 945, + "op": "JUMP", + "gas": 2914569, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x83", + "0x0", + "0x80", + "0xa0", + "0x37f", + "0x80", + "0x0", + "0x0", + "0x355" + ] + }, + { + "pc": 853, + "op": "JUMPDEST", + "gas": 2914561, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x83", + "0x0", + "0x80", + "0xa0", + "0x37f", + "0x80", + "0x0", + "0x0" + ] + }, + { + "pc": 854, + "op": "DUP3", + "gas": 2914560, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x83", + "0x0", + "0x80", + "0xa0", + "0x37f", + "0x80", + "0x0", + "0x0" + ] + }, + { + "pc": 855, + "op": "MSTORE", + "gas": 2914557, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x83", + "0x0", + "0x80", + "0xa0", + "0x37f", + "0x80", + "0x0", + "0x0", + "0x80" + ] + }, + { + "pc": 856, + "op": "POP", + "gas": 2914554, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x83", + "0x0", + "0x80", + "0xa0", + "0x37f", + "0x80", + "0x0" + ] + }, + { + "pc": 857, + "op": "POP", + "gas": 2914552, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x83", + "0x0", + "0x80", + "0xa0", + "0x37f", + "0x80" + ] + }, + { + "pc": 858, + "op": "JUMP", + "gas": 2914550, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x83", + "0x0", + "0x80", + "0xa0", + "0x37f" + ] + }, + { + "pc": 895, + "op": "JUMPDEST", + "gas": 2914542, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x83", + "0x0", + "0x80", + "0xa0" + ] + }, + { + "pc": 896, + "op": "SWAP3", + "gas": 2914541, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x83", + "0x0", + "0x80", + "0xa0" + ] + }, + { + "pc": 897, + "op": "SWAP2", + "gas": 2914538, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0xa0", + "0x0", + "0x80", + "0x83" + ] + }, + { + "pc": 898, + "op": "POP", + "gas": 2914535, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0xa0", + "0x83", + "0x80", + "0x0" + ] + }, + { + "pc": 899, + "op": "POP", + "gas": 2914533, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0xa0", + "0x83", + "0x80" + ] + }, + { + "pc": 900, + "op": "JUMP", + "gas": 2914531, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0xa0", + "0x83" + ] + }, + { + "pc": 131, + "op": "JUMPDEST", + "gas": 2914523, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0xa0" + ] + }, + { + "pc": 132, + "op": "PUSH1", + "gas": 2914522, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0xa0" + ] + }, + { + "pc": 134, + "op": "MLOAD", + "gas": 2914519, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0xa0", + "0x40" + ] + }, + { + "pc": 135, + "op": "DUP1", + "gas": 2914516, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0xa0", + "0x80" + ] + }, + { + "pc": 136, + "op": "SWAP2", + "gas": 2914513, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0xa0", + "0x80", + "0x80" + ] + }, + { + "pc": 137, + "op": "SUB", + "gas": 2914510, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x80", + "0x80", + "0xa0" + ] + }, + { + "pc": 138, + "op": "SWAP1", + "gas": 2914507, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x80", + "0x20" + ] + }, + { + "pc": 139, + "op": "RETURN", + "gas": 2914504, + "gasCost": 0, + "depth": 2, + "stack": [ + "0x13ab33b1", + "0x20", + "0x80" + ] + }, + { + "pc": 1273, + "op": "ISZERO", + "gas": 2961294, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0xa4", + "0x1" + ] + }, + { + "pc": 1274, + "op": "DUP1", + "gas": 2961291, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0xa4", + "0x0" + ] + }, + { + "pc": 1275, + "op": "ISZERO", + "gas": 2961288, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0xa4", + "0x0", + "0x0" + ] + }, + { + "pc": 1276, + "op": "PUSH2", + "gas": 2961285, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0xa4", + "0x0", + "0x1" + ] + }, + { + "pc": 1279, + "op": "JUMPI", + "gas": 2961282, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0xa4", + "0x0", + "0x1", + "0x509" + ] + }, + { + "pc": 1289, + "op": "JUMPDEST", + "gas": 2961272, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0xa4", + "0x0" + ] + }, + { + "pc": 1290, + "op": "POP", + "gas": 2961271, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0xa4", + "0x0" + ] + }, + { + "pc": 1291, + "op": "POP", + "gas": 2961269, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1", + "0xa4" + ] + }, + { + "pc": 1292, + "op": "POP", + "gas": 2961267, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x13ab33b1" + ] + }, + { + "pc": 1293, + "op": "POP", + "gas": 2961265, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a" + ] + }, + { + "pc": 1294, + "op": "PUSH1", + "gas": 2961263, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a" + ] + }, + { + "pc": 1296, + "op": "MLOAD", + "gas": 2961260, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x40" + ] + }, + { + "pc": 1297, + "op": "RETURNDATASIZE", + "gas": 2961257, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x80" + ] + }, + { + "pc": 1298, + "op": "PUSH1", + "gas": 2961255, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x80", + "0x20" + ] + }, + { + "pc": 1300, + "op": "NOT", + "gas": 2961252, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x80", + "0x20", + "0x1f" + ] + }, + { + "pc": 1301, + "op": "PUSH1", + "gas": 2961249, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x80", + "0x20", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0" + ] + }, + { + "pc": 1303, + "op": "DUP3", + "gas": 2961246, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x80", + "0x20", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", + "0x1f" + ] + }, + { + "pc": 1304, + "op": "ADD", + "gas": 2961243, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x80", + "0x20", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", + "0x1f", + "0x20" + ] + }, + { + "pc": 1305, + "op": "AND", + "gas": 2961240, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x80", + "0x20", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", + "0x3f" + ] + }, + { + "pc": 1306, + "op": "DUP3", + "gas": 2961237, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x80", + "0x20", + "0x20" + ] + }, + { + "pc": 1307, + "op": "ADD", + "gas": 2961234, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x80", + "0x20", + "0x20", + "0x80" + ] + }, + { + "pc": 1308, + "op": "DUP1", + "gas": 2961231, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x80", + "0x20", + "0xa0" + ] + }, + { + "pc": 1309, + "op": "PUSH1", + "gas": 2961228, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x80", + "0x20", + "0xa0", + "0xa0" + ] + }, + { + "pc": 1311, + "op": "MSTORE", + "gas": 2961225, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x80", + "0x20", + "0xa0", + "0xa0", + "0x40" + ] + }, + { + "pc": 1312, + "op": "POP", + "gas": 2961222, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x80", + "0x20", + "0xa0" + ] + }, + { + "pc": 1313, + "op": "DUP2", + "gas": 2961220, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x80", + "0x20" + ] + }, + { + "pc": 1314, + "op": "ADD", + "gas": 2961217, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x80", + "0x20", + "0x80" + ] + }, + { + "pc": 1315, + "op": "SWAP1", + "gas": 2961214, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x80", + "0xa0" + ] + }, + { + "pc": 1316, + "op": "PUSH2", + "gas": 2961211, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0xa0", + "0x80" + ] + }, + { + "pc": 1319, + "op": "SWAP2", + "gas": 2961208, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0xa0", + "0x80", + "0x52d" + ] + }, + { + "pc": 1320, + "op": "SWAP1", + "gas": 2961205, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x52d", + "0x80", + "0xa0" + ] + }, + { + "pc": 1321, + "op": "PUSH2", + "gas": 2961202, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x52d", + "0xa0", + "0x80" + ] + }, + { + "pc": 1324, + "op": "JUMP", + "gas": 2961199, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x52d", + "0xa0", + "0x80", + "0x5d2" + ] + }, + { + "pc": 1490, + "op": "JUMPDEST", + "gas": 2961191, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x52d", + "0xa0", + "0x80" + ] + }, + { + "pc": 1491, + "op": "PUSH1", + "gas": 2961190, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x52d", + "0xa0", + "0x80" + ] + }, + { + "pc": 1493, + "op": "PUSH1", + "gas": 2961187, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x52d", + "0xa0", + "0x80", + "0x0" + ] + }, + { + "pc": 1495, + "op": "DUP3", + "gas": 2961184, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x52d", + "0xa0", + "0x80", + "0x0", + "0x20" + ] + }, + { + "pc": 1496, + "op": "DUP5", + "gas": 2961181, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x52d", + "0xa0", + "0x80", + "0x0", + "0x20", + "0x80" + ] + }, + { + "pc": 1497, + "op": "SUB", + "gas": 2961178, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x52d", + "0xa0", + "0x80", + "0x0", + "0x20", + "0x80", + "0xa0" + ] + }, + { + "pc": 1498, + "op": "SLT", + "gas": 2961175, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x52d", + "0xa0", + "0x80", + "0x0", + "0x20", + "0x20" + ] + }, + { + "pc": 1499, + "op": "ISZERO", + "gas": 2961172, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x52d", + "0xa0", + "0x80", + "0x0", + "0x0" + ] + }, + { + "pc": 1500, + "op": "PUSH2", + "gas": 2961169, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x52d", + "0xa0", + "0x80", + "0x0", + "0x1" + ] + }, + { + "pc": 1503, + "op": "JUMPI", + "gas": 2961166, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x52d", + "0xa0", + "0x80", + "0x0", + "0x1", + "0x5e4" + ] + }, + { + "pc": 1508, + "op": "JUMPDEST", + "gas": 2961156, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x52d", + "0xa0", + "0x80", + "0x0" + ] + }, + { + "pc": 1509, + "op": "PUSH1", + "gas": 2961155, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x52d", + "0xa0", + "0x80", + "0x0" + ] + }, + { + "pc": 1511, + "op": "PUSH2", + "gas": 2961152, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x52d", + "0xa0", + "0x80", + "0x0", + "0x0" + ] + }, + { + "pc": 1514, + "op": "DUP5", + "gas": 2961149, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x52d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2" + ] + }, + { + "pc": 1515, + "op": "DUP3", + "gas": 2961146, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x52d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0" + ] + }, + { + "pc": 1516, + "op": "DUP6", + "gas": 2961143, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x52d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x0" + ] + }, + { + "pc": 1517, + "op": "ADD", + "gas": 2961140, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x52d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x0", + "0x80" + ] + }, + { + "pc": 1518, + "op": "PUSH2", + "gas": 2961137, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x52d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80" + ] + }, + { + "pc": 1521, + "op": "JUMP", + "gas": 2961134, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x52d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x5a8" + ] + }, + { + "pc": 1448, + "op": "JUMPDEST", + "gas": 2961126, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x52d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80" + ] + }, + { + "pc": 1449, + "op": "PUSH1", + "gas": 2961125, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x52d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80" + ] + }, + { + "pc": 1451, + "op": "DUP2", + "gas": 2961122, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x52d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x0" + ] + }, + { + "pc": 1452, + "op": "MLOAD", + "gas": 2961119, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x52d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x0", + "0x80" + ] + }, + { + "pc": 1453, + "op": "SWAP1", + "gas": 2961116, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x52d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x0", + "0x0" + ] + }, + { + "pc": 1454, + "op": "POP", + "gas": 2961113, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x52d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x0", + "0x0" + ] + }, + { + "pc": 1455, + "op": "PUSH2", + "gas": 2961111, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x52d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x0" + ] + }, + { + "pc": 1458, + "op": "DUP2", + "gas": 2961108, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x52d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x0", + "0x5b7" + ] + }, + { + "pc": 1459, + "op": "PUSH2", + "gas": 2961105, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x52d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x0", + "0x5b7", + "0x0" + ] + }, + { + "pc": 1462, + "op": "JUMP", + "gas": 2961102, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x52d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x0", + "0x5b7", + "0x0", + "0x731" + ] + }, + { + "pc": 1841, + "op": "JUMPDEST", + "gas": 2961094, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x52d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x0", + "0x5b7", + "0x0" + ] + }, + { + "pc": 1842, + "op": "PUSH2", + "gas": 2961093, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x52d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x0", + "0x5b7", + "0x0" + ] + }, + { + "pc": 1845, + "op": "DUP2", + "gas": 2961090, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x52d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x0", + "0x5b7", + "0x0", + "0x73a" + ] + }, + { + "pc": 1846, + "op": "PUSH2", + "gas": 2961087, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x52d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x0", + "0x5b7", + "0x0", + "0x73a", + "0x0" + ] + }, + { + "pc": 1849, + "op": "JUMP", + "gas": 2961084, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x52d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x0", + "0x5b7", + "0x0", + "0x73a", + "0x0", + "0x6cc" + ] + }, + { + "pc": 1740, + "op": "JUMPDEST", + "gas": 2961076, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x52d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x0", + "0x5b7", + "0x0", + "0x73a", + "0x0" + ] + }, + { + "pc": 1741, + "op": "PUSH1", + "gas": 2961075, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x52d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x0", + "0x5b7", + "0x0", + "0x73a", + "0x0" + ] + }, + { + "pc": 1743, + "op": "PUSH2", + "gas": 2961072, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x52d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x0", + "0x5b7", + "0x0", + "0x73a", + "0x0", + "0x0" + ] + }, + { + "pc": 1746, + "op": "DUP3", + "gas": 2961069, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x52d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x0", + "0x5b7", + "0x0", + "0x73a", + "0x0", + "0x0", + "0x6d7" + ] + }, + { + "pc": 1747, + "op": "PUSH2", + "gas": 2961066, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x52d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x0", + "0x5b7", + "0x0", + "0x73a", + "0x0", + "0x0", + "0x6d7", + "0x0" + ] + }, + { + "pc": 1750, + "op": "JUMP", + "gas": 2961063, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x52d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x0", + "0x5b7", + "0x0", + "0x73a", + "0x0", + "0x0", + "0x6d7", + "0x0", + "0x6de" + ] + }, + { + "pc": 1758, + "op": "JUMPDEST", + "gas": 2961055, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x52d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x0", + "0x5b7", + "0x0", + "0x73a", + "0x0", + "0x0", + "0x6d7", + "0x0" + ] + }, + { + "pc": 1759, + "op": "PUSH1", + "gas": 2961054, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x52d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x0", + "0x5b7", + "0x0", + "0x73a", + "0x0", + "0x0", + "0x6d7", + "0x0" + ] + }, + { + "pc": 1761, + "op": "PUSH20", + "gas": 2961051, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x52d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x0", + "0x5b7", + "0x0", + "0x73a", + "0x0", + "0x0", + "0x6d7", + "0x0", + "0x0" + ] + }, + { + "pc": 1782, + "op": "DUP3", + "gas": 2961048, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x52d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x0", + "0x5b7", + "0x0", + "0x73a", + "0x0", + "0x0", + "0x6d7", + "0x0", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 1783, + "op": "AND", + "gas": 2961045, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x52d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x0", + "0x5b7", + "0x0", + "0x73a", + "0x0", + "0x0", + "0x6d7", + "0x0", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x0" + ] + }, + { + "pc": 1784, + "op": "SWAP1", + "gas": 2961042, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x52d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x0", + "0x5b7", + "0x0", + "0x73a", + "0x0", + "0x0", + "0x6d7", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 1785, + "op": "POP", + "gas": 2961039, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x52d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x0", + "0x5b7", + "0x0", + "0x73a", + "0x0", + "0x0", + "0x6d7", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 1786, + "op": "SWAP2", + "gas": 2961037, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x52d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x0", + "0x5b7", + "0x0", + "0x73a", + "0x0", + "0x0", + "0x6d7", + "0x0", + "0x0" + ] + }, + { + "pc": 1787, + "op": "SWAP1", + "gas": 2961034, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x52d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x0", + "0x5b7", + "0x0", + "0x73a", + "0x0", + "0x0", + "0x0", + "0x0", + "0x6d7" + ] + }, + { + "pc": 1788, + "op": "POP", + "gas": 2961031, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x52d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x0", + "0x5b7", + "0x0", + "0x73a", + "0x0", + "0x0", + "0x0", + "0x6d7", + "0x0" + ] + }, + { + "pc": 1789, + "op": "JUMP", + "gas": 2961029, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x52d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x0", + "0x5b7", + "0x0", + "0x73a", + "0x0", + "0x0", + "0x0", + "0x6d7" + ] + }, + { + "pc": 1751, + "op": "JUMPDEST", + "gas": 2961021, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x52d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x0", + "0x5b7", + "0x0", + "0x73a", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 1752, + "op": "SWAP1", + "gas": 2961020, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x52d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x0", + "0x5b7", + "0x0", + "0x73a", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 1753, + "op": "POP", + "gas": 2961017, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x52d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x0", + "0x5b7", + "0x0", + "0x73a", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 1754, + "op": "SWAP2", + "gas": 2961015, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x52d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x0", + "0x5b7", + "0x0", + "0x73a", + "0x0", + "0x0" + ] + }, + { + "pc": 1755, + "op": "SWAP1", + "gas": 2961012, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x52d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x0", + "0x5b7", + "0x0", + "0x0", + "0x0", + "0x73a" + ] + }, + { + "pc": 1756, + "op": "POP", + "gas": 2961009, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x52d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x0", + "0x5b7", + "0x0", + "0x0", + "0x73a", + "0x0" + ] + }, + { + "pc": 1757, + "op": "JUMP", + "gas": 2961007, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x52d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x0", + "0x5b7", + "0x0", + "0x0", + "0x73a" + ] + }, + { + "pc": 1850, + "op": "JUMPDEST", + "gas": 2960999, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x52d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x0", + "0x5b7", + "0x0", + "0x0" + ] + }, + { + "pc": 1851, + "op": "DUP2", + "gas": 2960998, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x52d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x0", + "0x5b7", + "0x0", + "0x0" + ] + }, + { + "pc": 1852, + "op": "EQ", + "gas": 2960995, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x52d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x0", + "0x5b7", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 1853, + "op": "PUSH2", + "gas": 2960992, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x52d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x0", + "0x5b7", + "0x0", + "0x1" + ] + }, + { + "pc": 1856, + "op": "JUMPI", + "gas": 2960989, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x52d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x0", + "0x5b7", + "0x0", + "0x1", + "0x745" + ] + }, + { + "pc": 1861, + "op": "JUMPDEST", + "gas": 2960979, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x52d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x0", + "0x5b7", + "0x0" + ] + }, + { + "pc": 1862, + "op": "POP", + "gas": 2960978, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x52d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x0", + "0x5b7", + "0x0" + ] + }, + { + "pc": 1863, + "op": "JUMP", + "gas": 2960976, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x52d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x0", + "0x5b7" + ] + }, + { + "pc": 1463, + "op": "JUMPDEST", + "gas": 2960968, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x52d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x0" + ] + }, + { + "pc": 1464, + "op": "SWAP3", + "gas": 2960967, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x52d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x5f2", + "0xa0", + "0x80", + "0x0" + ] + }, + { + "pc": 1465, + "op": "SWAP2", + "gas": 2960964, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x52d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x0", + "0xa0", + "0x80", + "0x5f2" + ] + }, + { + "pc": 1466, + "op": "POP", + "gas": 2960961, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x52d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x0", + "0x5f2", + "0x80", + "0xa0" + ] + }, + { + "pc": 1467, + "op": "POP", + "gas": 2960959, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x52d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x0", + "0x5f2", + "0x80" + ] + }, + { + "pc": 1468, + "op": "JUMP", + "gas": 2960957, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x52d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x0", + "0x5f2" + ] + }, + { + "pc": 1522, + "op": "JUMPDEST", + "gas": 2960949, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x52d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 1523, + "op": "SWAP2", + "gas": 2960948, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x52d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 1524, + "op": "POP", + "gas": 2960945, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x52d", + "0xa0", + "0x80", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 1525, + "op": "POP", + "gas": 2960943, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x52d", + "0xa0", + "0x80", + "0x0", + "0x0" + ] + }, + { + "pc": 1526, + "op": "SWAP3", + "gas": 2960941, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x52d", + "0xa0", + "0x80", + "0x0" + ] + }, + { + "pc": 1527, + "op": "SWAP2", + "gas": 2960938, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x0", + "0xa0", + "0x80", + "0x52d" + ] + }, + { + "pc": 1528, + "op": "POP", + "gas": 2960935, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x0", + "0x52d", + "0x80", + "0xa0" + ] + }, + { + "pc": 1529, + "op": "POP", + "gas": 2960933, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x0", + "0x52d", + "0x80" + ] + }, + { + "pc": 1530, + "op": "JUMP", + "gas": 2960931, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x0", + "0x52d" + ] + }, + { + "pc": 1325, + "op": "JUMPDEST", + "gas": 2960923, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x0" + ] + }, + { + "pc": 1326, + "op": "PUSH1", + "gas": 2960922, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x0" + ] + }, + { + "pc": 1328, + "op": "PUSH1", + "gas": 2960919, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x0", + "0x1" + ] + }, + { + "pc": 1330, + "op": "PUSH2", + "gas": 2960916, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x0", + "0x1", + "0x0" + ] + }, + { + "pc": 1333, + "op": "EXP", + "gas": 2960913, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x0", + "0x1", + "0x0", + "0x100" + ] + }, + { + "pc": 1334, + "op": "DUP2", + "gas": 2960903, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x0", + "0x1", + "0x1" + ] + }, + { + "pc": 1335, + "op": "SLOAD", + "gas": 2960900, + "gasCost": 2100, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x0", + "0x1", + "0x1", + "0x1" + ], + "storage": { + "0x0000000000000000000000000000000000000000000000000000000000000000": "0x000000000000000000000000467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x0000000000000000000000000000000000000000000000000000000000000001": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "extraData": { + "proofList": [ + { + "address": "0xda1ad647621a1984ce21b0bab020005fe3b5f4da", + "nonce": 1, + "balance": "0x0", + "codeHash": "0x00c2455a35210099bbbb95bdd1b6a9bfc4702d98ba0f971009391cd8f970e729", + "storage": { + "key": "0x0000000000000000000000000000000000000000000000000000000000000001", + "value": "0x0000000000000000000000000000000000000000000000000000000000000000" + } + } + ] + } + }, + { + "pc": 1336, + "op": "DUP2", + "gas": 2958800, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x0", + "0x1", + "0x1", + "0x0" + ] + }, + { + "pc": 1337, + "op": "PUSH20", + "gas": 2958797, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x0", + "0x1", + "0x1", + "0x0", + "0x1" + ] + }, + { + "pc": 1358, + "op": "MUL", + "gas": 2958794, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x0", + "0x1", + "0x1", + "0x0", + "0x1", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 1359, + "op": "NOT", + "gas": 2958789, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x0", + "0x1", + "0x1", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 1360, + "op": "AND", + "gas": 2958786, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x0", + "0x1", + "0x1", + "0x0", + "0xffffffffffffffffffffffff0000000000000000000000000000000000000000" + ] + }, + { + "pc": 1361, + "op": "SWAP1", + "gas": 2958783, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x0", + "0x1", + "0x1", + "0x0" + ] + }, + { + "pc": 1362, + "op": "DUP4", + "gas": 2958780, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x0", + "0x1", + "0x0", + "0x1" + ] + }, + { + "pc": 1363, + "op": "PUSH20", + "gas": 2958777, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x0", + "0x1", + "0x0", + "0x1", + "0x0" + ] + }, + { + "pc": 1384, + "op": "AND", + "gas": 2958774, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x0", + "0x1", + "0x0", + "0x1", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 1385, + "op": "MUL", + "gas": 2958771, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x0", + "0x1", + "0x0", + "0x1", + "0x0" + ] + }, + { + "pc": 1386, + "op": "OR", + "gas": 2958766, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x0", + "0x1", + "0x0", + "0x0" + ] + }, + { + "pc": 1387, + "op": "SWAP1", + "gas": 2958763, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x0", + "0x1", + "0x0" + ] + }, + { + "pc": 1388, + "op": "SSTORE", + "gas": 2958760, + "gasCost": 100, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x0", + "0x0", + "0x1" + ], + "storage": { + "0x0000000000000000000000000000000000000000000000000000000000000000": "0x000000000000000000000000467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x0000000000000000000000000000000000000000000000000000000000000001": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "extraData": { + "proofList": [ + { + "address": "0xda1ad647621a1984ce21b0bab020005fe3b5f4da", + "nonce": 1, + "balance": "0x0", + "codeHash": "0x00c2455a35210099bbbb95bdd1b6a9bfc4702d98ba0f971009391cd8f970e729", + "storage": { + "key": "0x0000000000000000000000000000000000000000000000000000000000000001", + "value": "0x0000000000000000000000000000000000000000000000000000000000000000" + } + } + ] + } + }, + { + "pc": 1389, + "op": "POP", + "gas": 2958660, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x0" + ] + }, + { + "pc": 1390, + "op": "PUSH1", + "gas": 2958658, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a" + ] + }, + { + "pc": 1392, + "op": "MLOAD", + "gas": 2958655, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x40" + ] + }, + { + "pc": 1393, + "op": "PUSH32", + "gas": 2958652, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0xa0" + ] + }, + { + "pc": 1426, + "op": "DUP2", + "gas": 2958649, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0xa0", + "0x8c379a000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 1427, + "op": "MSTORE", + "gas": 2958646, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0xa0", + "0x8c379a000000000000000000000000000000000000000000000000000000000", + "0xa0" + ] + }, + { + "pc": 1428, + "op": "PUSH1", + "gas": 2958643, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0xa0" + ] + }, + { + "pc": 1430, + "op": "ADD", + "gas": 2958640, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0xa0", + "0x4" + ] + }, + { + "pc": 1431, + "op": "PUSH2", + "gas": 2958637, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0xa4" + ] + }, + { + "pc": 1434, + "op": "SWAP1", + "gas": 2958634, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0xa4", + "0x59f" + ] + }, + { + "pc": 1435, + "op": "PUSH2", + "gas": 2958631, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x59f", + "0xa4" + ] + }, + { + "pc": 1438, + "op": "JUMP", + "gas": 2958628, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x59f", + "0xa4", + "0x680" + ] + }, + { + "pc": 1664, + "op": "JUMPDEST", + "gas": 2958620, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x59f", + "0xa4" + ] + }, + { + "pc": 1665, + "op": "PUSH1", + "gas": 2958619, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x59f", + "0xa4" + ] + }, + { + "pc": 1667, + "op": "PUSH1", + "gas": 2958616, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x59f", + "0xa4", + "0x0" + ] + }, + { + "pc": 1669, + "op": "DUP3", + "gas": 2958613, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x59f", + "0xa4", + "0x0", + "0x20" + ] + }, + { + "pc": 1670, + "op": "ADD", + "gas": 2958610, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x59f", + "0xa4", + "0x0", + "0x20", + "0xa4" + ] + }, + { + "pc": 1671, + "op": "SWAP1", + "gas": 2958607, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x59f", + "0xa4", + "0x0", + "0xc4" + ] + }, + { + "pc": 1672, + "op": "POP", + "gas": 2958604, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x59f", + "0xa4", + "0xc4", + "0x0" + ] + }, + { + "pc": 1673, + "op": "DUP2", + "gas": 2958602, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x59f", + "0xa4", + "0xc4" + ] + }, + { + "pc": 1674, + "op": "DUP2", + "gas": 2958599, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x59f", + "0xa4", + "0xc4", + "0xa4" + ] + }, + { + "pc": 1675, + "op": "SUB", + "gas": 2958596, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x59f", + "0xa4", + "0xc4", + "0xa4", + "0xc4" + ] + }, + { + "pc": 1676, + "op": "PUSH1", + "gas": 2958593, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x59f", + "0xa4", + "0xc4", + "0x20" + ] + }, + { + "pc": 1678, + "op": "DUP4", + "gas": 2958590, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x59f", + "0xa4", + "0xc4", + "0x20", + "0x0" + ] + }, + { + "pc": 1679, + "op": "ADD", + "gas": 2958587, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x59f", + "0xa4", + "0xc4", + "0x20", + "0x0", + "0xa4" + ] + }, + { + "pc": 1680, + "op": "MSTORE", + "gas": 2958584, + "gasCost": 6, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x59f", + "0xa4", + "0xc4", + "0x20", + "0xa4" + ] + }, + { + "pc": 1681, + "op": "PUSH2", + "gas": 2958578, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x59f", + "0xa4", + "0xc4" + ] + }, + { + "pc": 1684, + "op": "DUP2", + "gas": 2958575, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x59f", + "0xa4", + "0xc4", + "0x699" + ] + }, + { + "pc": 1685, + "op": "PUSH2", + "gas": 2958572, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x59f", + "0xa4", + "0xc4", + "0x699", + "0xc4" + ] + }, + { + "pc": 1688, + "op": "JUMP", + "gas": 2958569, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x59f", + "0xa4", + "0xc4", + "0x699", + "0xc4", + "0x633" + ] + }, + { + "pc": 1587, + "op": "JUMPDEST", + "gas": 2958561, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x59f", + "0xa4", + "0xc4", + "0x699", + "0xc4" + ] + }, + { + "pc": 1588, + "op": "PUSH1", + "gas": 2958560, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x59f", + "0xa4", + "0xc4", + "0x699", + "0xc4" + ] + }, + { + "pc": 1590, + "op": "PUSH2", + "gas": 2958557, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x59f", + "0xa4", + "0xc4", + "0x699", + "0xc4", + "0x0" + ] + }, + { + "pc": 1593, + "op": "PUSH1", + "gas": 2958554, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x59f", + "0xa4", + "0xc4", + "0x699", + "0xc4", + "0x0", + "0x640" + ] + }, + { + "pc": 1595, + "op": "DUP4", + "gas": 2958551, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x59f", + "0xa4", + "0xc4", + "0x699", + "0xc4", + "0x0", + "0x640", + "0xc" + ] + }, + { + "pc": 1596, + "op": "PUSH2", + "gas": 2958548, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x59f", + "0xa4", + "0xc4", + "0x699", + "0xc4", + "0x0", + "0x640", + "0xc", + "0xc4" + ] + }, + { + "pc": 1599, + "op": "JUMP", + "gas": 2958545, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x59f", + "0xa4", + "0xc4", + "0x699", + "0xc4", + "0x0", + "0x640", + "0xc", + "0xc4", + "0x6bb" + ] + }, + { + "pc": 1723, + "op": "JUMPDEST", + "gas": 2958537, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x59f", + "0xa4", + "0xc4", + "0x699", + "0xc4", + "0x0", + "0x640", + "0xc", + "0xc4" + ] + }, + { + "pc": 1724, + "op": "PUSH1", + "gas": 2958536, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x59f", + "0xa4", + "0xc4", + "0x699", + "0xc4", + "0x0", + "0x640", + "0xc", + "0xc4" + ] + }, + { + "pc": 1726, + "op": "DUP3", + "gas": 2958533, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x59f", + "0xa4", + "0xc4", + "0x699", + "0xc4", + "0x0", + "0x640", + "0xc", + "0xc4", + "0x0" + ] + }, + { + "pc": 1727, + "op": "DUP3", + "gas": 2958530, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x59f", + "0xa4", + "0xc4", + "0x699", + "0xc4", + "0x0", + "0x640", + "0xc", + "0xc4", + "0x0", + "0xc" + ] + }, + { + "pc": 1728, + "op": "MSTORE", + "gas": 2958527, + "gasCost": 6, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x59f", + "0xa4", + "0xc4", + "0x699", + "0xc4", + "0x0", + "0x640", + "0xc", + "0xc4", + "0x0", + "0xc", + "0xc4" + ] + }, + { + "pc": 1729, + "op": "PUSH1", + "gas": 2958521, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x59f", + "0xa4", + "0xc4", + "0x699", + "0xc4", + "0x0", + "0x640", + "0xc", + "0xc4", + "0x0" + ] + }, + { + "pc": 1731, + "op": "DUP3", + "gas": 2958518, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x59f", + "0xa4", + "0xc4", + "0x699", + "0xc4", + "0x0", + "0x640", + "0xc", + "0xc4", + "0x0", + "0x20" + ] + }, + { + "pc": 1732, + "op": "ADD", + "gas": 2958515, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x59f", + "0xa4", + "0xc4", + "0x699", + "0xc4", + "0x0", + "0x640", + "0xc", + "0xc4", + "0x0", + "0x20", + "0xc4" + ] + }, + { + "pc": 1733, + "op": "SWAP1", + "gas": 2958512, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x59f", + "0xa4", + "0xc4", + "0x699", + "0xc4", + "0x0", + "0x640", + "0xc", + "0xc4", + "0x0", + "0xe4" + ] + }, + { + "pc": 1734, + "op": "POP", + "gas": 2958509, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x59f", + "0xa4", + "0xc4", + "0x699", + "0xc4", + "0x0", + "0x640", + "0xc", + "0xc4", + "0xe4", + "0x0" + ] + }, + { + "pc": 1735, + "op": "SWAP3", + "gas": 2958507, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x59f", + "0xa4", + "0xc4", + "0x699", + "0xc4", + "0x0", + "0x640", + "0xc", + "0xc4", + "0xe4" + ] + }, + { + "pc": 1736, + "op": "SWAP2", + "gas": 2958504, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x59f", + "0xa4", + "0xc4", + "0x699", + "0xc4", + "0x0", + "0xe4", + "0xc", + "0xc4", + "0x640" + ] + }, + { + "pc": 1737, + "op": "POP", + "gas": 2958501, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x59f", + "0xa4", + "0xc4", + "0x699", + "0xc4", + "0x0", + "0xe4", + "0x640", + "0xc4", + "0xc" + ] + }, + { + "pc": 1738, + "op": "POP", + "gas": 2958499, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x59f", + "0xa4", + "0xc4", + "0x699", + "0xc4", + "0x0", + "0xe4", + "0x640", + "0xc4" + ] + }, + { + "pc": 1739, + "op": "JUMP", + "gas": 2958497, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x59f", + "0xa4", + "0xc4", + "0x699", + "0xc4", + "0x0", + "0xe4", + "0x640" + ] + }, + { + "pc": 1600, + "op": "JUMPDEST", + "gas": 2958489, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x59f", + "0xa4", + "0xc4", + "0x699", + "0xc4", + "0x0", + "0xe4" + ] + }, + { + "pc": 1601, + "op": "SWAP2", + "gas": 2958488, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x59f", + "0xa4", + "0xc4", + "0x699", + "0xc4", + "0x0", + "0xe4" + ] + }, + { + "pc": 1602, + "op": "POP", + "gas": 2958485, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x59f", + "0xa4", + "0xc4", + "0x699", + "0xe4", + "0x0", + "0xc4" + ] + }, + { + "pc": 1603, + "op": "PUSH2", + "gas": 2958483, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x59f", + "0xa4", + "0xc4", + "0x699", + "0xe4", + "0x0" + ] + }, + { + "pc": 1606, + "op": "DUP3", + "gas": 2958480, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x59f", + "0xa4", + "0xc4", + "0x699", + "0xe4", + "0x0", + "0x64b" + ] + }, + { + "pc": 1607, + "op": "PUSH2", + "gas": 2958477, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x59f", + "0xa4", + "0xc4", + "0x699", + "0xe4", + "0x0", + "0x64b", + "0xe4" + ] + }, + { + "pc": 1610, + "op": "JUMP", + "gas": 2958474, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x59f", + "0xa4", + "0xc4", + "0x699", + "0xe4", + "0x0", + "0x64b", + "0xe4", + "0x708" + ] + }, + { + "pc": 1800, + "op": "JUMPDEST", + "gas": 2958466, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x59f", + "0xa4", + "0xc4", + "0x699", + "0xe4", + "0x0", + "0x64b", + "0xe4" + ] + }, + { + "pc": 1801, + "op": "PUSH32", + "gas": 2958465, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x59f", + "0xa4", + "0xc4", + "0x699", + "0xe4", + "0x0", + "0x64b", + "0xe4" + ] + }, + { + "pc": 1834, + "op": "PUSH1", + "gas": 2958462, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x59f", + "0xa4", + "0xc4", + "0x699", + "0xe4", + "0x0", + "0x64b", + "0xe4", + "0x64656c696265726174656c790000000000000000000000000000000000000000" + ] + }, + { + "pc": 1836, + "op": "DUP3", + "gas": 2958459, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x59f", + "0xa4", + "0xc4", + "0x699", + "0xe4", + "0x0", + "0x64b", + "0xe4", + "0x64656c696265726174656c790000000000000000000000000000000000000000", + "0x0" + ] + }, + { + "pc": 1837, + "op": "ADD", + "gas": 2958456, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x59f", + "0xa4", + "0xc4", + "0x699", + "0xe4", + "0x0", + "0x64b", + "0xe4", + "0x64656c696265726174656c790000000000000000000000000000000000000000", + "0x0", + "0xe4" + ] + }, + { + "pc": 1838, + "op": "MSTORE", + "gas": 2958453, + "gasCost": 6, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x59f", + "0xa4", + "0xc4", + "0x699", + "0xe4", + "0x0", + "0x64b", + "0xe4", + "0x64656c696265726174656c790000000000000000000000000000000000000000", + "0xe4" + ] + }, + { + "pc": 1839, + "op": "POP", + "gas": 2958447, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x59f", + "0xa4", + "0xc4", + "0x699", + "0xe4", + "0x0", + "0x64b", + "0xe4" + ] + }, + { + "pc": 1840, + "op": "JUMP", + "gas": 2958445, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x59f", + "0xa4", + "0xc4", + "0x699", + "0xe4", + "0x0", + "0x64b" + ] + }, + { + "pc": 1611, + "op": "JUMPDEST", + "gas": 2958437, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x59f", + "0xa4", + "0xc4", + "0x699", + "0xe4", + "0x0" + ] + }, + { + "pc": 1612, + "op": "PUSH1", + "gas": 2958436, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x59f", + "0xa4", + "0xc4", + "0x699", + "0xe4", + "0x0" + ] + }, + { + "pc": 1614, + "op": "DUP3", + "gas": 2958433, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x59f", + "0xa4", + "0xc4", + "0x699", + "0xe4", + "0x0", + "0x20" + ] + }, + { + "pc": 1615, + "op": "ADD", + "gas": 2958430, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x59f", + "0xa4", + "0xc4", + "0x699", + "0xe4", + "0x0", + "0x20", + "0xe4" + ] + }, + { + "pc": 1616, + "op": "SWAP1", + "gas": 2958427, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x59f", + "0xa4", + "0xc4", + "0x699", + "0xe4", + "0x0", + "0x104" + ] + }, + { + "pc": 1617, + "op": "POP", + "gas": 2958424, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x59f", + "0xa4", + "0xc4", + "0x699", + "0xe4", + "0x104", + "0x0" + ] + }, + { + "pc": 1618, + "op": "SWAP2", + "gas": 2958422, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x59f", + "0xa4", + "0xc4", + "0x699", + "0xe4", + "0x104" + ] + }, + { + "pc": 1619, + "op": "SWAP1", + "gas": 2958419, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x59f", + "0xa4", + "0xc4", + "0x104", + "0xe4", + "0x699" + ] + }, + { + "pc": 1620, + "op": "POP", + "gas": 2958416, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x59f", + "0xa4", + "0xc4", + "0x104", + "0x699", + "0xe4" + ] + }, + { + "pc": 1621, + "op": "JUMP", + "gas": 2958414, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x59f", + "0xa4", + "0xc4", + "0x104", + "0x699" + ] + }, + { + "pc": 1689, + "op": "JUMPDEST", + "gas": 2958406, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x59f", + "0xa4", + "0xc4", + "0x104" + ] + }, + { + "pc": 1690, + "op": "SWAP1", + "gas": 2958405, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x59f", + "0xa4", + "0xc4", + "0x104" + ] + }, + { + "pc": 1691, + "op": "POP", + "gas": 2958402, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x59f", + "0xa4", + "0x104", + "0xc4" + ] + }, + { + "pc": 1692, + "op": "SWAP2", + "gas": 2958400, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x59f", + "0xa4", + "0x104" + ] + }, + { + "pc": 1693, + "op": "SWAP1", + "gas": 2958397, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x104", + "0xa4", + "0x59f" + ] + }, + { + "pc": 1694, + "op": "POP", + "gas": 2958394, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x104", + "0x59f", + "0xa4" + ] + }, + { + "pc": 1695, + "op": "JUMP", + "gas": 2958392, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x104", + "0x59f" + ] + }, + { + "pc": 1439, + "op": "JUMPDEST", + "gas": 2958384, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x104" + ] + }, + { + "pc": 1440, + "op": "PUSH1", + "gas": 2958383, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x104" + ] + }, + { + "pc": 1442, + "op": "MLOAD", + "gas": 2958380, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x104", + "0x40" + ] + }, + { + "pc": 1443, + "op": "DUP1", + "gas": 2958377, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x104", + "0xa0" + ] + }, + { + "pc": 1444, + "op": "SWAP2", + "gas": 2958374, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x104", + "0xa0", + "0xa0" + ] + }, + { + "pc": 1445, + "op": "SUB", + "gas": 2958371, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0xa0", + "0xa0", + "0x104" + ] + }, + { + "pc": 1446, + "op": "SWAP1", + "gas": 2958368, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0xa0", + "0x64" + ] + }, + { + "pc": 1447, + "op": "REVERT", + "gas": 2958365, + "gasCost": 0, + "depth": 1, + "stack": [ + "0x5dec31ca", + "0x111", + "0x0", + "0x467b8c999f24f61c3f5beb287fe2a4c95c0fcb6a", + "0x64", + "0xa0" + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/internal/utesting/blocktraces/fail_deep_call.json b/internal/utesting/blocktraces/fail_deep_call.json new file mode 100644 index 0000000000..79c1d990bc --- /dev/null +++ b/internal/utesting/blocktraces/fail_deep_call.json @@ -0,0 +1,10193 @@ +{ + "blockTrace": { + "number": "0x6e", + "hash": "0x6b115bddfcec017de0c3fccfe4c0ffc636266df3f12ce725f0b26ec72d97bdd2", + "gasLimit": 7483712, + "difficulty": "0x2", + "baseFee": "0x2ec3", + "coinbase": { + "address": "0x0000000000000000000000000000000000000000", + "nonce": 0, + "balance": "0x0", + "codeHash": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "time": 1661237007, + "transactions": [ + { + "type": 2, + "nonce": 154, + "txHash": "0x68ede1328754445e1b18b75464d5c2c43cc88b1918fa837fb84cf8863e656322", + "gas": 3021464, + "gasPrice": "0x3b2e", + "from": "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "to": "0xedd6a1a065b9f64183bcc9d1707b4f7ff74e1474", + "chainId": "0xcf55", + "value": "0x0", + "data": "0x651b4aa50000000000000000000000000000000000000000000000000000000000000064", + "isCreate": false, + "v": "0x1", + "r": "0x3650d67fa5009752bd911fdba1d1b43bf14ed7523d0baa404393afc5a9b07ba", + "s": "0x30bf265e39588096fafab646a93eba953d347a515373e7bf2c72fdf709980c41" + } + ] + }, + "storageTrace": { + "rootBefore": "0x134b4e1705ae3a5dc549379f12875ffba803d38d0a3405878ada14febe9fd9f5", + "rootAfter": "0x10abe8b51e2f4e26bbedfc42325a5174162933477986dab3a966e1c4e01f0220", + "proofs": { + "0x38E2a9dd844d6726AD18033891D515FD82D686AE": [ + "0x001b02bf9a1b8700469b339aa309b9bfbbbc31c571e8d8f9ec0d90c9c23d2e1ad609a5a559437fd21b88d3700e951ee680a08998c688293e7beabbb0a3ad7801a4", + "0x002dcb44aea68ffc32834f8b249f9544e10651c901fbbd5a176111aa5f0032228517135832c8546c3442216b8bd52f8f7c9374c3c22832bda4cdb616136c96e03e", + "0x00270f72e8876e689e49b7e233b0b67eb2c1b103102bfaf3b8e00c7646f0f0744a0739e75ca737206a5ae920316d721815feaa385d5b5a3cd18db5b2c3de6b6cba", + "0x0028f60d2ec38256117350fc24b677cd7701eda9607d50a1c3378eb08067f9fe6007086e4d70c49dd12722cae0304341b179bba038f6c64e4da6366fcb5d321d98", + "0x002b3fbe97fd85db5e29d42749d38b9d719cbb84693ab684057952d120ddcd075912245f8b0685cf3d1006f53063dfc9202cd4e50f892dfa4ba5bdf614e11f86be", + "0x00000000000000000000000000000000000000000000000000000000000000000014ccc435cb788334692b3edf0f2a0dc7e52fb5b64e16cb30b4e4c891f4b050f0", + "0x000f94c77dfccbabac05e0c30815935f1c9f3a0d0e373c0ce4f1a46df08ec0ca6d0038f3250e0574dfd78c7d37b9a531f9aca5885a16a5f94d9e735f32754bd7ba", + "0x0029a2f130d9f98f3b6d1761e681875ef7cbc43673577d896e1d12b8e7cc71ff182500a0b65c35591641c7914be220c2cb112724d0ac73362aa8f26fd3eeaacb3a", + "0x00188a4d1e490c00a34b1ad690123c19a5c70d90d038058422d143508fe451453b02651ee3711093662ba4e55e71791f88421b531ca00e83bc34b4f43c846b719e", + "0x0128865645696914d5c29fa0f30e5cbc18ba4442a1e57e079bc3e6b51b90715b680404000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000bf159056a3a2ad6cf0a060213d688d7ab0de676645a7c8f7d2ad3e2e6107469e1e8a8be5b0c336fc69d611968ce6b569b5a1c43824fc7091231ea55754d898ea00", + "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" + ], + "0x4cb1aB63aF5D8931Ce09673EbD8ae2ce16fD6571": [ + "0x001b02bf9a1b8700469b339aa309b9bfbbbc31c571e8d8f9ec0d90c9c23d2e1ad609a5a559437fd21b88d3700e951ee680a08998c688293e7beabbb0a3ad7801a4", + "0x00031e5fbe1a078361332f2ff502c4ef6a9e30fb0389ad4dc7c18810fc28d6def10b4cf9f90b23c7ba66b314f19da5d95b2d4395067a14709d3f2924e935d29480", + "0x0014ced77e42df8602549fdf9b8509d4cb6765e02256219619e2022ebf3b7351ab29f50c8f0d07dafda7024aa0343497f1d8c5e9dd230c965fc080f18a996a8cc8", + "0x002404bb80e10ef254354632d213f09449ee2ce662b3cf091c9806fff2d91a30a217fa2d2e7a8388bcba4afe82e0e3065b7872cbf349922628df91e55a37531f25", + "0x001d7dcee666a0f52122f2509d3f07910107ba34606fb20498381b0a002a6849e711f5710b6e816b9ec08d1bca0c41c6a9bb7039dac7efbe11010b64eb19a66508", + "0x0005dc0b4c7ca3dafc63dbdaa5071e46ed1d4175effd1f9e263e4120e82f704b1a2cc2ab30cd4a94571bdbb9bd3409c7101d2e2873074c8adf3be67f9ce05c4c38", + "0x0003098315038dde63cc393f2ff2e1ff179dae2a62f45ed043ec101ea888334581201a0208c5b779de11736cd1efbc7148f21fd8d6c3b2ba615c1a5d7149730004", + "0x002b0c3b8d158d2b717f04fb78324229dd6c6a1c284f0c9d533d8d0c26c03f13a72fe8b70043185278f8f6c75d7057d75ebc62e82052f480dfc207de3b0e89700e", + "0x0129bdbea092f4f7e6de593fd1a16ddb50b1c2a6297d4ae141a60f8da631e4817504040000000000000000000000000000000000000000000000000000000000000000009a0056bc75e2d630ffffffffffffffffffffffffffffffffffff3346229f275797c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470000000000000000000000000000000000000000000000000000000000000000000", + "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" + ], + "0x687707d572CD6a3F91Cf87D3F953100b2599f7D5": [ + "0x001b02bf9a1b8700469b339aa309b9bfbbbc31c571e8d8f9ec0d90c9c23d2e1ad609a5a559437fd21b88d3700e951ee680a08998c688293e7beabbb0a3ad7801a4", + "0x002dcb44aea68ffc32834f8b249f9544e10651c901fbbd5a176111aa5f0032228517135832c8546c3442216b8bd52f8f7c9374c3c22832bda4cdb616136c96e03e", + "0x00270f72e8876e689e49b7e233b0b67eb2c1b103102bfaf3b8e00c7646f0f0744a0739e75ca737206a5ae920316d721815feaa385d5b5a3cd18db5b2c3de6b6cba", + "0x0007bf5116574743147ac0685f7367fe4ae9cb7961f7097e51830e3e06299be0260cbb2777d1e6319c888a36bd59be9841d436c744c4040dd313db8dbdd78a8b5d", + "0x00018a8392afa6ed74bd268349cd9b5255bfb6ad06f6573fc740f1109f30b9030a0000000000000000000000000000000000000000000000000000000000000000", + "0x001a7431479d9900380716111ba2384e9d3ba1cf05ba3a33c689576cf21897cec6009de6be4c5c615e8d57f40c68038ec43e085fe4f4ec5d65481331c2218b508a", + "0x0026e2dd23c335cec8c0d6177226b17523bf1f91eeacd6d93a4f9f56a94ab7384a01896c63121d56e8f661d57357b7dac553049f3708136ba3df968e5e93132321", + "0x01272a379f177ddf696f7081be7220a1501c81ee06bba34b3085ab59df168c292404040000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000004ee2afb169bef88abed9792edc0230c2cda9c19a48639d2db199479f1176928e0993f6372d8d7d6dff0a8fea019b3c418624a8f32fb66b04759f9afa2989ec8f00", + "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" + ], + "0xEdd6a1a065B9f64183BcC9D1707b4F7fF74e1474": [ + "0x001b02bf9a1b8700469b339aa309b9bfbbbc31c571e8d8f9ec0d90c9c23d2e1ad609a5a559437fd21b88d3700e951ee680a08998c688293e7beabbb0a3ad7801a4", + "0x00031e5fbe1a078361332f2ff502c4ef6a9e30fb0389ad4dc7c18810fc28d6def10b4cf9f90b23c7ba66b314f19da5d95b2d4395067a14709d3f2924e935d29480", + "0x0014ced77e42df8602549fdf9b8509d4cb6765e02256219619e2022ebf3b7351ab29f50c8f0d07dafda7024aa0343497f1d8c5e9dd230c965fc080f18a996a8cc8", + "0x002404bb80e10ef254354632d213f09449ee2ce662b3cf091c9806fff2d91a30a217fa2d2e7a8388bcba4afe82e0e3065b7872cbf349922628df91e55a37531f25", + "0x001d7dcee666a0f52122f2509d3f07910107ba34606fb20498381b0a002a6849e711f5710b6e816b9ec08d1bca0c41c6a9bb7039dac7efbe11010b64eb19a66508", + "0x0005dc0b4c7ca3dafc63dbdaa5071e46ed1d4175effd1f9e263e4120e82f704b1a2cc2ab30cd4a94571bdbb9bd3409c7101d2e2873074c8adf3be67f9ce05c4c38", + "0x002248f47a53d7e981b187961b71a36033d9ef59273228ec127666f43c5d0fd2c5258fc24c3686bef9255530d20fc2c15f6f07bb104e7622dcd9c228eb1a135a6c", + "0x0125ae1af6b60d7ff68f925eea12c1e0d92b028744c5a48fa43625ca5b18ba3b550404000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000b9d4b0986ed041aeabd02a4835a1aafba231e0cec363b861c5cefb234b5c550a11928f871137c3c4a32463f7ae973ed6c5380bdf9913d442c4ccd85fb48836fe00", + "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" + ] + }, + "storageProofs": { + "0x38E2a9dd844d6726AD18033891D515FD82D686AE": { + "0x0000000000000000000000000000000000000000000000000000000000000000": [ + "0x012098f5fb9e239eab3ceac3f27b81e481dc3124d55ffed523a839ee8446b6486401010000000000000000000000000000687707d572cd6a3f91cf87d3f953100b2599f7d500", + "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" + ] + }, + "0x687707d572CD6a3F91Cf87D3F953100b2599f7D5": { + "0x0000000000000000000000000000000000000000000000000000000000000000": [ + "0x012098f5fb9e239eab3ceac3f27b81e481dc3124d55ffed523a839ee8446b648640101000000000000000000000000000000000000000000000000000000000182c964a26b00", + "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" + ] + }, + "0xEdd6a1a065B9f64183BcC9D1707b4F7fF74e1474": { + "0x0000000000000000000000000000000000000000000000000000000000000000": [ + "0x012098f5fb9e239eab3ceac3f27b81e481dc3124d55ffed523a839ee8446b648640101000000000000000000000000000038e2a9dd844d6726ad18033891d515fd82d686ae00", + "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" + ], + "0x0000000000000000000000000000000000000000000000000000000000000001": [ + "0x012098f5fb9e239eab3ceac3f27b81e481dc3124d55ffed523a839ee8446b648640101000000000000000000000000000038e2a9dd844d6726ad18033891d515fd82d686ae00", + "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" + ] + } + } + }, + "executionResults": [ + { + "gas": 59848, + "failed": false, + "from": { + "address": "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "nonce": 154, + "balance": "0x56bc75e2d630ffffffffffffffffffffffffffffffffffff3346229f275797", + "codeHash": "0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470" + }, + "to": { + "address": "0xedd6a1a065b9f64183bcc9d1707b4f7ff74e1474", + "nonce": 1, + "balance": "0x0", + "codeHash": "0xb9d4b0986ed041aeabd02a4835a1aafba231e0cec363b861c5cefb234b5c550a" + }, + "accountAfter": [ + { + "address": "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "nonce": 155, + "balance": "0x56bc75e2d630ffffffffffffffffffffffffffffffffffff3346227473543f", + "codeHash": "0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470" + }, + { + "address": "0xedd6a1a065b9f64183bcc9d1707b4f7ff74e1474", + "nonce": 1, + "balance": "0x0", + "codeHash": "0xb9d4b0986ed041aeabd02a4835a1aafba231e0cec363b861c5cefb234b5c550a" + } + ], + "codeHash": "0xb9d4b0986ed041aeabd02a4835a1aafba231e0cec363b861c5cefb234b5c550a", + "byteCode": "0x608060405234801561001057600080fd5b506004361061007d5760003560e01c80633e23ee431161005b5780633e23ee43146100d8578063651b4aa5146100f6578063a0a4868814610112578063cb4ec52e1461012e5761007d565b8063127017e114610082578063200d2ed21461009e57806336864b1b146100bc575b600080fd5b61009c6004803603810190610097919061050c565b61014a565b005b6100a66101e6565b6040516100b391906105b1565b60405180910390f35b6100d660048036038101906100d1919061050c565b6101f0565b005b6100e06102c3565b6040516100ed9190610576565b60405180910390f35b610110600480360381019061010b919061050c565b6102ec565b005b61012c6004803603810190610127919061050c565b610388565b005b6101486004803603810190610143919061050c565b61045b565b005b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663ed231420836040518263ffffffff1660e01b81526004016101a991906105b1565b600060405180830381600087803b1580156101c357600080fd5b505af11580156101d7573d6000803e3d6000fd5b50505050816001819055505050565b6000600154905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663b0f2b72a836040518263ffffffff1660e01b815260040161024f91906105b1565b600060405180830381600087803b15801561026957600080fd5b505af115801561027d573d6000803e3d6000fd5b50505050816001819055506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016102ba90610591565b60405180910390fd5b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff166321848c46836040518263ffffffff1660e01b815260040161034b91906105b1565b600060405180830381600087803b15801561036557600080fd5b505af1158015610379573d6000803e3d6000fd5b50505050816001819055505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663b0f2b72a836040518263ffffffff1660e01b81526004016103e791906105b1565b600060405180830381600087803b15801561040157600080fd5b505af1158015610415573d6000803e3d6000fd5b50505050816001819055506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161045290610591565b60405180910390fd5b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663b0f2b72a836040518263ffffffff1660e01b81526004016104ba91906105b1565b600060405180830381600087803b1580156104d457600080fd5b505af11580156104e8573d6000803e3d6000fd5b50505050816001819055505050565b60008135905061050681610642565b92915050565b60006020828403121561051e57600080fd5b600061052c848285016104f7565b91505092915050565b61053e816105dd565b82525050565b6000610551600c836105cc565b915061055c82610619565b602082019050919050565b6105708161060f565b82525050565b600060208201905061058b6000830184610535565b92915050565b600060208201905081810360008301526105aa81610544565b9050919050565b60006020820190506105c66000830184610567565b92915050565b600082825260208201905092915050565b60006105e8826105ef565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b7f64656c696265726174656c790000000000000000000000000000000000000000600082015250565b61064b8161060f565b811461065657600080fd5b5056fea2646970667358221220febbf3dd0054f94c7763ec197ee815d446b5cee0c49696a0c0c09a7e3d04617364736f6c63430008040033", + "structLogs": [ + { + "pc": 0, + "op": "PUSH1", + "gas": 3000260, + "gasCost": 3, + "depth": 1 + }, + { + "pc": 2, + "op": "PUSH1", + "gas": 3000257, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80" + ] + }, + { + "pc": 4, + "op": "MSTORE", + "gas": 3000254, + "gasCost": 12, + "depth": 1, + "stack": [ + "0x80", + "0x40" + ] + }, + { + "pc": 5, + "op": "CALLVALUE", + "gas": 3000242, + "gasCost": 2, + "depth": 1 + }, + { + "pc": 6, + "op": "DUP1", + "gas": 3000240, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 7, + "op": "ISZERO", + "gas": 3000237, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0", + "0x0" + ] + }, + { + "pc": 8, + "op": "PUSH2", + "gas": 3000234, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0", + "0x1" + ] + }, + { + "pc": 11, + "op": "JUMPI", + "gas": 3000231, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x0", + "0x1", + "0x10" + ] + }, + { + "pc": 16, + "op": "JUMPDEST", + "gas": 3000221, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 17, + "op": "POP", + "gas": 3000220, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 18, + "op": "PUSH1", + "gas": 3000218, + "gasCost": 3, + "depth": 1 + }, + { + "pc": 20, + "op": "CALLDATASIZE", + "gas": 3000215, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x4" + ] + }, + { + "pc": 21, + "op": "LT", + "gas": 3000213, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4", + "0x24" + ] + }, + { + "pc": 22, + "op": "PUSH2", + "gas": 3000210, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 25, + "op": "JUMPI", + "gas": 3000207, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x0", + "0x7d" + ] + }, + { + "pc": 26, + "op": "PUSH1", + "gas": 3000197, + "gasCost": 3, + "depth": 1 + }, + { + "pc": 28, + "op": "CALLDATALOAD", + "gas": 3000194, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 29, + "op": "PUSH1", + "gas": 3000191, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa500000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 31, + "op": "SHR", + "gas": 3000188, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa500000000000000000000000000000000000000000000000000000000", + "0xe0" + ] + }, + { + "pc": 32, + "op": "DUP1", + "gas": 3000185, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5" + ] + }, + { + "pc": 33, + "op": "PUSH4", + "gas": 3000182, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x651b4aa5" + ] + }, + { + "pc": 38, + "op": "GT", + "gas": 3000179, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x651b4aa5", + "0x3e23ee43" + ] + }, + { + "pc": 39, + "op": "PUSH2", + "gas": 3000176, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x0" + ] + }, + { + "pc": 42, + "op": "JUMPI", + "gas": 3000173, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x0", + "0x5b" + ] + }, + { + "pc": 43, + "op": "DUP1", + "gas": 3000163, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5" + ] + }, + { + "pc": 44, + "op": "PUSH4", + "gas": 3000160, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x651b4aa5" + ] + }, + { + "pc": 49, + "op": "EQ", + "gas": 3000157, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x651b4aa5", + "0x3e23ee43" + ] + }, + { + "pc": 50, + "op": "PUSH2", + "gas": 3000154, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x0" + ] + }, + { + "pc": 53, + "op": "JUMPI", + "gas": 3000151, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x0", + "0xd8" + ] + }, + { + "pc": 54, + "op": "DUP1", + "gas": 3000141, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5" + ] + }, + { + "pc": 55, + "op": "PUSH4", + "gas": 3000138, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x651b4aa5" + ] + }, + { + "pc": 60, + "op": "EQ", + "gas": 3000135, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x651b4aa5", + "0x651b4aa5" + ] + }, + { + "pc": 61, + "op": "PUSH2", + "gas": 3000132, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x1" + ] + }, + { + "pc": 64, + "op": "JUMPI", + "gas": 3000129, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x1", + "0xf6" + ] + }, + { + "pc": 246, + "op": "JUMPDEST", + "gas": 3000119, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x651b4aa5" + ] + }, + { + "pc": 247, + "op": "PUSH2", + "gas": 3000118, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5" + ] + }, + { + "pc": 250, + "op": "PUSH1", + "gas": 3000115, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110" + ] + }, + { + "pc": 252, + "op": "DUP1", + "gas": 3000112, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x4" + ] + }, + { + "pc": 253, + "op": "CALLDATASIZE", + "gas": 3000109, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x4", + "0x4" + ] + }, + { + "pc": 254, + "op": "SUB", + "gas": 3000107, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x4", + "0x4", + "0x24" + ] + }, + { + "pc": 255, + "op": "DUP2", + "gas": 3000104, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x4", + "0x20" + ] + }, + { + "pc": 256, + "op": "ADD", + "gas": 3000101, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x4", + "0x20", + "0x4" + ] + }, + { + "pc": 257, + "op": "SWAP1", + "gas": 3000098, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x4", + "0x24" + ] + }, + { + "pc": 258, + "op": "PUSH2", + "gas": 3000095, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x24", + "0x4" + ] + }, + { + "pc": 261, + "op": "SWAP2", + "gas": 3000092, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x24", + "0x4", + "0x10b" + ] + }, + { + "pc": 262, + "op": "SWAP1", + "gas": 3000089, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x10b", + "0x4", + "0x24" + ] + }, + { + "pc": 263, + "op": "PUSH2", + "gas": 3000086, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x10b", + "0x24", + "0x4" + ] + }, + { + "pc": 266, + "op": "JUMP", + "gas": 3000083, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x50c" + ] + }, + { + "pc": 1292, + "op": "JUMPDEST", + "gas": 3000075, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x10b", + "0x24", + "0x4" + ] + }, + { + "pc": 1293, + "op": "PUSH1", + "gas": 3000074, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x10b", + "0x24", + "0x4" + ] + }, + { + "pc": 1295, + "op": "PUSH1", + "gas": 3000071, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 1297, + "op": "DUP3", + "gas": 3000068, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x20" + ] + }, + { + "pc": 1298, + "op": "DUP5", + "gas": 3000065, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x20", + "0x4" + ] + }, + { + "pc": 1299, + "op": "SUB", + "gas": 3000062, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x20", + "0x4", + "0x24" + ] + }, + { + "pc": 1300, + "op": "SLT", + "gas": 3000059, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x20", + "0x20" + ] + }, + { + "pc": 1301, + "op": "ISZERO", + "gas": 3000056, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0" + ] + }, + { + "pc": 1302, + "op": "PUSH2", + "gas": 3000053, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x1" + ] + }, + { + "pc": 1305, + "op": "JUMPI", + "gas": 3000050, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x1", + "0x51e" + ] + }, + { + "pc": 1310, + "op": "JUMPDEST", + "gas": 3000040, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 1311, + "op": "PUSH1", + "gas": 3000039, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 1313, + "op": "PUSH2", + "gas": 3000036, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0" + ] + }, + { + "pc": 1316, + "op": "DUP5", + "gas": 3000033, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c" + ] + }, + { + "pc": 1317, + "op": "DUP3", + "gas": 3000030, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24" + ] + }, + { + "pc": 1318, + "op": "DUP6", + "gas": 3000027, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x0" + ] + }, + { + "pc": 1319, + "op": "ADD", + "gas": 3000024, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x0", + "0x4" + ] + }, + { + "pc": 1320, + "op": "PUSH2", + "gas": 3000021, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4" + ] + }, + { + "pc": 1323, + "op": "JUMP", + "gas": 3000018, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x4f7" + ] + }, + { + "pc": 1271, + "op": "JUMPDEST", + "gas": 3000010, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4" + ] + }, + { + "pc": 1272, + "op": "PUSH1", + "gas": 3000009, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4" + ] + }, + { + "pc": 1274, + "op": "DUP2", + "gas": 3000006, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 1275, + "op": "CALLDATALOAD", + "gas": 3000003, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x0", + "0x4" + ] + }, + { + "pc": 1276, + "op": "SWAP1", + "gas": 3000000, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x0", + "0x64" + ] + }, + { + "pc": 1277, + "op": "POP", + "gas": 2999997, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x64", + "0x0" + ] + }, + { + "pc": 1278, + "op": "PUSH2", + "gas": 2999995, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x64" + ] + }, + { + "pc": 1281, + "op": "DUP2", + "gas": 2999992, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x64", + "0x506" + ] + }, + { + "pc": 1282, + "op": "PUSH2", + "gas": 2999989, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x64", + "0x506", + "0x64" + ] + }, + { + "pc": 1285, + "op": "JUMP", + "gas": 2999986, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x64", + "0x506", + "0x64", + "0x642" + ] + }, + { + "pc": 1602, + "op": "JUMPDEST", + "gas": 2999978, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x64", + "0x506", + "0x64" + ] + }, + { + "pc": 1603, + "op": "PUSH2", + "gas": 2999977, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x64", + "0x506", + "0x64" + ] + }, + { + "pc": 1606, + "op": "DUP2", + "gas": 2999974, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x64", + "0x506", + "0x64", + "0x64b" + ] + }, + { + "pc": 1607, + "op": "PUSH2", + "gas": 2999971, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x64", + "0x506", + "0x64", + "0x64b", + "0x64" + ] + }, + { + "pc": 1610, + "op": "JUMP", + "gas": 2999968, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x64", + "0x506", + "0x64", + "0x64b", + "0x64", + "0x60f" + ] + }, + { + "pc": 1551, + "op": "JUMPDEST", + "gas": 2999960, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x64", + "0x506", + "0x64", + "0x64b", + "0x64" + ] + }, + { + "pc": 1552, + "op": "PUSH1", + "gas": 2999959, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x64", + "0x506", + "0x64", + "0x64b", + "0x64" + ] + }, + { + "pc": 1554, + "op": "DUP2", + "gas": 2999956, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x64", + "0x506", + "0x64", + "0x64b", + "0x64", + "0x0" + ] + }, + { + "pc": 1555, + "op": "SWAP1", + "gas": 2999953, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x64", + "0x506", + "0x64", + "0x64b", + "0x64", + "0x0", + "0x64" + ] + }, + { + "pc": 1556, + "op": "POP", + "gas": 2999950, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x64", + "0x506", + "0x64", + "0x64b", + "0x64", + "0x64", + "0x0" + ] + }, + { + "pc": 1557, + "op": "SWAP2", + "gas": 2999948, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x64", + "0x506", + "0x64", + "0x64b", + "0x64", + "0x64" + ] + }, + { + "pc": 1558, + "op": "SWAP1", + "gas": 2999945, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x64", + "0x506", + "0x64", + "0x64", + "0x64", + "0x64b" + ] + }, + { + "pc": 1559, + "op": "POP", + "gas": 2999942, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x64", + "0x506", + "0x64", + "0x64", + "0x64b", + "0x64" + ] + }, + { + "pc": 1560, + "op": "JUMP", + "gas": 2999940, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x64", + "0x506", + "0x64", + "0x64", + "0x64b" + ] + }, + { + "pc": 1611, + "op": "JUMPDEST", + "gas": 2999932, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x64", + "0x506", + "0x64", + "0x64" + ] + }, + { + "pc": 1612, + "op": "DUP2", + "gas": 2999931, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x64", + "0x506", + "0x64", + "0x64" + ] + }, + { + "pc": 1613, + "op": "EQ", + "gas": 2999928, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x64", + "0x506", + "0x64", + "0x64", + "0x64" + ] + }, + { + "pc": 1614, + "op": "PUSH2", + "gas": 2999925, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x64", + "0x506", + "0x64", + "0x1" + ] + }, + { + "pc": 1617, + "op": "JUMPI", + "gas": 2999922, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x64", + "0x506", + "0x64", + "0x1", + "0x656" + ] + }, + { + "pc": 1622, + "op": "JUMPDEST", + "gas": 2999912, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x64", + "0x506", + "0x64" + ] + }, + { + "pc": 1623, + "op": "POP", + "gas": 2999911, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x64", + "0x506", + "0x64" + ] + }, + { + "pc": 1624, + "op": "JUMP", + "gas": 2999909, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x64", + "0x506" + ] + }, + { + "pc": 1286, + "op": "JUMPDEST", + "gas": 2999901, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x64" + ] + }, + { + "pc": 1287, + "op": "SWAP3", + "gas": 2999900, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x52c", + "0x24", + "0x4", + "0x64" + ] + }, + { + "pc": 1288, + "op": "SWAP2", + "gas": 2999897, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x64", + "0x24", + "0x4", + "0x52c" + ] + }, + { + "pc": 1289, + "op": "POP", + "gas": 2999894, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x64", + "0x52c", + "0x4", + "0x24" + ] + }, + { + "pc": 1290, + "op": "POP", + "gas": 2999892, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x64", + "0x52c", + "0x4" + ] + }, + { + "pc": 1291, + "op": "JUMP", + "gas": 2999890, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x64", + "0x52c" + ] + }, + { + "pc": 1324, + "op": "JUMPDEST", + "gas": 2999882, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x64" + ] + }, + { + "pc": 1325, + "op": "SWAP2", + "gas": 2999881, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x0", + "0x0", + "0x64" + ] + }, + { + "pc": 1326, + "op": "POP", + "gas": 2999878, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x64", + "0x0", + "0x0" + ] + }, + { + "pc": 1327, + "op": "POP", + "gas": 2999876, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x64", + "0x0" + ] + }, + { + "pc": 1328, + "op": "SWAP3", + "gas": 2999874, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x10b", + "0x24", + "0x4", + "0x64" + ] + }, + { + "pc": 1329, + "op": "SWAP2", + "gas": 2999871, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x64", + "0x24", + "0x4", + "0x10b" + ] + }, + { + "pc": 1330, + "op": "POP", + "gas": 2999868, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x64", + "0x10b", + "0x4", + "0x24" + ] + }, + { + "pc": 1331, + "op": "POP", + "gas": 2999866, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x64", + "0x10b", + "0x4" + ] + }, + { + "pc": 1332, + "op": "JUMP", + "gas": 2999864, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x64", + "0x10b" + ] + }, + { + "pc": 267, + "op": "JUMPDEST", + "gas": 2999856, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x64" + ] + }, + { + "pc": 268, + "op": "PUSH2", + "gas": 2999855, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x64" + ] + }, + { + "pc": 271, + "op": "JUMP", + "gas": 2999852, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x64", + "0x2ec" + ] + }, + { + "pc": 748, + "op": "JUMPDEST", + "gas": 2999844, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x64" + ] + }, + { + "pc": 749, + "op": "PUSH1", + "gas": 2999843, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x64" + ] + }, + { + "pc": 751, + "op": "DUP1", + "gas": 2999840, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x64", + "0x0" + ] + }, + { + "pc": 752, + "op": "PUSH1", + "gas": 2999837, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x64", + "0x0", + "0x0" + ] + }, + { + "pc": 754, + "op": "SWAP1", + "gas": 2999834, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x64", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 755, + "op": "SLOAD", + "gas": 2999831, + "gasCost": 2100, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x64", + "0x0", + "0x0", + "0x0" + ], + "storage": { + "0x0000000000000000000000000000000000000000000000000000000000000000": "0x00000000000000000000000038e2a9dd844d6726ad18033891d515fd82d686ae" + }, + "extraData": { + "proofList": [ + { + "address": "0xedd6a1a065b9f64183bcc9d1707b4f7ff74e1474", + "nonce": 1, + "balance": "0x0", + "codeHash": "0xb9d4b0986ed041aeabd02a4835a1aafba231e0cec363b861c5cefb234b5c550a", + "storage": { + "key": "0x0000000000000000000000000000000000000000000000000000000000000000", + "value": "0x00000000000000000000000038e2a9dd844d6726ad18033891d515fd82d686ae" + } + } + ] + } + }, + { + "pc": 756, + "op": "SWAP1", + "gas": 2997731, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x64", + "0x0", + "0x0", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae" + ] + }, + { + "pc": 757, + "op": "PUSH2", + "gas": 2997728, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x64", + "0x0", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x0" + ] + }, + { + "pc": 760, + "op": "EXP", + "gas": 2997725, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x64", + "0x0", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x0", + "0x100" + ] + }, + { + "pc": 761, + "op": "SWAP1", + "gas": 2997715, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x64", + "0x0", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x1" + ] + }, + { + "pc": 762, + "op": "DIV", + "gas": 2997712, + "gasCost": 5, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x64", + "0x0", + "0x1", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae" + ] + }, + { + "pc": 763, + "op": "PUSH20", + "gas": 2997707, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x64", + "0x0", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae" + ] + }, + { + "pc": 784, + "op": "AND", + "gas": 2997704, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x64", + "0x0", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 785, + "op": "SWAP1", + "gas": 2997701, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x64", + "0x0", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae" + ] + }, + { + "pc": 786, + "op": "POP", + "gas": 2997698, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x64", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x0" + ] + }, + { + "pc": 787, + "op": "DUP1", + "gas": 2997696, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x64", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae" + ] + }, + { + "pc": 788, + "op": "PUSH20", + "gas": 2997693, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x64", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae" + ] + }, + { + "pc": 809, + "op": "AND", + "gas": 2997690, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x64", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 810, + "op": "PUSH4", + "gas": 2997687, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x64", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae" + ] + }, + { + "pc": 815, + "op": "DUP4", + "gas": 2997684, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x64", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x21848c46" + ] + }, + { + "pc": 816, + "op": "PUSH1", + "gas": 2997681, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x64", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x21848c46", + "0x64" + ] + }, + { + "pc": 818, + "op": "MLOAD", + "gas": 2997678, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x64", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x21848c46", + "0x64", + "0x40" + ] + }, + { + "pc": 819, + "op": "DUP3", + "gas": 2997675, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x64", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x21848c46", + "0x64", + "0x80" + ] + }, + { + "pc": 820, + "op": "PUSH4", + "gas": 2997672, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x64", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x21848c46", + "0x64", + "0x80", + "0x21848c46" + ] + }, + { + "pc": 825, + "op": "AND", + "gas": 2997669, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x64", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x21848c46", + "0x64", + "0x80", + "0x21848c46", + "0xffffffff" + ] + }, + { + "pc": 826, + "op": "PUSH1", + "gas": 2997666, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x64", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x21848c46", + "0x64", + "0x80", + "0x21848c46" + ] + }, + { + "pc": 828, + "op": "SHL", + "gas": 2997663, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x64", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x21848c46", + "0x64", + "0x80", + "0x21848c46", + "0xe0" + ] + }, + { + "pc": 829, + "op": "DUP2", + "gas": 2997660, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x64", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x21848c46", + "0x64", + "0x80", + "0x21848c4600000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 830, + "op": "MSTORE", + "gas": 2997657, + "gasCost": 9, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x64", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x21848c46", + "0x64", + "0x80", + "0x21848c4600000000000000000000000000000000000000000000000000000000", + "0x80" + ] + }, + { + "pc": 831, + "op": "PUSH1", + "gas": 2997648, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x64", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x21848c46", + "0x64", + "0x80" + ] + }, + { + "pc": 833, + "op": "ADD", + "gas": 2997645, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x64", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x21848c46", + "0x64", + "0x80", + "0x4" + ] + }, + { + "pc": 834, + "op": "PUSH2", + "gas": 2997642, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x64", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x21848c46", + "0x64", + "0x84" + ] + }, + { + "pc": 837, + "op": "SWAP2", + "gas": 2997639, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x64", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x21848c46", + "0x64", + "0x84", + "0x34b" + ] + }, + { + "pc": 838, + "op": "SWAP1", + "gas": 2997636, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x64", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x21848c46", + "0x34b", + "0x84", + "0x64" + ] + }, + { + "pc": 839, + "op": "PUSH2", + "gas": 2997633, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x64", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x21848c46", + "0x34b", + "0x64", + "0x84" + ] + }, + { + "pc": 842, + "op": "JUMP", + "gas": 2997630, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x64", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x21848c46", + "0x34b", + "0x64", + "0x84", + "0x5b1" + ] + }, + { + "pc": 1457, + "op": "JUMPDEST", + "gas": 2997622, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x64", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x21848c46", + "0x34b", + "0x64", + "0x84" + ] + }, + { + "pc": 1458, + "op": "PUSH1", + "gas": 2997621, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x64", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x21848c46", + "0x34b", + "0x64", + "0x84" + ] + }, + { + "pc": 1460, + "op": "PUSH1", + "gas": 2997618, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x64", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x21848c46", + "0x34b", + "0x64", + "0x84", + "0x0" + ] + }, + { + "pc": 1462, + "op": "DUP3", + "gas": 2997615, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x64", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x21848c46", + "0x34b", + "0x64", + "0x84", + "0x0", + "0x20" + ] + }, + { + "pc": 1463, + "op": "ADD", + "gas": 2997612, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x64", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x21848c46", + "0x34b", + "0x64", + "0x84", + "0x0", + "0x20", + "0x84" + ] + }, + { + "pc": 1464, + "op": "SWAP1", + "gas": 2997609, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x64", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x21848c46", + "0x34b", + "0x64", + "0x84", + "0x0", + "0xa4" + ] + }, + { + "pc": 1465, + "op": "POP", + "gas": 2997606, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x64", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x21848c46", + "0x34b", + "0x64", + "0x84", + "0xa4", + "0x0" + ] + }, + { + "pc": 1466, + "op": "PUSH2", + "gas": 2997604, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x64", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x21848c46", + "0x34b", + "0x64", + "0x84", + "0xa4" + ] + }, + { + "pc": 1469, + "op": "PUSH1", + "gas": 2997601, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x64", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x21848c46", + "0x34b", + "0x64", + "0x84", + "0xa4", + "0x5c6" + ] + }, + { + "pc": 1471, + "op": "DUP4", + "gas": 2997598, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x64", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x21848c46", + "0x34b", + "0x64", + "0x84", + "0xa4", + "0x5c6", + "0x0" + ] + }, + { + "pc": 1472, + "op": "ADD", + "gas": 2997595, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x64", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x21848c46", + "0x34b", + "0x64", + "0x84", + "0xa4", + "0x5c6", + "0x0", + "0x84" + ] + }, + { + "pc": 1473, + "op": "DUP5", + "gas": 2997592, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x64", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x21848c46", + "0x34b", + "0x64", + "0x84", + "0xa4", + "0x5c6", + "0x84" + ] + }, + { + "pc": 1474, + "op": "PUSH2", + "gas": 2997589, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x64", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x21848c46", + "0x34b", + "0x64", + "0x84", + "0xa4", + "0x5c6", + "0x84", + "0x64" + ] + }, + { + "pc": 1477, + "op": "JUMP", + "gas": 2997586, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x64", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x21848c46", + "0x34b", + "0x64", + "0x84", + "0xa4", + "0x5c6", + "0x84", + "0x64", + "0x567" + ] + }, + { + "pc": 1383, + "op": "JUMPDEST", + "gas": 2997578, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x64", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x21848c46", + "0x34b", + "0x64", + "0x84", + "0xa4", + "0x5c6", + "0x84", + "0x64" + ] + }, + { + "pc": 1384, + "op": "PUSH2", + "gas": 2997577, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x64", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x21848c46", + "0x34b", + "0x64", + "0x84", + "0xa4", + "0x5c6", + "0x84", + "0x64" + ] + }, + { + "pc": 1387, + "op": "DUP2", + "gas": 2997574, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x64", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x21848c46", + "0x34b", + "0x64", + "0x84", + "0xa4", + "0x5c6", + "0x84", + "0x64", + "0x570" + ] + }, + { + "pc": 1388, + "op": "PUSH2", + "gas": 2997571, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x64", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x21848c46", + "0x34b", + "0x64", + "0x84", + "0xa4", + "0x5c6", + "0x84", + "0x64", + "0x570", + "0x64" + ] + }, + { + "pc": 1391, + "op": "JUMP", + "gas": 2997568, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x64", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x21848c46", + "0x34b", + "0x64", + "0x84", + "0xa4", + "0x5c6", + "0x84", + "0x64", + "0x570", + "0x64", + "0x60f" + ] + }, + { + "pc": 1551, + "op": "JUMPDEST", + "gas": 2997560, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x64", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x21848c46", + "0x34b", + "0x64", + "0x84", + "0xa4", + "0x5c6", + "0x84", + "0x64", + "0x570", + "0x64" + ] + }, + { + "pc": 1552, + "op": "PUSH1", + "gas": 2997559, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x64", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x21848c46", + "0x34b", + "0x64", + "0x84", + "0xa4", + "0x5c6", + "0x84", + "0x64", + "0x570", + "0x64" + ] + }, + { + "pc": 1554, + "op": "DUP2", + "gas": 2997556, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x64", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x21848c46", + "0x34b", + "0x64", + "0x84", + "0xa4", + "0x5c6", + "0x84", + "0x64", + "0x570", + "0x64", + "0x0" + ] + }, + { + "pc": 1555, + "op": "SWAP1", + "gas": 2997553, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x64", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x21848c46", + "0x34b", + "0x64", + "0x84", + "0xa4", + "0x5c6", + "0x84", + "0x64", + "0x570", + "0x64", + "0x0", + "0x64" + ] + }, + { + "pc": 1556, + "op": "POP", + "gas": 2997550, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x64", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x21848c46", + "0x34b", + "0x64", + "0x84", + "0xa4", + "0x5c6", + "0x84", + "0x64", + "0x570", + "0x64", + "0x64", + "0x0" + ] + }, + { + "pc": 1557, + "op": "SWAP2", + "gas": 2997548, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x64", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x21848c46", + "0x34b", + "0x64", + "0x84", + "0xa4", + "0x5c6", + "0x84", + "0x64", + "0x570", + "0x64", + "0x64" + ] + }, + { + "pc": 1558, + "op": "SWAP1", + "gas": 2997545, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x64", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x21848c46", + "0x34b", + "0x64", + "0x84", + "0xa4", + "0x5c6", + "0x84", + "0x64", + "0x64", + "0x64", + "0x570" + ] + }, + { + "pc": 1559, + "op": "POP", + "gas": 2997542, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x64", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x21848c46", + "0x34b", + "0x64", + "0x84", + "0xa4", + "0x5c6", + "0x84", + "0x64", + "0x64", + "0x570", + "0x64" + ] + }, + { + "pc": 1560, + "op": "JUMP", + "gas": 2997540, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x64", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x21848c46", + "0x34b", + "0x64", + "0x84", + "0xa4", + "0x5c6", + "0x84", + "0x64", + "0x64", + "0x570" + ] + }, + { + "pc": 1392, + "op": "JUMPDEST", + "gas": 2997532, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x64", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x21848c46", + "0x34b", + "0x64", + "0x84", + "0xa4", + "0x5c6", + "0x84", + "0x64", + "0x64" + ] + }, + { + "pc": 1393, + "op": "DUP3", + "gas": 2997531, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x64", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x21848c46", + "0x34b", + "0x64", + "0x84", + "0xa4", + "0x5c6", + "0x84", + "0x64", + "0x64" + ] + }, + { + "pc": 1394, + "op": "MSTORE", + "gas": 2997528, + "gasCost": 6, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x64", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x21848c46", + "0x34b", + "0x64", + "0x84", + "0xa4", + "0x5c6", + "0x84", + "0x64", + "0x64", + "0x84" + ] + }, + { + "pc": 1395, + "op": "POP", + "gas": 2997522, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x64", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x21848c46", + "0x34b", + "0x64", + "0x84", + "0xa4", + "0x5c6", + "0x84", + "0x64" + ] + }, + { + "pc": 1396, + "op": "POP", + "gas": 2997520, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x64", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x21848c46", + "0x34b", + "0x64", + "0x84", + "0xa4", + "0x5c6", + "0x84" + ] + }, + { + "pc": 1397, + "op": "JUMP", + "gas": 2997518, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x64", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x21848c46", + "0x34b", + "0x64", + "0x84", + "0xa4", + "0x5c6" + ] + }, + { + "pc": 1478, + "op": "JUMPDEST", + "gas": 2997510, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x64", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x21848c46", + "0x34b", + "0x64", + "0x84", + "0xa4" + ] + }, + { + "pc": 1479, + "op": "SWAP3", + "gas": 2997509, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x64", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x21848c46", + "0x34b", + "0x64", + "0x84", + "0xa4" + ] + }, + { + "pc": 1480, + "op": "SWAP2", + "gas": 2997506, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x64", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x21848c46", + "0xa4", + "0x64", + "0x84", + "0x34b" + ] + }, + { + "pc": 1481, + "op": "POP", + "gas": 2997503, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x64", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x21848c46", + "0xa4", + "0x34b", + "0x84", + "0x64" + ] + }, + { + "pc": 1482, + "op": "POP", + "gas": 2997501, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x64", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x21848c46", + "0xa4", + "0x34b", + "0x84" + ] + }, + { + "pc": 1483, + "op": "JUMP", + "gas": 2997499, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x64", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x21848c46", + "0xa4", + "0x34b" + ] + }, + { + "pc": 843, + "op": "JUMPDEST", + "gas": 2997491, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x64", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x21848c46", + "0xa4" + ] + }, + { + "pc": 844, + "op": "PUSH1", + "gas": 2997490, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x64", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x21848c46", + "0xa4" + ] + }, + { + "pc": 846, + "op": "PUSH1", + "gas": 2997487, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x64", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x21848c46", + "0xa4", + "0x0" + ] + }, + { + "pc": 848, + "op": "MLOAD", + "gas": 2997484, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x64", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x21848c46", + "0xa4", + "0x0", + "0x40" + ] + }, + { + "pc": 849, + "op": "DUP1", + "gas": 2997481, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x64", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x21848c46", + "0xa4", + "0x0", + "0x80" + ] + }, + { + "pc": 850, + "op": "DUP4", + "gas": 2997478, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x64", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x21848c46", + "0xa4", + "0x0", + "0x80", + "0x80" + ] + }, + { + "pc": 851, + "op": "SUB", + "gas": 2997475, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x64", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x21848c46", + "0xa4", + "0x0", + "0x80", + "0x80", + "0xa4" + ] + }, + { + "pc": 852, + "op": "DUP2", + "gas": 2997472, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x64", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x21848c46", + "0xa4", + "0x0", + "0x80", + "0x24" + ] + }, + { + "pc": 853, + "op": "PUSH1", + "gas": 2997469, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x64", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x21848c46", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80" + ] + }, + { + "pc": 855, + "op": "DUP8", + "gas": 2997466, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x64", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x21848c46", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0" + ] + }, + { + "pc": 856, + "op": "DUP1", + "gas": 2997463, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x64", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x21848c46", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae" + ] + }, + { + "pc": 857, + "op": "EXTCODESIZE", + "gas": 2997460, + "gasCost": 2600, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x64", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x21848c46", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae" + ], + "extraData": { + "codeList": [ + "0x608060405234801561001057600080fd5b506004361061004c5760003560e01c806321848c46146100515780633e23ee431461006d578063b0f2b72a1461008b578063ed231420146100a7575b600080fd5b61006b6004803603810190610066919061038a565b6100c3565b005b61007561015b565b604051610082919061040a565b60405180910390f35b6100a560048036038101906100a0919061038a565b610184565b005b6100c160048036038101906100bc919061038a565b610219565b005b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff166321848c46836040518263ffffffff1660e01b81526004016101229190610447565b600060405180830381600087803b15801561013c57600080fd5b505af192505050801561014d575060015b61015657610157565b5b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663b0f2b72a836040518263ffffffff1660e01b81526004016101e39190610447565b600060405180830381600087803b1580156101fd57600080fd5b505af1158015610211573d6000803e3d6000fd5b505050505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663e5223f886064846040518363ffffffff1660e01b815260040161027a9190610447565b6000604051808303818588803b15801561029357600080fd5b505af1935050505080156102a5575060015b6102ae576102af565b5b5050565b610349816040516024016102c79190610425565b6040516020818303038152906040527f41304fac000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff838183161783525050505061034c565b50565b60008151905060006a636f6e736f6c652e6c6f679050602083016000808483855afa5050505050565b600081359050610384816104fe565b92915050565b60006020828403121561039c57600080fd5b60006103aa84828501610375565b91505092915050565b6103bc8161047e565b82525050565b60006103cd82610462565b6103d7818561046d565b93506103e78185602086016104ba565b6103f0816104ed565b840191505092915050565b610404816104b0565b82525050565b600060208201905061041f60008301846103b3565b92915050565b6000602082019050818103600083015261043f81846103c2565b905092915050565b600060208201905061045c60008301846103fb565b92915050565b600081519050919050565b600082825260208201905092915050565b600061048982610490565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b838110156104d85780820151818401526020810190506104bd565b838111156104e7576000848401525b50505050565b6000601f19601f8301169050919050565b610507816104b0565b811461051257600080fd5b5056fea2646970667358221220a5f0bcdcfd8ef0453bdb144c2c393aca02a19101f749ffe4ebed2e48ed6c55d764736f6c63430008040033" + ] + } + }, + { + "pc": 858, + "op": "ISZERO", + "gas": 2994860, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x64", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x21848c46", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x54b" + ] + }, + { + "pc": 859, + "op": "DUP1", + "gas": 2994857, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x64", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x21848c46", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x0" + ] + }, + { + "pc": 860, + "op": "ISZERO", + "gas": 2994854, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x64", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x21848c46", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x0", + "0x0" + ] + }, + { + "pc": 861, + "op": "PUSH2", + "gas": 2994851, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x64", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x21848c46", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x0", + "0x1" + ] + }, + { + "pc": 864, + "op": "JUMPI", + "gas": 2994848, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x64", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x21848c46", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x0", + "0x1", + "0x365" + ] + }, + { + "pc": 869, + "op": "JUMPDEST", + "gas": 2994838, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x64", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x21848c46", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x0" + ] + }, + { + "pc": 870, + "op": "POP", + "gas": 2994837, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x64", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x21848c46", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x0" + ] + }, + { + "pc": 871, + "op": "GAS", + "gas": 2994835, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x64", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x21848c46", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae" + ] + }, + { + "pc": 872, + "op": "CALL", + "gas": 2994833, + "gasCost": 2948041, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x64", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x21848c46", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x2db291" + ], + "extraData": { + "codeList": [ + "0x608060405234801561001057600080fd5b506004361061007d5760003560e01c80633e23ee431161005b5780633e23ee43146100d8578063651b4aa5146100f6578063a0a4868814610112578063cb4ec52e1461012e5761007d565b8063127017e114610082578063200d2ed21461009e57806336864b1b146100bc575b600080fd5b61009c6004803603810190610097919061050c565b61014a565b005b6100a66101e6565b6040516100b391906105b1565b60405180910390f35b6100d660048036038101906100d1919061050c565b6101f0565b005b6100e06102c3565b6040516100ed9190610576565b60405180910390f35b610110600480360381019061010b919061050c565b6102ec565b005b61012c6004803603810190610127919061050c565b610388565b005b6101486004803603810190610143919061050c565b61045b565b005b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663ed231420836040518263ffffffff1660e01b81526004016101a991906105b1565b600060405180830381600087803b1580156101c357600080fd5b505af11580156101d7573d6000803e3d6000fd5b50505050816001819055505050565b6000600154905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663b0f2b72a836040518263ffffffff1660e01b815260040161024f91906105b1565b600060405180830381600087803b15801561026957600080fd5b505af115801561027d573d6000803e3d6000fd5b50505050816001819055506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016102ba90610591565b60405180910390fd5b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff166321848c46836040518263ffffffff1660e01b815260040161034b91906105b1565b600060405180830381600087803b15801561036557600080fd5b505af1158015610379573d6000803e3d6000fd5b50505050816001819055505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663b0f2b72a836040518263ffffffff1660e01b81526004016103e791906105b1565b600060405180830381600087803b15801561040157600080fd5b505af1158015610415573d6000803e3d6000fd5b50505050816001819055506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161045290610591565b60405180910390fd5b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663b0f2b72a836040518263ffffffff1660e01b81526004016104ba91906105b1565b600060405180830381600087803b1580156104d457600080fd5b505af11580156104e8573d6000803e3d6000fd5b50505050816001819055505050565b60008135905061050681610642565b92915050565b60006020828403121561051e57600080fd5b600061052c848285016104f7565b91505092915050565b61053e816105dd565b82525050565b6000610551600c836105cc565b915061055c82610619565b602082019050919050565b6105708161060f565b82525050565b600060208201905061058b6000830184610535565b92915050565b600060208201905081810360008301526105aa81610544565b9050919050565b60006020820190506105c66000830184610567565b92915050565b600082825260208201905092915050565b60006105e8826105ef565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b7f64656c696265726174656c790000000000000000000000000000000000000000600082015250565b61064b8161060f565b811461065657600080fd5b5056fea2646970667358221220febbf3dd0054f94c7763ec197ee815d446b5cee0c49696a0c0c09a7e3d04617364736f6c63430008040033", + "0x608060405234801561001057600080fd5b506004361061004c5760003560e01c806321848c46146100515780633e23ee431461006d578063b0f2b72a1461008b578063ed231420146100a7575b600080fd5b61006b6004803603810190610066919061038a565b6100c3565b005b61007561015b565b604051610082919061040a565b60405180910390f35b6100a560048036038101906100a0919061038a565b610184565b005b6100c160048036038101906100bc919061038a565b610219565b005b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff166321848c46836040518263ffffffff1660e01b81526004016101229190610447565b600060405180830381600087803b15801561013c57600080fd5b505af192505050801561014d575060015b61015657610157565b5b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663b0f2b72a836040518263ffffffff1660e01b81526004016101e39190610447565b600060405180830381600087803b1580156101fd57600080fd5b505af1158015610211573d6000803e3d6000fd5b505050505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663e5223f886064846040518363ffffffff1660e01b815260040161027a9190610447565b6000604051808303818588803b15801561029357600080fd5b505af1935050505080156102a5575060015b6102ae576102af565b5b5050565b610349816040516024016102c79190610425565b6040516020818303038152906040527f41304fac000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff838183161783525050505061034c565b50565b60008151905060006a636f6e736f6c652e6c6f679050602083016000808483855afa5050505050565b600081359050610384816104fe565b92915050565b60006020828403121561039c57600080fd5b60006103aa84828501610375565b91505092915050565b6103bc8161047e565b82525050565b60006103cd82610462565b6103d7818561046d565b93506103e78185602086016104ba565b6103f0816104ed565b840191505092915050565b610404816104b0565b82525050565b600060208201905061041f60008301846103b3565b92915050565b6000602082019050818103600083015261043f81846103c2565b905092915050565b600060208201905061045c60008301846103fb565b92915050565b600081519050919050565b600082825260208201905092915050565b600061048982610490565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b838110156104d85780820151818401526020810190506104bd565b838111156104e7576000848401525b50505050565b6000601f19601f8301169050919050565b610507816104b0565b811461051257600080fd5b5056fea2646970667358221220a5f0bcdcfd8ef0453bdb144c2c393aca02a19101f749ffe4ebed2e48ed6c55d764736f6c63430008040033" + ], + "proofList": [ + { + "address": "0xedd6a1a065b9f64183bcc9d1707b4f7ff74e1474", + "nonce": 1, + "balance": "0x0", + "codeHash": "0xb9d4b0986ed041aeabd02a4835a1aafba231e0cec363b861c5cefb234b5c550a" + }, + { + "address": "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "nonce": 1, + "balance": "0x0", + "codeHash": "0xbf159056a3a2ad6cf0a060213d688d7ab0de676645a7c8f7d2ad3e2e6107469e" + }, + { + "address": "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "nonce": 1, + "balance": "0x0", + "codeHash": "0xbf159056a3a2ad6cf0a060213d688d7ab0de676645a7c8f7d2ad3e2e6107469e" + } + ] + } + }, + { + "pc": 0, + "op": "PUSH1", + "gas": 2947941, + "gasCost": 3, + "depth": 2 + }, + { + "pc": 2, + "op": "PUSH1", + "gas": 2947938, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x80" + ] + }, + { + "pc": 4, + "op": "MSTORE", + "gas": 2947935, + "gasCost": 12, + "depth": 2, + "stack": [ + "0x80", + "0x40" + ] + }, + { + "pc": 5, + "op": "CALLVALUE", + "gas": 2947923, + "gasCost": 2, + "depth": 2 + }, + { + "pc": 6, + "op": "DUP1", + "gas": 2947921, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x0" + ] + }, + { + "pc": 7, + "op": "ISZERO", + "gas": 2947918, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x0", + "0x0" + ] + }, + { + "pc": 8, + "op": "PUSH2", + "gas": 2947915, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x0", + "0x1" + ] + }, + { + "pc": 11, + "op": "JUMPI", + "gas": 2947912, + "gasCost": 10, + "depth": 2, + "stack": [ + "0x0", + "0x1", + "0x10" + ] + }, + { + "pc": 16, + "op": "JUMPDEST", + "gas": 2947902, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x0" + ] + }, + { + "pc": 17, + "op": "POP", + "gas": 2947901, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x0" + ] + }, + { + "pc": 18, + "op": "PUSH1", + "gas": 2947899, + "gasCost": 3, + "depth": 2 + }, + { + "pc": 20, + "op": "CALLDATASIZE", + "gas": 2947896, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x4" + ] + }, + { + "pc": 21, + "op": "LT", + "gas": 2947894, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x4", + "0x24" + ] + }, + { + "pc": 22, + "op": "PUSH2", + "gas": 2947891, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x0" + ] + }, + { + "pc": 25, + "op": "JUMPI", + "gas": 2947888, + "gasCost": 10, + "depth": 2, + "stack": [ + "0x0", + "0x4c" + ] + }, + { + "pc": 26, + "op": "PUSH1", + "gas": 2947878, + "gasCost": 3, + "depth": 2 + }, + { + "pc": 28, + "op": "CALLDATALOAD", + "gas": 2947875, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x0" + ] + }, + { + "pc": 29, + "op": "PUSH1", + "gas": 2947872, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c4600000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 31, + "op": "SHR", + "gas": 2947869, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c4600000000000000000000000000000000000000000000000000000000", + "0xe0" + ] + }, + { + "pc": 32, + "op": "DUP1", + "gas": 2947866, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46" + ] + }, + { + "pc": 33, + "op": "PUSH4", + "gas": 2947863, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x21848c46" + ] + }, + { + "pc": 38, + "op": "EQ", + "gas": 2947860, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x21848c46", + "0x21848c46" + ] + }, + { + "pc": 39, + "op": "PUSH2", + "gas": 2947857, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x1" + ] + }, + { + "pc": 42, + "op": "JUMPI", + "gas": 2947854, + "gasCost": 10, + "depth": 2, + "stack": [ + "0x21848c46", + "0x1", + "0x51" + ] + }, + { + "pc": 81, + "op": "JUMPDEST", + "gas": 2947844, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x21848c46" + ] + }, + { + "pc": 82, + "op": "PUSH2", + "gas": 2947843, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46" + ] + }, + { + "pc": 85, + "op": "PUSH1", + "gas": 2947840, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b" + ] + }, + { + "pc": 87, + "op": "DUP1", + "gas": 2947837, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x4" + ] + }, + { + "pc": 88, + "op": "CALLDATASIZE", + "gas": 2947834, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x4", + "0x4" + ] + }, + { + "pc": 89, + "op": "SUB", + "gas": 2947832, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x4", + "0x4", + "0x24" + ] + }, + { + "pc": 90, + "op": "DUP2", + "gas": 2947829, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x4", + "0x20" + ] + }, + { + "pc": 91, + "op": "ADD", + "gas": 2947826, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x4", + "0x20", + "0x4" + ] + }, + { + "pc": 92, + "op": "SWAP1", + "gas": 2947823, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x4", + "0x24" + ] + }, + { + "pc": 93, + "op": "PUSH2", + "gas": 2947820, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x24", + "0x4" + ] + }, + { + "pc": 96, + "op": "SWAP2", + "gas": 2947817, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x24", + "0x4", + "0x66" + ] + }, + { + "pc": 97, + "op": "SWAP1", + "gas": 2947814, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x4", + "0x24" + ] + }, + { + "pc": 98, + "op": "PUSH2", + "gas": 2947811, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4" + ] + }, + { + "pc": 101, + "op": "JUMP", + "gas": 2947808, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x38a" + ] + }, + { + "pc": 906, + "op": "JUMPDEST", + "gas": 2947800, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4" + ] + }, + { + "pc": 907, + "op": "PUSH1", + "gas": 2947799, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4" + ] + }, + { + "pc": 909, + "op": "PUSH1", + "gas": 2947796, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 911, + "op": "DUP3", + "gas": 2947793, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x20" + ] + }, + { + "pc": 912, + "op": "DUP5", + "gas": 2947790, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x20", + "0x4" + ] + }, + { + "pc": 913, + "op": "SUB", + "gas": 2947787, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x20", + "0x4", + "0x24" + ] + }, + { + "pc": 914, + "op": "SLT", + "gas": 2947784, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x20", + "0x20" + ] + }, + { + "pc": 915, + "op": "ISZERO", + "gas": 2947781, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0" + ] + }, + { + "pc": 916, + "op": "PUSH2", + "gas": 2947778, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x1" + ] + }, + { + "pc": 919, + "op": "JUMPI", + "gas": 2947775, + "gasCost": 10, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x1", + "0x39c" + ] + }, + { + "pc": 924, + "op": "JUMPDEST", + "gas": 2947765, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 925, + "op": "PUSH1", + "gas": 2947764, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 927, + "op": "PUSH2", + "gas": 2947761, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0" + ] + }, + { + "pc": 930, + "op": "DUP5", + "gas": 2947758, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa" + ] + }, + { + "pc": 931, + "op": "DUP3", + "gas": 2947755, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24" + ] + }, + { + "pc": 932, + "op": "DUP6", + "gas": 2947752, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x0" + ] + }, + { + "pc": 933, + "op": "ADD", + "gas": 2947749, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x0", + "0x4" + ] + }, + { + "pc": 934, + "op": "PUSH2", + "gas": 2947746, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4" + ] + }, + { + "pc": 937, + "op": "JUMP", + "gas": 2947743, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x375" + ] + }, + { + "pc": 885, + "op": "JUMPDEST", + "gas": 2947735, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4" + ] + }, + { + "pc": 886, + "op": "PUSH1", + "gas": 2947734, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4" + ] + }, + { + "pc": 888, + "op": "DUP2", + "gas": 2947731, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 889, + "op": "CALLDATALOAD", + "gas": 2947728, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x0", + "0x4" + ] + }, + { + "pc": 890, + "op": "SWAP1", + "gas": 2947725, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x0", + "0x64" + ] + }, + { + "pc": 891, + "op": "POP", + "gas": 2947722, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x64", + "0x0" + ] + }, + { + "pc": 892, + "op": "PUSH2", + "gas": 2947720, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x64" + ] + }, + { + "pc": 895, + "op": "DUP2", + "gas": 2947717, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x64", + "0x384" + ] + }, + { + "pc": 896, + "op": "PUSH2", + "gas": 2947714, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x64", + "0x384", + "0x64" + ] + }, + { + "pc": 899, + "op": "JUMP", + "gas": 2947711, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x64", + "0x384", + "0x64", + "0x4fe" + ] + }, + { + "pc": 1278, + "op": "JUMPDEST", + "gas": 2947703, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x64", + "0x384", + "0x64" + ] + }, + { + "pc": 1279, + "op": "PUSH2", + "gas": 2947702, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x64", + "0x384", + "0x64" + ] + }, + { + "pc": 1282, + "op": "DUP2", + "gas": 2947699, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x64", + "0x384", + "0x64", + "0x507" + ] + }, + { + "pc": 1283, + "op": "PUSH2", + "gas": 2947696, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x64", + "0x384", + "0x64", + "0x507", + "0x64" + ] + }, + { + "pc": 1286, + "op": "JUMP", + "gas": 2947693, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x64", + "0x384", + "0x64", + "0x507", + "0x64", + "0x4b0" + ] + }, + { + "pc": 1200, + "op": "JUMPDEST", + "gas": 2947685, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x64", + "0x384", + "0x64", + "0x507", + "0x64" + ] + }, + { + "pc": 1201, + "op": "PUSH1", + "gas": 2947684, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x64", + "0x384", + "0x64", + "0x507", + "0x64" + ] + }, + { + "pc": 1203, + "op": "DUP2", + "gas": 2947681, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x64", + "0x384", + "0x64", + "0x507", + "0x64", + "0x0" + ] + }, + { + "pc": 1204, + "op": "SWAP1", + "gas": 2947678, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x64", + "0x384", + "0x64", + "0x507", + "0x64", + "0x0", + "0x64" + ] + }, + { + "pc": 1205, + "op": "POP", + "gas": 2947675, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x64", + "0x384", + "0x64", + "0x507", + "0x64", + "0x64", + "0x0" + ] + }, + { + "pc": 1206, + "op": "SWAP2", + "gas": 2947673, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x64", + "0x384", + "0x64", + "0x507", + "0x64", + "0x64" + ] + }, + { + "pc": 1207, + "op": "SWAP1", + "gas": 2947670, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x64", + "0x384", + "0x64", + "0x64", + "0x64", + "0x507" + ] + }, + { + "pc": 1208, + "op": "POP", + "gas": 2947667, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x64", + "0x384", + "0x64", + "0x64", + "0x507", + "0x64" + ] + }, + { + "pc": 1209, + "op": "JUMP", + "gas": 2947665, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x64", + "0x384", + "0x64", + "0x64", + "0x507" + ] + }, + { + "pc": 1287, + "op": "JUMPDEST", + "gas": 2947657, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x64", + "0x384", + "0x64", + "0x64" + ] + }, + { + "pc": 1288, + "op": "DUP2", + "gas": 2947656, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x64", + "0x384", + "0x64", + "0x64" + ] + }, + { + "pc": 1289, + "op": "EQ", + "gas": 2947653, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x64", + "0x384", + "0x64", + "0x64", + "0x64" + ] + }, + { + "pc": 1290, + "op": "PUSH2", + "gas": 2947650, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x64", + "0x384", + "0x64", + "0x1" + ] + }, + { + "pc": 1293, + "op": "JUMPI", + "gas": 2947647, + "gasCost": 10, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x64", + "0x384", + "0x64", + "0x1", + "0x512" + ] + }, + { + "pc": 1298, + "op": "JUMPDEST", + "gas": 2947637, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x64", + "0x384", + "0x64" + ] + }, + { + "pc": 1299, + "op": "POP", + "gas": 2947636, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x64", + "0x384", + "0x64" + ] + }, + { + "pc": 1300, + "op": "JUMP", + "gas": 2947634, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x64", + "0x384" + ] + }, + { + "pc": 900, + "op": "JUMPDEST", + "gas": 2947626, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x64" + ] + }, + { + "pc": 901, + "op": "SWAP3", + "gas": 2947625, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x3aa", + "0x24", + "0x4", + "0x64" + ] + }, + { + "pc": 902, + "op": "SWAP2", + "gas": 2947622, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x64", + "0x24", + "0x4", + "0x3aa" + ] + }, + { + "pc": 903, + "op": "POP", + "gas": 2947619, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x64", + "0x3aa", + "0x4", + "0x24" + ] + }, + { + "pc": 904, + "op": "POP", + "gas": 2947617, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x64", + "0x3aa", + "0x4" + ] + }, + { + "pc": 905, + "op": "JUMP", + "gas": 2947615, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x64", + "0x3aa" + ] + }, + { + "pc": 938, + "op": "JUMPDEST", + "gas": 2947607, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x64" + ] + }, + { + "pc": 939, + "op": "SWAP2", + "gas": 2947606, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x0", + "0x0", + "0x64" + ] + }, + { + "pc": 940, + "op": "POP", + "gas": 2947603, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x64", + "0x0", + "0x0" + ] + }, + { + "pc": 941, + "op": "POP", + "gas": 2947601, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x64", + "0x0" + ] + }, + { + "pc": 942, + "op": "SWAP3", + "gas": 2947599, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x66", + "0x24", + "0x4", + "0x64" + ] + }, + { + "pc": 943, + "op": "SWAP2", + "gas": 2947596, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x64", + "0x24", + "0x4", + "0x66" + ] + }, + { + "pc": 944, + "op": "POP", + "gas": 2947593, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x64", + "0x66", + "0x4", + "0x24" + ] + }, + { + "pc": 945, + "op": "POP", + "gas": 2947591, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x64", + "0x66", + "0x4" + ] + }, + { + "pc": 946, + "op": "JUMP", + "gas": 2947589, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x64", + "0x66" + ] + }, + { + "pc": 102, + "op": "JUMPDEST", + "gas": 2947581, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x64" + ] + }, + { + "pc": 103, + "op": "PUSH2", + "gas": 2947580, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x64" + ] + }, + { + "pc": 106, + "op": "JUMP", + "gas": 2947577, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x64", + "0xc3" + ] + }, + { + "pc": 195, + "op": "JUMPDEST", + "gas": 2947569, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x64" + ] + }, + { + "pc": 196, + "op": "PUSH1", + "gas": 2947568, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x64" + ] + }, + { + "pc": 198, + "op": "DUP1", + "gas": 2947565, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x64", + "0x0" + ] + }, + { + "pc": 199, + "op": "PUSH1", + "gas": 2947562, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x64", + "0x0", + "0x0" + ] + }, + { + "pc": 201, + "op": "SWAP1", + "gas": 2947559, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x64", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 202, + "op": "SLOAD", + "gas": 2947556, + "gasCost": 2100, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x64", + "0x0", + "0x0", + "0x0" + ], + "storage": { + "0x0000000000000000000000000000000000000000000000000000000000000000": "0x000000000000000000000000687707d572cd6a3f91cf87d3f953100b2599f7d5" + }, + "extraData": { + "proofList": [ + { + "address": "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "nonce": 1, + "balance": "0x0", + "codeHash": "0xbf159056a3a2ad6cf0a060213d688d7ab0de676645a7c8f7d2ad3e2e6107469e", + "storage": { + "key": "0x0000000000000000000000000000000000000000000000000000000000000000", + "value": "0x000000000000000000000000687707d572cd6a3f91cf87d3f953100b2599f7d5" + } + } + ] + } + }, + { + "pc": 203, + "op": "SWAP1", + "gas": 2945456, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x64", + "0x0", + "0x0", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5" + ] + }, + { + "pc": 204, + "op": "PUSH2", + "gas": 2945453, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x64", + "0x0", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x0" + ] + }, + { + "pc": 207, + "op": "EXP", + "gas": 2945450, + "gasCost": 10, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x64", + "0x0", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x0", + "0x100" + ] + }, + { + "pc": 208, + "op": "SWAP1", + "gas": 2945440, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x64", + "0x0", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x1" + ] + }, + { + "pc": 209, + "op": "DIV", + "gas": 2945437, + "gasCost": 5, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x64", + "0x0", + "0x1", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5" + ] + }, + { + "pc": 210, + "op": "PUSH20", + "gas": 2945432, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x64", + "0x0", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5" + ] + }, + { + "pc": 231, + "op": "AND", + "gas": 2945429, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x64", + "0x0", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 232, + "op": "SWAP1", + "gas": 2945426, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x64", + "0x0", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5" + ] + }, + { + "pc": 233, + "op": "POP", + "gas": 2945423, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x64", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x0" + ] + }, + { + "pc": 234, + "op": "DUP1", + "gas": 2945421, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x64", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5" + ] + }, + { + "pc": 235, + "op": "PUSH20", + "gas": 2945418, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x64", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5" + ] + }, + { + "pc": 256, + "op": "AND", + "gas": 2945415, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x64", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 257, + "op": "PUSH4", + "gas": 2945412, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x64", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5" + ] + }, + { + "pc": 262, + "op": "DUP4", + "gas": 2945409, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x64", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x21848c46" + ] + }, + { + "pc": 263, + "op": "PUSH1", + "gas": 2945406, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x64", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x21848c46", + "0x64" + ] + }, + { + "pc": 265, + "op": "MLOAD", + "gas": 2945403, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x64", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x21848c46", + "0x64", + "0x40" + ] + }, + { + "pc": 266, + "op": "DUP3", + "gas": 2945400, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x64", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x21848c46", + "0x64", + "0x80" + ] + }, + { + "pc": 267, + "op": "PUSH4", + "gas": 2945397, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x64", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x21848c46", + "0x64", + "0x80", + "0x21848c46" + ] + }, + { + "pc": 272, + "op": "AND", + "gas": 2945394, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x64", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x21848c46", + "0x64", + "0x80", + "0x21848c46", + "0xffffffff" + ] + }, + { + "pc": 273, + "op": "PUSH1", + "gas": 2945391, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x64", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x21848c46", + "0x64", + "0x80", + "0x21848c46" + ] + }, + { + "pc": 275, + "op": "SHL", + "gas": 2945388, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x64", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x21848c46", + "0x64", + "0x80", + "0x21848c46", + "0xe0" + ] + }, + { + "pc": 276, + "op": "DUP2", + "gas": 2945385, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x64", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x21848c46", + "0x64", + "0x80", + "0x21848c4600000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 277, + "op": "MSTORE", + "gas": 2945382, + "gasCost": 9, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x64", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x21848c46", + "0x64", + "0x80", + "0x21848c4600000000000000000000000000000000000000000000000000000000", + "0x80" + ] + }, + { + "pc": 278, + "op": "PUSH1", + "gas": 2945373, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x64", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x21848c46", + "0x64", + "0x80" + ] + }, + { + "pc": 280, + "op": "ADD", + "gas": 2945370, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x64", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x21848c46", + "0x64", + "0x80", + "0x4" + ] + }, + { + "pc": 281, + "op": "PUSH2", + "gas": 2945367, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x64", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x21848c46", + "0x64", + "0x84" + ] + }, + { + "pc": 284, + "op": "SWAP2", + "gas": 2945364, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x64", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x21848c46", + "0x64", + "0x84", + "0x122" + ] + }, + { + "pc": 285, + "op": "SWAP1", + "gas": 2945361, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x64", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x21848c46", + "0x122", + "0x84", + "0x64" + ] + }, + { + "pc": 286, + "op": "PUSH2", + "gas": 2945358, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x64", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x21848c46", + "0x122", + "0x64", + "0x84" + ] + }, + { + "pc": 289, + "op": "JUMP", + "gas": 2945355, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x64", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x21848c46", + "0x122", + "0x64", + "0x84", + "0x447" + ] + }, + { + "pc": 1095, + "op": "JUMPDEST", + "gas": 2945347, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x64", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x21848c46", + "0x122", + "0x64", + "0x84" + ] + }, + { + "pc": 1096, + "op": "PUSH1", + "gas": 2945346, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x64", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x21848c46", + "0x122", + "0x64", + "0x84" + ] + }, + { + "pc": 1098, + "op": "PUSH1", + "gas": 2945343, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x64", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x21848c46", + "0x122", + "0x64", + "0x84", + "0x0" + ] + }, + { + "pc": 1100, + "op": "DUP3", + "gas": 2945340, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x64", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x21848c46", + "0x122", + "0x64", + "0x84", + "0x0", + "0x20" + ] + }, + { + "pc": 1101, + "op": "ADD", + "gas": 2945337, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x64", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x21848c46", + "0x122", + "0x64", + "0x84", + "0x0", + "0x20", + "0x84" + ] + }, + { + "pc": 1102, + "op": "SWAP1", + "gas": 2945334, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x64", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x21848c46", + "0x122", + "0x64", + "0x84", + "0x0", + "0xa4" + ] + }, + { + "pc": 1103, + "op": "POP", + "gas": 2945331, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x64", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x21848c46", + "0x122", + "0x64", + "0x84", + "0xa4", + "0x0" + ] + }, + { + "pc": 1104, + "op": "PUSH2", + "gas": 2945329, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x64", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x21848c46", + "0x122", + "0x64", + "0x84", + "0xa4" + ] + }, + { + "pc": 1107, + "op": "PUSH1", + "gas": 2945326, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x64", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x21848c46", + "0x122", + "0x64", + "0x84", + "0xa4", + "0x45c" + ] + }, + { + "pc": 1109, + "op": "DUP4", + "gas": 2945323, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x64", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x21848c46", + "0x122", + "0x64", + "0x84", + "0xa4", + "0x45c", + "0x0" + ] + }, + { + "pc": 1110, + "op": "ADD", + "gas": 2945320, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x64", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x21848c46", + "0x122", + "0x64", + "0x84", + "0xa4", + "0x45c", + "0x0", + "0x84" + ] + }, + { + "pc": 1111, + "op": "DUP5", + "gas": 2945317, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x64", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x21848c46", + "0x122", + "0x64", + "0x84", + "0xa4", + "0x45c", + "0x84" + ] + }, + { + "pc": 1112, + "op": "PUSH2", + "gas": 2945314, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x64", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x21848c46", + "0x122", + "0x64", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x64" + ] + }, + { + "pc": 1115, + "op": "JUMP", + "gas": 2945311, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x64", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x21848c46", + "0x122", + "0x64", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x64", + "0x3fb" + ] + }, + { + "pc": 1019, + "op": "JUMPDEST", + "gas": 2945303, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x64", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x21848c46", + "0x122", + "0x64", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x64" + ] + }, + { + "pc": 1020, + "op": "PUSH2", + "gas": 2945302, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x64", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x21848c46", + "0x122", + "0x64", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x64" + ] + }, + { + "pc": 1023, + "op": "DUP2", + "gas": 2945299, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x64", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x21848c46", + "0x122", + "0x64", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x64", + "0x404" + ] + }, + { + "pc": 1024, + "op": "PUSH2", + "gas": 2945296, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x64", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x21848c46", + "0x122", + "0x64", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x64", + "0x404", + "0x64" + ] + }, + { + "pc": 1027, + "op": "JUMP", + "gas": 2945293, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x64", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x21848c46", + "0x122", + "0x64", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x64", + "0x404", + "0x64", + "0x4b0" + ] + }, + { + "pc": 1200, + "op": "JUMPDEST", + "gas": 2945285, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x64", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x21848c46", + "0x122", + "0x64", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x64", + "0x404", + "0x64" + ] + }, + { + "pc": 1201, + "op": "PUSH1", + "gas": 2945284, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x64", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x21848c46", + "0x122", + "0x64", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x64", + "0x404", + "0x64" + ] + }, + { + "pc": 1203, + "op": "DUP2", + "gas": 2945281, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x64", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x21848c46", + "0x122", + "0x64", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x64", + "0x404", + "0x64", + "0x0" + ] + }, + { + "pc": 1204, + "op": "SWAP1", + "gas": 2945278, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x64", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x21848c46", + "0x122", + "0x64", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x64", + "0x404", + "0x64", + "0x0", + "0x64" + ] + }, + { + "pc": 1205, + "op": "POP", + "gas": 2945275, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x64", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x21848c46", + "0x122", + "0x64", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x64", + "0x404", + "0x64", + "0x64", + "0x0" + ] + }, + { + "pc": 1206, + "op": "SWAP2", + "gas": 2945273, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x64", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x21848c46", + "0x122", + "0x64", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x64", + "0x404", + "0x64", + "0x64" + ] + }, + { + "pc": 1207, + "op": "SWAP1", + "gas": 2945270, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x64", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x21848c46", + "0x122", + "0x64", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x64", + "0x64", + "0x64", + "0x404" + ] + }, + { + "pc": 1208, + "op": "POP", + "gas": 2945267, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x64", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x21848c46", + "0x122", + "0x64", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x64", + "0x64", + "0x404", + "0x64" + ] + }, + { + "pc": 1209, + "op": "JUMP", + "gas": 2945265, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x64", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x21848c46", + "0x122", + "0x64", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x64", + "0x64", + "0x404" + ] + }, + { + "pc": 1028, + "op": "JUMPDEST", + "gas": 2945257, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x64", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x21848c46", + "0x122", + "0x64", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x64", + "0x64" + ] + }, + { + "pc": 1029, + "op": "DUP3", + "gas": 2945256, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x64", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x21848c46", + "0x122", + "0x64", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x64", + "0x64" + ] + }, + { + "pc": 1030, + "op": "MSTORE", + "gas": 2945253, + "gasCost": 6, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x64", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x21848c46", + "0x122", + "0x64", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x64", + "0x64", + "0x84" + ] + }, + { + "pc": 1031, + "op": "POP", + "gas": 2945247, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x64", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x21848c46", + "0x122", + "0x64", + "0x84", + "0xa4", + "0x45c", + "0x84", + "0x64" + ] + }, + { + "pc": 1032, + "op": "POP", + "gas": 2945245, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x64", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x21848c46", + "0x122", + "0x64", + "0x84", + "0xa4", + "0x45c", + "0x84" + ] + }, + { + "pc": 1033, + "op": "JUMP", + "gas": 2945243, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x64", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x21848c46", + "0x122", + "0x64", + "0x84", + "0xa4", + "0x45c" + ] + }, + { + "pc": 1116, + "op": "JUMPDEST", + "gas": 2945235, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x64", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x21848c46", + "0x122", + "0x64", + "0x84", + "0xa4" + ] + }, + { + "pc": 1117, + "op": "SWAP3", + "gas": 2945234, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x64", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x21848c46", + "0x122", + "0x64", + "0x84", + "0xa4" + ] + }, + { + "pc": 1118, + "op": "SWAP2", + "gas": 2945231, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x64", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x21848c46", + "0xa4", + "0x64", + "0x84", + "0x122" + ] + }, + { + "pc": 1119, + "op": "POP", + "gas": 2945228, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x64", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x21848c46", + "0xa4", + "0x122", + "0x84", + "0x64" + ] + }, + { + "pc": 1120, + "op": "POP", + "gas": 2945226, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x64", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x21848c46", + "0xa4", + "0x122", + "0x84" + ] + }, + { + "pc": 1121, + "op": "JUMP", + "gas": 2945224, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x64", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x21848c46", + "0xa4", + "0x122" + ] + }, + { + "pc": 290, + "op": "JUMPDEST", + "gas": 2945216, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x64", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x21848c46", + "0xa4" + ] + }, + { + "pc": 291, + "op": "PUSH1", + "gas": 2945215, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x64", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x21848c46", + "0xa4" + ] + }, + { + "pc": 293, + "op": "PUSH1", + "gas": 2945212, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x64", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x21848c46", + "0xa4", + "0x0" + ] + }, + { + "pc": 295, + "op": "MLOAD", + "gas": 2945209, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x64", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x21848c46", + "0xa4", + "0x0", + "0x40" + ] + }, + { + "pc": 296, + "op": "DUP1", + "gas": 2945206, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x64", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x21848c46", + "0xa4", + "0x0", + "0x80" + ] + }, + { + "pc": 297, + "op": "DUP4", + "gas": 2945203, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x64", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x21848c46", + "0xa4", + "0x0", + "0x80", + "0x80" + ] + }, + { + "pc": 298, + "op": "SUB", + "gas": 2945200, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x64", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x21848c46", + "0xa4", + "0x0", + "0x80", + "0x80", + "0xa4" + ] + }, + { + "pc": 299, + "op": "DUP2", + "gas": 2945197, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x64", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x21848c46", + "0xa4", + "0x0", + "0x80", + "0x24" + ] + }, + { + "pc": 300, + "op": "PUSH1", + "gas": 2945194, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x64", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x21848c46", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80" + ] + }, + { + "pc": 302, + "op": "DUP8", + "gas": 2945191, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x64", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x21848c46", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0" + ] + }, + { + "pc": 303, + "op": "DUP1", + "gas": 2945188, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x64", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x21848c46", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5" + ] + }, + { + "pc": 304, + "op": "EXTCODESIZE", + "gas": 2945185, + "gasCost": 2600, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x64", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x21848c46", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5" + ], + "extraData": { + "codeList": [ + "0x6080604052600436106100555760003560e01c806321848c461461005a5780632e64cec114610083578063b0f2b72a146100ae578063c4e96ec0146100d7578063e5223f88146100f3578063f34176731461010f575b600080fd5b34801561006657600080fd5b50610081600480360381019061007c91906101d7565b61013a565b005b34801561008f57600080fd5b5061009861014f565b6040516100a59190610252565b60405180910390f35b3480156100ba57600080fd5b506100d560048036038101906100d091906101d7565b610158565b005b6100f160048036038101906100ec91906101d7565b610162565b005b61010d600480360381019061010891906101d7565b6101a4565b005b34801561011b57600080fd5b506101246101ae565b6040516101319190610252565b60405180910390f35b80600081905550600061014c57600080fd5b50565b60008054905090565b8060008190555050565b806000819055506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161019b90610232565b60405180910390fd5b8060008190555050565b6000806101ba57600080fd5b600054905090565b6000813590506101d1816102b1565b92915050565b6000602082840312156101e957600080fd5b60006101f7848285016101c2565b91505092915050565b600061020d600c8361026d565b915061021882610288565b602082019050919050565b61022c8161027e565b82525050565b6000602082019050818103600083015261024b81610200565b9050919050565b60006020820190506102676000830184610223565b92915050565b600082825260208201905092915050565b6000819050919050565b7f64656c696265726174656c790000000000000000000000000000000000000000600082015250565b6102ba8161027e565b81146102c557600080fd5b5056fea26469706673582212206fa6988b66dece47dc22658a0058d7f113ce303b23abdbfb3e29ee300a66489464736f6c63430008040033" + ] + } + }, + { + "pc": 305, + "op": "ISZERO", + "gas": 2942585, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x64", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x21848c46", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x2fe" + ] + }, + { + "pc": 306, + "op": "DUP1", + "gas": 2942582, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x64", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x21848c46", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x0" + ] + }, + { + "pc": 307, + "op": "ISZERO", + "gas": 2942579, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x64", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x21848c46", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x0", + "0x0" + ] + }, + { + "pc": 308, + "op": "PUSH2", + "gas": 2942576, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x64", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x21848c46", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x0", + "0x1" + ] + }, + { + "pc": 311, + "op": "JUMPI", + "gas": 2942573, + "gasCost": 10, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x64", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x21848c46", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x0", + "0x1", + "0x13c" + ] + }, + { + "pc": 316, + "op": "JUMPDEST", + "gas": 2942563, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x64", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x21848c46", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x0" + ] + }, + { + "pc": 317, + "op": "POP", + "gas": 2942562, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x64", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x21848c46", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x0" + ] + }, + { + "pc": 318, + "op": "GAS", + "gas": 2942560, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x64", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x21848c46", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5" + ] + }, + { + "pc": 319, + "op": "CALL", + "gas": 2942558, + "gasCost": 2896583, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x64", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x21848c46", + "0xa4", + "0x0", + "0x80", + "0x24", + "0x80", + "0x0", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x2ce65e" + ], + "extraData": { + "callFailed": true, + "codeList": [ + "0x608060405234801561001057600080fd5b506004361061007d5760003560e01c80633e23ee431161005b5780633e23ee43146100d8578063651b4aa5146100f6578063a0a4868814610112578063cb4ec52e1461012e5761007d565b8063127017e114610082578063200d2ed21461009e57806336864b1b146100bc575b600080fd5b61009c6004803603810190610097919061050c565b61014a565b005b6100a66101e6565b6040516100b391906105b1565b60405180910390f35b6100d660048036038101906100d1919061050c565b6101f0565b005b6100e06102c3565b6040516100ed9190610576565b60405180910390f35b610110600480360381019061010b919061050c565b6102ec565b005b61012c6004803603810190610127919061050c565b610388565b005b6101486004803603810190610143919061050c565b61045b565b005b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663ed231420836040518263ffffffff1660e01b81526004016101a991906105b1565b600060405180830381600087803b1580156101c357600080fd5b505af11580156101d7573d6000803e3d6000fd5b50505050816001819055505050565b6000600154905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663b0f2b72a836040518263ffffffff1660e01b815260040161024f91906105b1565b600060405180830381600087803b15801561026957600080fd5b505af115801561027d573d6000803e3d6000fd5b50505050816001819055506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016102ba90610591565b60405180910390fd5b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff166321848c46836040518263ffffffff1660e01b815260040161034b91906105b1565b600060405180830381600087803b15801561036557600080fd5b505af1158015610379573d6000803e3d6000fd5b50505050816001819055505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663b0f2b72a836040518263ffffffff1660e01b81526004016103e791906105b1565b600060405180830381600087803b15801561040157600080fd5b505af1158015610415573d6000803e3d6000fd5b50505050816001819055506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161045290610591565b60405180910390fd5b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663b0f2b72a836040518263ffffffff1660e01b81526004016104ba91906105b1565b600060405180830381600087803b1580156104d457600080fd5b505af11580156104e8573d6000803e3d6000fd5b50505050816001819055505050565b60008135905061050681610642565b92915050565b60006020828403121561051e57600080fd5b600061052c848285016104f7565b91505092915050565b61053e816105dd565b82525050565b6000610551600c836105cc565b915061055c82610619565b602082019050919050565b6105708161060f565b82525050565b600060208201905061058b6000830184610535565b92915050565b600060208201905081810360008301526105aa81610544565b9050919050565b60006020820190506105c66000830184610567565b92915050565b600082825260208201905092915050565b60006105e8826105ef565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b7f64656c696265726174656c790000000000000000000000000000000000000000600082015250565b61064b8161060f565b811461065657600080fd5b5056fea2646970667358221220febbf3dd0054f94c7763ec197ee815d446b5cee0c49696a0c0c09a7e3d04617364736f6c63430008040033", + "0x6080604052600436106100555760003560e01c806321848c461461005a5780632e64cec114610083578063b0f2b72a146100ae578063c4e96ec0146100d7578063e5223f88146100f3578063f34176731461010f575b600080fd5b34801561006657600080fd5b50610081600480360381019061007c91906101d7565b61013a565b005b34801561008f57600080fd5b5061009861014f565b6040516100a59190610252565b60405180910390f35b3480156100ba57600080fd5b506100d560048036038101906100d091906101d7565b610158565b005b6100f160048036038101906100ec91906101d7565b610162565b005b61010d600480360381019061010891906101d7565b6101a4565b005b34801561011b57600080fd5b506101246101ae565b6040516101319190610252565b60405180910390f35b80600081905550600061014c57600080fd5b50565b60008054905090565b8060008190555050565b806000819055506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161019b90610232565b60405180910390fd5b8060008190555050565b6000806101ba57600080fd5b600054905090565b6000813590506101d1816102b1565b92915050565b6000602082840312156101e957600080fd5b60006101f7848285016101c2565b91505092915050565b600061020d600c8361026d565b915061021882610288565b602082019050919050565b61022c8161027e565b82525050565b6000602082019050818103600083015261024b81610200565b9050919050565b60006020820190506102676000830184610223565b92915050565b600082825260208201905092915050565b6000819050919050565b7f64656c696265726174656c790000000000000000000000000000000000000000600082015250565b6102ba8161027e565b81146102c557600080fd5b5056fea26469706673582212206fa6988b66dece47dc22658a0058d7f113ce303b23abdbfb3e29ee300a66489464736f6c63430008040033" + ], + "proofList": [ + { + "address": "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "nonce": 1, + "balance": "0x0", + "codeHash": "0xbf159056a3a2ad6cf0a060213d688d7ab0de676645a7c8f7d2ad3e2e6107469e" + }, + { + "address": "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "nonce": 1, + "balance": "0x0", + "codeHash": "0x4ee2afb169bef88abed9792edc0230c2cda9c19a48639d2db199479f1176928e" + }, + { + "address": "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "nonce": 1, + "balance": "0x0", + "codeHash": "0x4ee2afb169bef88abed9792edc0230c2cda9c19a48639d2db199479f1176928e" + } + ] + } + }, + { + "pc": 0, + "op": "PUSH1", + "gas": 2896483, + "gasCost": 3, + "depth": 3 + }, + { + "pc": 2, + "op": "PUSH1", + "gas": 2896480, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x80" + ] + }, + { + "pc": 4, + "op": "MSTORE", + "gas": 2896477, + "gasCost": 12, + "depth": 3, + "stack": [ + "0x80", + "0x40" + ] + }, + { + "pc": 5, + "op": "PUSH1", + "gas": 2896465, + "gasCost": 3, + "depth": 3 + }, + { + "pc": 7, + "op": "CALLDATASIZE", + "gas": 2896462, + "gasCost": 2, + "depth": 3, + "stack": [ + "0x4" + ] + }, + { + "pc": 8, + "op": "LT", + "gas": 2896460, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x4", + "0x24" + ] + }, + { + "pc": 9, + "op": "PUSH2", + "gas": 2896457, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x0" + ] + }, + { + "pc": 12, + "op": "JUMPI", + "gas": 2896454, + "gasCost": 10, + "depth": 3, + "stack": [ + "0x0", + "0x55" + ] + }, + { + "pc": 13, + "op": "PUSH1", + "gas": 2896444, + "gasCost": 3, + "depth": 3 + }, + { + "pc": 15, + "op": "CALLDATALOAD", + "gas": 2896441, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x0" + ] + }, + { + "pc": 16, + "op": "PUSH1", + "gas": 2896438, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c4600000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 18, + "op": "SHR", + "gas": 2896435, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c4600000000000000000000000000000000000000000000000000000000", + "0xe0" + ] + }, + { + "pc": 19, + "op": "DUP1", + "gas": 2896432, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46" + ] + }, + { + "pc": 20, + "op": "PUSH4", + "gas": 2896429, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x21848c46" + ] + }, + { + "pc": 25, + "op": "EQ", + "gas": 2896426, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x21848c46", + "0x21848c46" + ] + }, + { + "pc": 26, + "op": "PUSH2", + "gas": 2896423, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x1" + ] + }, + { + "pc": 29, + "op": "JUMPI", + "gas": 2896420, + "gasCost": 10, + "depth": 3, + "stack": [ + "0x21848c46", + "0x1", + "0x5a" + ] + }, + { + "pc": 90, + "op": "JUMPDEST", + "gas": 2896410, + "gasCost": 1, + "depth": 3, + "stack": [ + "0x21848c46" + ] + }, + { + "pc": 91, + "op": "CALLVALUE", + "gas": 2896409, + "gasCost": 2, + "depth": 3, + "stack": [ + "0x21848c46" + ] + }, + { + "pc": 92, + "op": "DUP1", + "gas": 2896407, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x0" + ] + }, + { + "pc": 93, + "op": "ISZERO", + "gas": 2896404, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x0", + "0x0" + ] + }, + { + "pc": 94, + "op": "PUSH2", + "gas": 2896401, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x0", + "0x1" + ] + }, + { + "pc": 97, + "op": "JUMPI", + "gas": 2896398, + "gasCost": 10, + "depth": 3, + "stack": [ + "0x21848c46", + "0x0", + "0x1", + "0x66" + ] + }, + { + "pc": 102, + "op": "JUMPDEST", + "gas": 2896388, + "gasCost": 1, + "depth": 3, + "stack": [ + "0x21848c46", + "0x0" + ] + }, + { + "pc": 103, + "op": "POP", + "gas": 2896387, + "gasCost": 2, + "depth": 3, + "stack": [ + "0x21848c46", + "0x0" + ] + }, + { + "pc": 104, + "op": "PUSH2", + "gas": 2896385, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46" + ] + }, + { + "pc": 107, + "op": "PUSH1", + "gas": 2896382, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81" + ] + }, + { + "pc": 109, + "op": "DUP1", + "gas": 2896379, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x4" + ] + }, + { + "pc": 110, + "op": "CALLDATASIZE", + "gas": 2896376, + "gasCost": 2, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x4", + "0x4" + ] + }, + { + "pc": 111, + "op": "SUB", + "gas": 2896374, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x4", + "0x4", + "0x24" + ] + }, + { + "pc": 112, + "op": "DUP2", + "gas": 2896371, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x4", + "0x20" + ] + }, + { + "pc": 113, + "op": "ADD", + "gas": 2896368, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x4", + "0x20", + "0x4" + ] + }, + { + "pc": 114, + "op": "SWAP1", + "gas": 2896365, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x4", + "0x24" + ] + }, + { + "pc": 115, + "op": "PUSH2", + "gas": 2896362, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x24", + "0x4" + ] + }, + { + "pc": 118, + "op": "SWAP2", + "gas": 2896359, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x24", + "0x4", + "0x7c" + ] + }, + { + "pc": 119, + "op": "SWAP1", + "gas": 2896356, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x4", + "0x24" + ] + }, + { + "pc": 120, + "op": "PUSH2", + "gas": 2896353, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4" + ] + }, + { + "pc": 123, + "op": "JUMP", + "gas": 2896350, + "gasCost": 8, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x1d7" + ] + }, + { + "pc": 471, + "op": "JUMPDEST", + "gas": 2896342, + "gasCost": 1, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4" + ] + }, + { + "pc": 472, + "op": "PUSH1", + "gas": 2896341, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4" + ] + }, + { + "pc": 474, + "op": "PUSH1", + "gas": 2896338, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 476, + "op": "DUP3", + "gas": 2896335, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x20" + ] + }, + { + "pc": 477, + "op": "DUP5", + "gas": 2896332, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x20", + "0x4" + ] + }, + { + "pc": 478, + "op": "SUB", + "gas": 2896329, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x20", + "0x4", + "0x24" + ] + }, + { + "pc": 479, + "op": "SLT", + "gas": 2896326, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x20", + "0x20" + ] + }, + { + "pc": 480, + "op": "ISZERO", + "gas": 2896323, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0" + ] + }, + { + "pc": 481, + "op": "PUSH2", + "gas": 2896320, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x1" + ] + }, + { + "pc": 484, + "op": "JUMPI", + "gas": 2896317, + "gasCost": 10, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x1", + "0x1e9" + ] + }, + { + "pc": 489, + "op": "JUMPDEST", + "gas": 2896307, + "gasCost": 1, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 490, + "op": "PUSH1", + "gas": 2896306, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 492, + "op": "PUSH2", + "gas": 2896303, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0" + ] + }, + { + "pc": 495, + "op": "DUP5", + "gas": 2896300, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7" + ] + }, + { + "pc": 496, + "op": "DUP3", + "gas": 2896297, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24" + ] + }, + { + "pc": 497, + "op": "DUP6", + "gas": 2896294, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x0" + ] + }, + { + "pc": 498, + "op": "ADD", + "gas": 2896291, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x0", + "0x4" + ] + }, + { + "pc": 499, + "op": "PUSH2", + "gas": 2896288, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4" + ] + }, + { + "pc": 502, + "op": "JUMP", + "gas": 2896285, + "gasCost": 8, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x1c2" + ] + }, + { + "pc": 450, + "op": "JUMPDEST", + "gas": 2896277, + "gasCost": 1, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4" + ] + }, + { + "pc": 451, + "op": "PUSH1", + "gas": 2896276, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4" + ] + }, + { + "pc": 453, + "op": "DUP2", + "gas": 2896273, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x0" + ] + }, + { + "pc": 454, + "op": "CALLDATALOAD", + "gas": 2896270, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x0", + "0x4" + ] + }, + { + "pc": 455, + "op": "SWAP1", + "gas": 2896267, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x0", + "0x64" + ] + }, + { + "pc": 456, + "op": "POP", + "gas": 2896264, + "gasCost": 2, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x64", + "0x0" + ] + }, + { + "pc": 457, + "op": "PUSH2", + "gas": 2896262, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x64" + ] + }, + { + "pc": 460, + "op": "DUP2", + "gas": 2896259, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x64", + "0x1d1" + ] + }, + { + "pc": 461, + "op": "PUSH2", + "gas": 2896256, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x64", + "0x1d1", + "0x64" + ] + }, + { + "pc": 464, + "op": "JUMP", + "gas": 2896253, + "gasCost": 8, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x64", + "0x1d1", + "0x64", + "0x2b1" + ] + }, + { + "pc": 689, + "op": "JUMPDEST", + "gas": 2896245, + "gasCost": 1, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x64", + "0x1d1", + "0x64" + ] + }, + { + "pc": 690, + "op": "PUSH2", + "gas": 2896244, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x64", + "0x1d1", + "0x64" + ] + }, + { + "pc": 693, + "op": "DUP2", + "gas": 2896241, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x64", + "0x1d1", + "0x64", + "0x2ba" + ] + }, + { + "pc": 694, + "op": "PUSH2", + "gas": 2896238, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x64", + "0x1d1", + "0x64", + "0x2ba", + "0x64" + ] + }, + { + "pc": 697, + "op": "JUMP", + "gas": 2896235, + "gasCost": 8, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x64", + "0x1d1", + "0x64", + "0x2ba", + "0x64", + "0x27e" + ] + }, + { + "pc": 638, + "op": "JUMPDEST", + "gas": 2896227, + "gasCost": 1, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x64", + "0x1d1", + "0x64", + "0x2ba", + "0x64" + ] + }, + { + "pc": 639, + "op": "PUSH1", + "gas": 2896226, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x64", + "0x1d1", + "0x64", + "0x2ba", + "0x64" + ] + }, + { + "pc": 641, + "op": "DUP2", + "gas": 2896223, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x64", + "0x1d1", + "0x64", + "0x2ba", + "0x64", + "0x0" + ] + }, + { + "pc": 642, + "op": "SWAP1", + "gas": 2896220, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x64", + "0x1d1", + "0x64", + "0x2ba", + "0x64", + "0x0", + "0x64" + ] + }, + { + "pc": 643, + "op": "POP", + "gas": 2896217, + "gasCost": 2, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x64", + "0x1d1", + "0x64", + "0x2ba", + "0x64", + "0x64", + "0x0" + ] + }, + { + "pc": 644, + "op": "SWAP2", + "gas": 2896215, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x64", + "0x1d1", + "0x64", + "0x2ba", + "0x64", + "0x64" + ] + }, + { + "pc": 645, + "op": "SWAP1", + "gas": 2896212, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x64", + "0x1d1", + "0x64", + "0x64", + "0x64", + "0x2ba" + ] + }, + { + "pc": 646, + "op": "POP", + "gas": 2896209, + "gasCost": 2, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x64", + "0x1d1", + "0x64", + "0x64", + "0x2ba", + "0x64" + ] + }, + { + "pc": 647, + "op": "JUMP", + "gas": 2896207, + "gasCost": 8, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x64", + "0x1d1", + "0x64", + "0x64", + "0x2ba" + ] + }, + { + "pc": 698, + "op": "JUMPDEST", + "gas": 2896199, + "gasCost": 1, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x64", + "0x1d1", + "0x64", + "0x64" + ] + }, + { + "pc": 699, + "op": "DUP2", + "gas": 2896198, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x64", + "0x1d1", + "0x64", + "0x64" + ] + }, + { + "pc": 700, + "op": "EQ", + "gas": 2896195, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x64", + "0x1d1", + "0x64", + "0x64", + "0x64" + ] + }, + { + "pc": 701, + "op": "PUSH2", + "gas": 2896192, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x64", + "0x1d1", + "0x64", + "0x1" + ] + }, + { + "pc": 704, + "op": "JUMPI", + "gas": 2896189, + "gasCost": 10, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x64", + "0x1d1", + "0x64", + "0x1", + "0x2c5" + ] + }, + { + "pc": 709, + "op": "JUMPDEST", + "gas": 2896179, + "gasCost": 1, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x64", + "0x1d1", + "0x64" + ] + }, + { + "pc": 710, + "op": "POP", + "gas": 2896178, + "gasCost": 2, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x64", + "0x1d1", + "0x64" + ] + }, + { + "pc": 711, + "op": "JUMP", + "gas": 2896176, + "gasCost": 8, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x64", + "0x1d1" + ] + }, + { + "pc": 465, + "op": "JUMPDEST", + "gas": 2896168, + "gasCost": 1, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x64" + ] + }, + { + "pc": 466, + "op": "SWAP3", + "gas": 2896167, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x1f7", + "0x24", + "0x4", + "0x64" + ] + }, + { + "pc": 467, + "op": "SWAP2", + "gas": 2896164, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x64", + "0x24", + "0x4", + "0x1f7" + ] + }, + { + "pc": 468, + "op": "POP", + "gas": 2896161, + "gasCost": 2, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x64", + "0x1f7", + "0x4", + "0x24" + ] + }, + { + "pc": 469, + "op": "POP", + "gas": 2896159, + "gasCost": 2, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x64", + "0x1f7", + "0x4" + ] + }, + { + "pc": 470, + "op": "JUMP", + "gas": 2896157, + "gasCost": 8, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x64", + "0x1f7" + ] + }, + { + "pc": 503, + "op": "JUMPDEST", + "gas": 2896149, + "gasCost": 1, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x64" + ] + }, + { + "pc": 504, + "op": "SWAP2", + "gas": 2896148, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x0", + "0x0", + "0x64" + ] + }, + { + "pc": 505, + "op": "POP", + "gas": 2896145, + "gasCost": 2, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x64", + "0x0", + "0x0" + ] + }, + { + "pc": 506, + "op": "POP", + "gas": 2896143, + "gasCost": 2, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x64", + "0x0" + ] + }, + { + "pc": 507, + "op": "SWAP3", + "gas": 2896141, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x7c", + "0x24", + "0x4", + "0x64" + ] + }, + { + "pc": 508, + "op": "SWAP2", + "gas": 2896138, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x64", + "0x24", + "0x4", + "0x7c" + ] + }, + { + "pc": 509, + "op": "POP", + "gas": 2896135, + "gasCost": 2, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x64", + "0x7c", + "0x4", + "0x24" + ] + }, + { + "pc": 510, + "op": "POP", + "gas": 2896133, + "gasCost": 2, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x64", + "0x7c", + "0x4" + ] + }, + { + "pc": 511, + "op": "JUMP", + "gas": 2896131, + "gasCost": 8, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x64", + "0x7c" + ] + }, + { + "pc": 124, + "op": "JUMPDEST", + "gas": 2896123, + "gasCost": 1, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x64" + ] + }, + { + "pc": 125, + "op": "PUSH2", + "gas": 2896122, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x64" + ] + }, + { + "pc": 128, + "op": "JUMP", + "gas": 2896119, + "gasCost": 8, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x64", + "0x13a" + ] + }, + { + "pc": 314, + "op": "JUMPDEST", + "gas": 2896111, + "gasCost": 1, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x64" + ] + }, + { + "pc": 315, + "op": "DUP1", + "gas": 2896110, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x64" + ] + }, + { + "pc": 316, + "op": "PUSH1", + "gas": 2896107, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x64", + "0x64" + ] + }, + { + "pc": 318, + "op": "DUP2", + "gas": 2896104, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x64", + "0x64", + "0x0" + ] + }, + { + "pc": 319, + "op": "SWAP1", + "gas": 2896101, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x64", + "0x64", + "0x0", + "0x64" + ] + }, + { + "pc": 320, + "op": "SSTORE", + "gas": 2896098, + "gasCost": 5000, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x64", + "0x64", + "0x64", + "0x0" + ], + "storage": { + "0x0000000000000000000000000000000000000000000000000000000000000000": "0x0000000000000000000000000000000000000000000000000000000000000064" + }, + "extraData": { + "proofList": [ + { + "address": "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "nonce": 1, + "balance": "0x0", + "codeHash": "0x4ee2afb169bef88abed9792edc0230c2cda9c19a48639d2db199479f1176928e", + "storage": { + "key": "0x0000000000000000000000000000000000000000000000000000000000000000", + "value": "0x00000000000000000000000000000000000000000000000000000182c964a26b" + } + } + ] + } + }, + { + "pc": 321, + "op": "POP", + "gas": 2891098, + "gasCost": 2, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x64", + "0x64" + ] + }, + { + "pc": 322, + "op": "PUSH1", + "gas": 2891096, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x64" + ] + }, + { + "pc": 324, + "op": "PUSH2", + "gas": 2891093, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x64", + "0x0" + ] + }, + { + "pc": 327, + "op": "JUMPI", + "gas": 2891090, + "gasCost": 10, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x64", + "0x0", + "0x14c" + ] + }, + { + "pc": 328, + "op": "PUSH1", + "gas": 2891080, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x64" + ] + }, + { + "pc": 330, + "op": "DUP1", + "gas": 2891077, + "gasCost": 3, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x64", + "0x0" + ] + }, + { + "pc": 331, + "op": "REVERT", + "gas": 2891074, + "gasCost": 0, + "depth": 3, + "stack": [ + "0x21848c46", + "0x81", + "0x64", + "0x0", + "0x0" + ] + }, + { + "pc": 320, + "op": "SWAP3", + "gas": 2937049, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x64", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x21848c46", + "0xa4", + "0x0" + ] + }, + { + "pc": 321, + "op": "POP", + "gas": 2937046, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x64", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x0", + "0x21848c46", + "0xa4", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5" + ] + }, + { + "pc": 322, + "op": "POP", + "gas": 2937044, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x64", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x0", + "0x21848c46", + "0xa4" + ] + }, + { + "pc": 323, + "op": "POP", + "gas": 2937042, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x64", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x0", + "0x21848c46" + ] + }, + { + "pc": 324, + "op": "DUP1", + "gas": 2937040, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x64", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x0" + ] + }, + { + "pc": 325, + "op": "ISZERO", + "gas": 2937037, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x64", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x0", + "0x0" + ] + }, + { + "pc": 326, + "op": "PUSH2", + "gas": 2937034, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x64", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x0", + "0x1" + ] + }, + { + "pc": 329, + "op": "JUMPI", + "gas": 2937031, + "gasCost": 10, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x64", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x0", + "0x1", + "0x14d" + ] + }, + { + "pc": 333, + "op": "JUMPDEST", + "gas": 2937021, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x64", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x0" + ] + }, + { + "pc": 334, + "op": "PUSH2", + "gas": 2937020, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x64", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x0" + ] + }, + { + "pc": 337, + "op": "JUMPI", + "gas": 2937017, + "gasCost": 10, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x64", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x0", + "0x156" + ] + }, + { + "pc": 338, + "op": "PUSH2", + "gas": 2937007, + "gasCost": 3, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x64", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5" + ] + }, + { + "pc": 341, + "op": "JUMP", + "gas": 2937004, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x64", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5", + "0x157" + ] + }, + { + "pc": 343, + "op": "JUMPDEST", + "gas": 2936996, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x64", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5" + ] + }, + { + "pc": 344, + "op": "POP", + "gas": 2936995, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x64", + "0x687707d572cd6a3f91cf87d3f953100b2599f7d5" + ] + }, + { + "pc": 345, + "op": "POP", + "gas": 2936993, + "gasCost": 2, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b", + "0x64" + ] + }, + { + "pc": 346, + "op": "JUMP", + "gas": 2936991, + "gasCost": 8, + "depth": 2, + "stack": [ + "0x21848c46", + "0x6b" + ] + }, + { + "pc": 107, + "op": "JUMPDEST", + "gas": 2936983, + "gasCost": 1, + "depth": 2, + "stack": [ + "0x21848c46" + ] + }, + { + "pc": 108, + "op": "STOP", + "gas": 2936982, + "gasCost": 0, + "depth": 2, + "stack": [ + "0x21848c46" + ] + }, + { + "pc": 873, + "op": "ISZERO", + "gas": 2983774, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x64", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x21848c46", + "0xa4", + "0x1" + ] + }, + { + "pc": 874, + "op": "DUP1", + "gas": 2983771, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x64", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x21848c46", + "0xa4", + "0x0" + ] + }, + { + "pc": 875, + "op": "ISZERO", + "gas": 2983768, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x64", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x21848c46", + "0xa4", + "0x0", + "0x0" + ] + }, + { + "pc": 876, + "op": "PUSH2", + "gas": 2983765, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x64", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x21848c46", + "0xa4", + "0x0", + "0x1" + ] + }, + { + "pc": 879, + "op": "JUMPI", + "gas": 2983762, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x64", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x21848c46", + "0xa4", + "0x0", + "0x1", + "0x379" + ] + }, + { + "pc": 889, + "op": "JUMPDEST", + "gas": 2983752, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x64", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x21848c46", + "0xa4", + "0x0" + ] + }, + { + "pc": 890, + "op": "POP", + "gas": 2983751, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x64", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x21848c46", + "0xa4", + "0x0" + ] + }, + { + "pc": 891, + "op": "POP", + "gas": 2983749, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x64", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x21848c46", + "0xa4" + ] + }, + { + "pc": 892, + "op": "POP", + "gas": 2983747, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x64", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x21848c46" + ] + }, + { + "pc": 893, + "op": "POP", + "gas": 2983745, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x64", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae" + ] + }, + { + "pc": 894, + "op": "DUP2", + "gas": 2983743, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x64", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae" + ] + }, + { + "pc": 895, + "op": "PUSH1", + "gas": 2983740, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x64", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x64" + ] + }, + { + "pc": 897, + "op": "DUP2", + "gas": 2983737, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x64", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x64", + "0x1" + ] + }, + { + "pc": 898, + "op": "SWAP1", + "gas": 2983734, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x64", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x64", + "0x1", + "0x64" + ] + }, + { + "pc": 899, + "op": "SSTORE", + "gas": 2983731, + "gasCost": 22100, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x64", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x64", + "0x64", + "0x1" + ], + "storage": { + "0x0000000000000000000000000000000000000000000000000000000000000000": "0x00000000000000000000000038e2a9dd844d6726ad18033891d515fd82d686ae", + "0x0000000000000000000000000000000000000000000000000000000000000001": "0x0000000000000000000000000000000000000000000000000000000000000064" + }, + "extraData": { + "proofList": [ + { + "address": "0xedd6a1a065b9f64183bcc9d1707b4f7ff74e1474", + "nonce": 1, + "balance": "0x0", + "codeHash": "0xb9d4b0986ed041aeabd02a4835a1aafba231e0cec363b861c5cefb234b5c550a", + "storage": { + "key": "0x0000000000000000000000000000000000000000000000000000000000000001", + "value": "0x0000000000000000000000000000000000000000000000000000000000000000" + } + } + ] + } + }, + { + "pc": 900, + "op": "POP", + "gas": 2961631, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x64", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae", + "0x64" + ] + }, + { + "pc": 901, + "op": "POP", + "gas": 2961629, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x64", + "0x38e2a9dd844d6726ad18033891d515fd82d686ae" + ] + }, + { + "pc": 902, + "op": "POP", + "gas": 2961627, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110", + "0x64" + ] + }, + { + "pc": 903, + "op": "JUMP", + "gas": 2961625, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x651b4aa5", + "0x110" + ] + }, + { + "pc": 272, + "op": "JUMPDEST", + "gas": 2961617, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x651b4aa5" + ] + }, + { + "pc": 273, + "op": "STOP", + "gas": 2961616, + "gasCost": 0, + "depth": 1, + "stack": [ + "0x651b4aa5" + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/trie/zkproof/greeter_trace.json b/internal/utesting/blocktraces/greeter.json similarity index 54% rename from trie/zkproof/greeter_trace.json rename to internal/utesting/blocktraces/greeter.json index 0a13b9a4a5..5cb0c84c16 100644 --- a/trie/zkproof/greeter_trace.json +++ b/internal/utesting/blocktraces/greeter.json @@ -1,67 +1,70 @@ { "blockTrace": { - "number": "0x4", - "hash": "0x0c0427e513e8b7aca4787ecbe96de87b5952e306d11fb4a578c0e778ca8014e1", - "gasLimit": 6748265, + "number": "0x3b", + "hash": "0x906e5fa6d389896ed7bd6bfa8e26cad1cf4f59b9a606490a781ca8ef0e4c0a6b", + "gasLimit": 7120359, "difficulty": "0x2", - "baseFee": "0x2615d13a", + "baseFee": "0x1bfa9c", "coinbase": { "address": "0x0000000000000000000000000000000000000000", "nonce": 0, "balance": "0x0", "codeHash": "0x0000000000000000000000000000000000000000000000000000000000000000" }, - "time": 1656084134, + "time": 1660042321, "transactions": [ { "type": 2, - "nonce": 4, + "nonce": 71, "gas": 3021784, - "gasPrice": "0x30339ccd", + "gasPrice": "0x23692d", "from": "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "to": "0x05fdbdfae180345c6cff5316c286727cf1a43327", + "to": "0xd6bfcd979e85e47425d7366c24b5672e945fd9ab", "chainId": "0xcf55", "value": "0x0", - "data": "0xb0f2b72a00000000000000000000000000000000000000000000000000000181964e7585", + "data": "0xb0f2b72a00000000000000000000000000000000000000000000000000000182823b95c2", "isCreate": false, "v": "0x0", - "r": "0x8faa55a8f20cee7aff601f62f6683137b5744be561cbb477aa3c0848b1c625b6", - "s": "0x6b5dcb362502d5adc6e5ebf4d503fb4296009e81ddea8465e427acd050aa6869" + "r": "0xff03987abb4447b31a3224c77437a223ed9df1d072c5e1c4ffb0f3662e484041", + "s": "0x3e46f7569b963924ce557dfeb9291a321269a31838ef96f5ba1f9fa4aaae6b9" } ] }, "storageTrace": { - "rootBefore": "0x0e28d296fd0481564b9a813aad104ba334efcef4545426b41589245218a5cbd5", - "rootAfter": "0x175eaa5c50bbc1095100482d08481d55a553a41168ba79de4fa646ba96e579ee", + "rootBefore": "0x262a343e70cb1293414a0a2cc279a68e6a53d36dab47a132a7ee47774e93907f", + "rootAfter": "0x304a87706e70eb1ed30b7b0ab9efee14467f2825b58d9fd99ddf8e13da1e7897", "proofs": { - "0x0000000000000000000000000000000000000000": [ - "0x00923ad76a4f3e4c63049db2818456f9037e49b5b467292e893b8fc3afe1cdd0194ea9d4a290473ecc2d3f25123515c1cd24f9317187837cbf798b9ec3f7c9ec0f", - "0x01e232499c4754368052075d13fb84b18537b94a2da166170e7bd94bdc879097090404000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000cc0a77f6e063b4b62eb7d9ed6f427cf687d8d0071d751850cfe5d136bc60d3ab000000000000000000000000000000000000000000000000000000000000000000", - "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" - ], - "0x05fDbDfaE180345C6Cff5316c286727CF1a43327": [ - "0x00923ad76a4f3e4c63049db2818456f9037e49b5b467292e893b8fc3afe1cdd0194ea9d4a290473ecc2d3f25123515c1cd24f9317187837cbf798b9ec3f7c9ec0f", - "0x00e2ed604a484416597397aba756822f61b2766fe43c487b34b0fe19ab864f8607b0dc4e59b50d8c8752055382e97d68b87442e6f890f91c6679044cb8c40cbf0a", - "0x01fb6c28252d0ee14db1cdabda01391300ac75dcfdcda6ba1880e509aed4bc1225040400000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000009d2fd3a7cb9d5547a21c851248d703921e6348bfbdf4c0130695a3263f916ef000000000000000000000000000000000000000000000000000000000000000000", - "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" - ], "0x4cb1aB63aF5D8931Ce09673EbD8ae2ce16fD6571": [ - "0x00923ad76a4f3e4c63049db2818456f9037e49b5b467292e893b8fc3afe1cdd0194ea9d4a290473ecc2d3f25123515c1cd24f9317187837cbf798b9ec3f7c9ec0f", - "0x00e2ed604a484416597397aba756822f61b2766fe43c487b34b0fe19ab864f8607b0dc4e59b50d8c8752055382e97d68b87442e6f890f91c6679044cb8c40cbf0a", - "0x000000000000000000000000000000000000000000000000000000000000000000980c7b7ebd0ac4d8356c1cec4ee1e2d39b1390242f9c5deb1873c5df1e25a616", - "0x00127cff94f5c8c0f91246cf3b02d4b2c48a7f56f960448a3b7aed76d5fd92ed0e0000000000000000000000000000000000000000000000000000000000000000", - "0x0000000000000000000000000000000000000000000000000000000000000000003daf950342fcef104a9c7e526bf4e4d902d0fff86a59a8e61eb6f93679fd540c", - "0x001b300e21fc3c84d681ba0ad494c5b04a4c7ff1c8e876742710490a7270dfac23c8958a428335d5a01ed5455294071015e7773289a1d0fe4b6dba99e68cbd1b21", - "0x000000000000000000000000000000000000000000000000000000000000000000c414e34df49bd221983ece165dc6442886c98297548c0f587654ed09f4213924", - "0x0033cfff19e0b658a4021589467ede5983afd54efd962b629037624f71bf3d9c06a72c67edca1db779b38140aaee9baf382c96315f0884909da4a4a7480f3ab82d", - "0x017581e431a68d0fa641e14a7d29a6c2b150db6da1d13f59dee6f7f492a0bebd290404000000000000000000000000000000000000000000000000000000000000000000040056bc75e2d630fffffffffffffffffffffffffffffffffffffa56174f7ad9ccc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470000000000000000000000000000000000000000000000000000000000000000000", + "0x0028192bcc2590a24c3760ca03cc5b4e3b88a78a426bea29a622eb40cf8deae12f023e01cc38a445b1625a5fbedc191b990e6efdf5fd45146a31ca8aa4918b3225", + "0x0025017ff9fd58b46ac4284181a119281fa53ccbf1866cdca864f2058865544b8e23aaf5d479d4e622e738b9357adf31c5282e777f45bcd2e45dfeeb202eec869b", + "0x00288499cb13d6f3836a4c94c2aef1748c704d07f80a2c9f07ed7a67df7040d04e076b17a2235da8663565bade4365aa5aa74d50d3f2a017a900569cfbb84a8099", + "0x000d17a734b9bbfbd01269d4dbdffb924c3085f6f42fd5e09d75737e85a19b3a22131c4cb3f40252d92fb6bbe40f451092487ffe275b5c530665f3fd2e60e15dc3", + "0x00000000000000000000000000000000000000000000000000000000000000000018f2af6080293d09818b0a3c8b07fb39fa78c22855b7198850dbc5dd2b2bab62", + "0x002248f47a53d7e981b187961b71a36033d9ef59273228ec127666f43c5d0fd2c50a4d67e991e9557375ca733990e7f2a028bfeb6866fe641875f5c8c6fc0018fc", + "0x000000000000000000000000000000000000000000000000000000000000000000228e269400007dd0fc07ae8f03254fb78c399702c92e675f7efa2277dd7e0aae", + "0x002e8279ae86e0c8c9f0219e566992c6c8aa8d5ddd599a218870e3577ff6cf0aeb2fe8b70043185278f8f6c75d7057d75ebc62e82052f480dfc207de3b0e89700e", + "0x0129bdbea092f4f7e6de593fd1a16ddb50b1c2a6297d4ae141a60f8da631e481750404000000000000000000000000000000000000000000000000000000000000000000470056bc75e2d630ffffffffffffffffffffffffffffffffffff4b25b80f3cfb1fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470000000000000000000000000000000000000000000000000000000000000000000", + "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" + ], + "0xd6BFcD979e85E47425d7366c24B5672e945fD9ab": [ + "0x0028192bcc2590a24c3760ca03cc5b4e3b88a78a426bea29a622eb40cf8deae12f023e01cc38a445b1625a5fbedc191b990e6efdf5fd45146a31ca8aa4918b3225", + "0x0025017ff9fd58b46ac4284181a119281fa53ccbf1866cdca864f2058865544b8e23aaf5d479d4e622e738b9357adf31c5282e777f45bcd2e45dfeeb202eec869b", + "0x00288499cb13d6f3836a4c94c2aef1748c704d07f80a2c9f07ed7a67df7040d04e076b17a2235da8663565bade4365aa5aa74d50d3f2a017a900569cfbb84a8099", + "0x00224ecf871bc98b6470116db7f1d5d90c0ac7e06ae930efdc96807f095f8ea0a80bbb97670389c03a86c98edc9921787ce8bdf24f8ac693bcf8612bff9eefaa48", + "0x000f9e61f633dbb91b6bdd86daf7a831070949d325636c824344b88cca07cc5b2d0000000000000000000000000000000000000000000000000000000000000000", + "0x00000000000000000000000000000000000000000000000000000000000000000022e26880ae50669f40a38a2f750abb86d6201c5a9c1d7d0fed4d7e40afb45980", + "0x00000000000000000000000000000000000000000000000000000000000000000021bd64c88da09231b189feabe38d5bb79770130c6ed2d123083eeb0ef64031dc", + "0x0000000000000000000000000000000000000000000000000000000000000000000ccc174103c8812218a05c3130dcf1a082c3b3d76cb77e3cf3dd2955efedfe27", + "0x0000000000000000000000000000000000000000000000000000000000000000001a9bb63364a8a273f939d8bff97122db58cb045f49b4103caa6ec557a77c96a1", + "0x001e70ad06df66e7e2878877adc54b4f4b3ffd6d490ac216dba8caafa1603187282ed8f76e353a8fb28bf175f3e1cddc697407fd7c98632ce8642ca249964aabf1", + "0x0107061006b64441e81799d7fd6751ae26fed5347d31c0bb04d6b11052c9a6f7e1040400000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000029b74e075daad9f17eb39cd893c2dd32f52ecd99084d63964842defd00ebcbe2058c7a163389dea56e5efe3b57428428831a3aecfe0ed6a3f885c37bc8563b1c00", "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" ] }, "storageProofs": { - "0x05fDbDfaE180345C6Cff5316c286727CF1a43327": { + "0xd6BFcD979e85E47425d7366c24B5672e945fD9ab": { "0x0000000000000000000000000000000000000000000000000000000000000000": [ - "0x02", + "0x012098f5fb9e239eab3ceac3f27b81e481dc3124d55ffed523a839ee8446b64864010100000000000000000000000000000000000000000000000000000000018282256f8b00", "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" ] } @@ -69,36 +72,36 @@ }, "executionResults": [ { - "gas": 43806, + "gas": 26706, "failed": false, "from": { "address": "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "nonce": 4, - "balance": "0x56bc75e2d630fffffffffffffffffffffffffffffffffffffa56174f7ad9cc", + "nonce": 71, + "balance": "0x56bc75e2d630ffffffffffffffffffffffffffffffffffff4b25b80f3cfb1f", "codeHash": "0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470" }, "to": { - "address": "0x05fdbdfae180345c6cff5316c286727cf1a43327", + "address": "0xd6bfcd979e85e47425d7366c24b5672e945fd9ab", "nonce": 1, "balance": "0x0", - "codeHash": "0x09d2fd3a7cb9d5547a21c851248d703921e6348bfbdf4c0130695a3263f916ef" + "codeHash": "0x29b74e075daad9f17eb39cd893c2dd32f52ecd99084d63964842defd00ebcbe2" }, "accountAfter": [ { "address": "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "nonce": 5, - "balance": "0x56bc75e2d630fffffffffffffffffffffffffffffffffffffa3ca2462a9700", + "nonce": 72, + "balance": "0x56bc75e2d630ffffffffffffffffffffffffffffffffffff4b25aca8775527", "codeHash": "0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470" }, { - "address": "0x05fdbdfae180345c6cff5316c286727cf1a43327", + "address": "0xd6bfcd979e85e47425d7366c24b5672e945fd9ab", "nonce": 1, "balance": "0x0", - "codeHash": "0x09d2fd3a7cb9d5547a21c851248d703921e6348bfbdf4c0130695a3263f916ef" + "codeHash": "0x29b74e075daad9f17eb39cd893c2dd32f52ecd99084d63964842defd00ebcbe2" } ], - "codeHash": "0x09d2fd3a7cb9d5547a21c851248d703921e6348bfbdf4c0130695a3263f916ef", - "byteCode": "0x608060405234801561001057600080fd5b506004361061004c5760003560e01c806321848c46146100515780632e64cec11461006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61006b60048036038101906100669190610116565b6100c5565b005b6100756100da565b604051610082919061014e565b60405180910390f35b6100a560048036038101906100a09190610116565b6100e3565b005b6100af6100ed565b6040516100bc919061014e565b60405180910390f35b8060008190555060006100d757600080fd5b50565b60008054905090565b8060008190555050565b6000806100f957600080fd5b600054905090565b60008135905061011081610173565b92915050565b60006020828403121561012857600080fd5b600061013684828501610101565b91505092915050565b61014881610169565b82525050565b6000602082019050610163600083018461013f565b92915050565b6000819050919050565b61017c81610169565b811461018757600080fd5b5056fea26469706673582212204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923f32e64736f6c63430008040033", + "codeHash": "0x29b74e075daad9f17eb39cd893c2dd32f52ecd99084d63964842defd00ebcbe2", + "byteCode": "0x608060405234801561001057600080fd5b506004361061004c5760003560e01c806321848c46146100515780632e64cec11461006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61006b60048036038101906100669190610116565b6100c5565b005b6100756100da565b604051610082919061014e565b60405180910390f35b6100a560048036038101906100a09190610116565b6100e3565b005b6100af6100ed565b6040516100bc919061014e565b60405180910390f35b8060008190555060006100d757600080fd5b50565b60008054905090565b8060008190555050565b6000806100f957600080fd5b600054905090565b60008135905061011081610173565b92915050565b60006020828403121561012857600080fd5b600061013684828501610101565b91505092915050565b61014881610169565b82525050565b6000602082019050610163600083018461013f565b92915050565b6000819050919050565b61017c81610169565b811461018757600080fd5b5056fea2646970667358221220f4bca934426c76c7cb87cc32876fc6e65d1d7de23424faa61c347ffed95c449064736f6c63430008040033", "structLogs": [ { "pc": 0, @@ -126,11 +129,6 @@ "stack": [ "0x80", "0x40" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" ] }, { @@ -138,12 +136,7 @@ "op": "CALLVALUE", "gas": 3000502, "gasCost": 2, - "depth": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] + "depth": 1 }, { "pc": 6, @@ -153,11 +146,6 @@ "depth": 1, "stack": [ "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -169,11 +157,6 @@ "stack": [ "0x0", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -185,11 +168,6 @@ "stack": [ "0x0", "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -202,11 +180,6 @@ "0x0", "0x1", "0x10" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -217,11 +190,6 @@ "depth": 1, "stack": [ "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -232,11 +200,6 @@ "depth": 1, "stack": [ "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -244,12 +207,7 @@ "op": "PUSH1", "gas": 3000478, "gasCost": 3, - "depth": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] + "depth": 1 }, { "pc": 20, @@ -259,11 +217,6 @@ "depth": 1, "stack": [ "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -275,11 +228,6 @@ "stack": [ "0x4", "0x24" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -290,11 +238,6 @@ "depth": 1, "stack": [ "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -306,11 +249,6 @@ "stack": [ "0x0", "0x4c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -318,12 +256,7 @@ "op": "PUSH1", "gas": 3000457, "gasCost": 3, - "depth": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] + "depth": 1 }, { "pc": 28, @@ -333,11 +266,6 @@ "depth": 1, "stack": [ "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -347,12 +275,7 @@ "gasCost": 3, "depth": 1, "stack": [ - "0xb0f2b72a00000000000000000000000000000000000000000000000000000181" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0xb0f2b72a00000000000000000000000000000000000000000000000000000182" ] }, { @@ -362,13 +285,8 @@ "gasCost": 3, "depth": 1, "stack": [ - "0xb0f2b72a00000000000000000000000000000000000000000000000000000181", + "0xb0f2b72a00000000000000000000000000000000000000000000000000000182", "0xe0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -379,11 +297,6 @@ "depth": 1, "stack": [ "0xb0f2b72a" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -395,11 +308,6 @@ "stack": [ "0xb0f2b72a", "0xb0f2b72a" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -412,11 +320,6 @@ "0xb0f2b72a", "0xb0f2b72a", "0x21848c46" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -428,11 +331,6 @@ "stack": [ "0xb0f2b72a", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -445,11 +343,6 @@ "0xb0f2b72a", "0x0", "0x51" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -460,11 +353,6 @@ "depth": 1, "stack": [ "0xb0f2b72a" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -476,11 +364,6 @@ "stack": [ "0xb0f2b72a", "0xb0f2b72a" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -493,11 +376,6 @@ "0xb0f2b72a", "0xb0f2b72a", "0x2e64cec1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -509,11 +387,6 @@ "stack": [ "0xb0f2b72a", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -526,11 +399,6 @@ "0xb0f2b72a", "0x0", "0x6d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -541,11 +409,6 @@ "depth": 1, "stack": [ "0xb0f2b72a" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -557,11 +420,6 @@ "stack": [ "0xb0f2b72a", "0xb0f2b72a" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -574,11 +432,6 @@ "0xb0f2b72a", "0xb0f2b72a", "0xb0f2b72a" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -590,11 +443,6 @@ "stack": [ "0xb0f2b72a", "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -607,11 +455,6 @@ "0xb0f2b72a", "0x1", "0x8b" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -622,11 +465,6 @@ "depth": 1, "stack": [ "0xb0f2b72a" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -637,11 +475,6 @@ "depth": 1, "stack": [ "0xb0f2b72a" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -653,11 +486,6 @@ "stack": [ "0xb0f2b72a", "0xa5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -670,11 +498,6 @@ "0xb0f2b72a", "0xa5", "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -688,11 +511,6 @@ "0xa5", "0x4", "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -707,11 +525,6 @@ "0x4", "0x4", "0x24" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -725,11 +538,6 @@ "0xa5", "0x4", "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -744,11 +552,6 @@ "0x4", "0x20", "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -762,11 +565,6 @@ "0xa5", "0x4", "0x24" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -780,11 +578,6 @@ "0xa5", "0x24", "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -799,11 +592,6 @@ "0x24", "0x4", "0xa0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -818,11 +606,6 @@ "0xa0", "0x4", "0x24" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -837,11 +620,6 @@ "0xa0", "0x24", "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -857,11 +635,6 @@ "0x24", "0x4", "0x116" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -876,11 +649,6 @@ "0xa0", "0x24", "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -895,11 +663,6 @@ "0xa0", "0x24", "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -915,11 +678,6 @@ "0x24", "0x4", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -936,11 +694,6 @@ "0x4", "0x0", "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -958,11 +711,6 @@ "0x0", "0x20", "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -981,11 +729,6 @@ "0x20", "0x4", "0x24" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -1003,11 +746,6 @@ "0x0", "0x20", "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -1024,11 +762,6 @@ "0x4", "0x0", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -1045,11 +778,6 @@ "0x4", "0x0", "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -1067,11 +795,6 @@ "0x0", "0x1", "0x128" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -1087,11 +810,6 @@ "0x24", "0x4", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -1107,11 +825,6 @@ "0x24", "0x4", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -1128,11 +841,6 @@ "0x4", "0x0", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -1150,11 +858,6 @@ "0x0", "0x0", "0x136" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -1173,11 +876,6 @@ "0x0", "0x136", "0x24" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -1197,11 +895,6 @@ "0x136", "0x24", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -1222,11 +915,6 @@ "0x24", "0x0", "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -1246,11 +934,6 @@ "0x136", "0x24", "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -1271,11 +954,6 @@ "0x24", "0x4", "0x101" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -1295,11 +973,6 @@ "0x136", "0x24", "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -1319,11 +992,6 @@ "0x136", "0x24", "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -1344,11 +1012,6 @@ "0x24", "0x4", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -1370,11 +1033,6 @@ "0x4", "0x0", "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -1395,12 +1053,7 @@ "0x24", "0x4", "0x0", - "0x181964e7585" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x182823b95c2" ] }, { @@ -1420,13 +1073,8 @@ "0x136", "0x24", "0x4", - "0x181964e7585", + "0x182823b95c2", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -1446,12 +1094,7 @@ "0x136", "0x24", "0x4", - "0x181964e7585" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x182823b95c2" ] }, { @@ -1471,13 +1114,8 @@ "0x136", "0x24", "0x4", - "0x181964e7585", + "0x182823b95c2", "0x110" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -1497,14 +1135,9 @@ "0x136", "0x24", "0x4", - "0x181964e7585", + "0x182823b95c2", "0x110", - "0x181964e7585" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x182823b95c2" ] }, { @@ -1524,15 +1157,10 @@ "0x136", "0x24", "0x4", - "0x181964e7585", + "0x182823b95c2", "0x110", - "0x181964e7585", + "0x182823b95c2", "0x173" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -1552,14 +1180,9 @@ "0x136", "0x24", "0x4", - "0x181964e7585", + "0x182823b95c2", "0x110", - "0x181964e7585" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x182823b95c2" ] }, { @@ -1579,14 +1202,9 @@ "0x136", "0x24", "0x4", - "0x181964e7585", + "0x182823b95c2", "0x110", - "0x181964e7585" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x182823b95c2" ] }, { @@ -1606,15 +1224,10 @@ "0x136", "0x24", "0x4", - "0x181964e7585", + "0x182823b95c2", "0x110", - "0x181964e7585", + "0x182823b95c2", "0x17c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -1634,16 +1247,11 @@ "0x136", "0x24", "0x4", - "0x181964e7585", + "0x182823b95c2", "0x110", - "0x181964e7585", + "0x182823b95c2", "0x17c", - "0x181964e7585" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x182823b95c2" ] }, { @@ -1663,17 +1271,12 @@ "0x136", "0x24", "0x4", - "0x181964e7585", + "0x182823b95c2", "0x110", - "0x181964e7585", + "0x182823b95c2", "0x17c", - "0x181964e7585", + "0x182823b95c2", "0x169" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -1693,16 +1296,11 @@ "0x136", "0x24", "0x4", - "0x181964e7585", + "0x182823b95c2", "0x110", - "0x181964e7585", + "0x182823b95c2", "0x17c", - "0x181964e7585" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x182823b95c2" ] }, { @@ -1722,16 +1320,11 @@ "0x136", "0x24", "0x4", - "0x181964e7585", + "0x182823b95c2", "0x110", - "0x181964e7585", + "0x182823b95c2", "0x17c", - "0x181964e7585" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x182823b95c2" ] }, { @@ -1751,17 +1344,12 @@ "0x136", "0x24", "0x4", - "0x181964e7585", + "0x182823b95c2", "0x110", - "0x181964e7585", + "0x182823b95c2", "0x17c", - "0x181964e7585", + "0x182823b95c2", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -1781,18 +1369,13 @@ "0x136", "0x24", "0x4", - "0x181964e7585", + "0x182823b95c2", "0x110", - "0x181964e7585", + "0x182823b95c2", "0x17c", - "0x181964e7585", + "0x182823b95c2", "0x0", - "0x181964e7585" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x182823b95c2" ] }, { @@ -1812,18 +1395,13 @@ "0x136", "0x24", "0x4", - "0x181964e7585", + "0x182823b95c2", "0x110", - "0x181964e7585", + "0x182823b95c2", "0x17c", - "0x181964e7585", - "0x181964e7585", + "0x182823b95c2", + "0x182823b95c2", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -1843,17 +1421,12 @@ "0x136", "0x24", "0x4", - "0x181964e7585", + "0x182823b95c2", "0x110", - "0x181964e7585", + "0x182823b95c2", "0x17c", - "0x181964e7585", - "0x181964e7585" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x182823b95c2", + "0x182823b95c2" ] }, { @@ -1873,17 +1446,12 @@ "0x136", "0x24", "0x4", - "0x181964e7585", + "0x182823b95c2", "0x110", - "0x181964e7585", - "0x181964e7585", - "0x181964e7585", + "0x182823b95c2", + "0x182823b95c2", + "0x182823b95c2", "0x17c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -1903,17 +1471,12 @@ "0x136", "0x24", "0x4", - "0x181964e7585", + "0x182823b95c2", "0x110", - "0x181964e7585", - "0x181964e7585", + "0x182823b95c2", + "0x182823b95c2", "0x17c", - "0x181964e7585" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x182823b95c2" ] }, { @@ -1933,16 +1496,11 @@ "0x136", "0x24", "0x4", - "0x181964e7585", + "0x182823b95c2", "0x110", - "0x181964e7585", - "0x181964e7585", + "0x182823b95c2", + "0x182823b95c2", "0x17c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -1962,15 +1520,10 @@ "0x136", "0x24", "0x4", - "0x181964e7585", + "0x182823b95c2", "0x110", - "0x181964e7585", - "0x181964e7585" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x182823b95c2", + "0x182823b95c2" ] }, { @@ -1990,15 +1543,10 @@ "0x136", "0x24", "0x4", - "0x181964e7585", + "0x182823b95c2", "0x110", - "0x181964e7585", - "0x181964e7585" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x182823b95c2", + "0x182823b95c2" ] }, { @@ -2018,16 +1566,11 @@ "0x136", "0x24", "0x4", - "0x181964e7585", + "0x182823b95c2", "0x110", - "0x181964e7585", - "0x181964e7585", - "0x181964e7585" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x182823b95c2", + "0x182823b95c2", + "0x182823b95c2" ] }, { @@ -2047,15 +1590,10 @@ "0x136", "0x24", "0x4", - "0x181964e7585", + "0x182823b95c2", "0x110", - "0x181964e7585", + "0x182823b95c2", "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -2075,16 +1613,11 @@ "0x136", "0x24", "0x4", - "0x181964e7585", + "0x182823b95c2", "0x110", - "0x181964e7585", + "0x182823b95c2", "0x1", "0x187" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -2104,14 +1637,9 @@ "0x136", "0x24", "0x4", - "0x181964e7585", + "0x182823b95c2", "0x110", - "0x181964e7585" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x182823b95c2" ] }, { @@ -2131,14 +1659,9 @@ "0x136", "0x24", "0x4", - "0x181964e7585", + "0x182823b95c2", "0x110", - "0x181964e7585" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x182823b95c2" ] }, { @@ -2158,13 +1681,8 @@ "0x136", "0x24", "0x4", - "0x181964e7585", + "0x182823b95c2", "0x110" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -2184,12 +1702,7 @@ "0x136", "0x24", "0x4", - "0x181964e7585" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x182823b95c2" ] }, { @@ -2209,12 +1722,7 @@ "0x136", "0x24", "0x4", - "0x181964e7585" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x182823b95c2" ] }, { @@ -2231,15 +1739,10 @@ "0x4", "0x0", "0x0", - "0x181964e7585", + "0x182823b95c2", "0x24", "0x4", "0x136" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -2256,15 +1759,10 @@ "0x4", "0x0", "0x0", - "0x181964e7585", + "0x182823b95c2", "0x136", "0x4", "0x24" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -2281,14 +1779,9 @@ "0x4", "0x0", "0x0", - "0x181964e7585", + "0x182823b95c2", "0x136", "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -2305,13 +1798,8 @@ "0x4", "0x0", "0x0", - "0x181964e7585", + "0x182823b95c2", "0x136" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -2328,12 +1816,7 @@ "0x4", "0x0", "0x0", - "0x181964e7585" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x182823b95c2" ] }, { @@ -2350,12 +1833,7 @@ "0x4", "0x0", "0x0", - "0x181964e7585" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x182823b95c2" ] }, { @@ -2370,14 +1848,9 @@ "0xa0", "0x24", "0x4", - "0x181964e7585", + "0x182823b95c2", "0x0", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -2392,13 +1865,8 @@ "0xa0", "0x24", "0x4", - "0x181964e7585", + "0x182823b95c2", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -2413,12 +1881,7 @@ "0xa0", "0x24", "0x4", - "0x181964e7585" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x182823b95c2" ] }, { @@ -2430,15 +1893,10 @@ "stack": [ "0xb0f2b72a", "0xa5", - "0x181964e7585", + "0x182823b95c2", "0x24", "0x4", "0xa0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -2450,15 +1908,10 @@ "stack": [ "0xb0f2b72a", "0xa5", - "0x181964e7585", + "0x182823b95c2", "0xa0", "0x4", "0x24" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -2470,14 +1923,9 @@ "stack": [ "0xb0f2b72a", "0xa5", - "0x181964e7585", + "0x182823b95c2", "0xa0", "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -2489,13 +1937,8 @@ "stack": [ "0xb0f2b72a", "0xa5", - "0x181964e7585", + "0x182823b95c2", "0xa0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -2507,12 +1950,7 @@ "stack": [ "0xb0f2b72a", "0xa5", - "0x181964e7585" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x182823b95c2" ] }, { @@ -2524,12 +1962,7 @@ "stack": [ "0xb0f2b72a", "0xa5", - "0x181964e7585" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x182823b95c2" ] }, { @@ -2541,13 +1974,8 @@ "stack": [ "0xb0f2b72a", "0xa5", - "0x181964e7585", + "0x182823b95c2", "0xe3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -2559,12 +1987,7 @@ "stack": [ "0xb0f2b72a", "0xa5", - "0x181964e7585" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x182823b95c2" ] }, { @@ -2576,12 +1999,7 @@ "stack": [ "0xb0f2b72a", "0xa5", - "0x181964e7585" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x182823b95c2" ] }, { @@ -2593,13 +2011,8 @@ "stack": [ "0xb0f2b72a", "0xa5", - "0x181964e7585", - "0x181964e7585" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x182823b95c2", + "0x182823b95c2" ] }, { @@ -2611,14 +2024,9 @@ "stack": [ "0xb0f2b72a", "0xa5", - "0x181964e7585", - "0x181964e7585", + "0x182823b95c2", + "0x182823b95c2", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -2630,49 +2038,39 @@ "stack": [ "0xb0f2b72a", "0xa5", - "0x181964e7585", - "0x181964e7585", + "0x182823b95c2", + "0x182823b95c2", "0x0", - "0x181964e7585" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x182823b95c2" ] }, { "pc": 233, "op": "SSTORE", "gas": 3000091, - "gasCost": 22100, + "gasCost": 5000, "depth": 1, "stack": [ "0xb0f2b72a", "0xa5", - "0x181964e7585", - "0x181964e7585", - "0x181964e7585", + "0x182823b95c2", + "0x182823b95c2", + "0x182823b95c2", "0x0" ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], "storage": { - "0x0000000000000000000000000000000000000000000000000000000000000000": "0x00000000000000000000000000000000000000000000000000000181964e7585" + "0x0000000000000000000000000000000000000000000000000000000000000000": "0x00000000000000000000000000000000000000000000000000000182823b95c2" }, "extraData": { "proofList": [ { - "address": "0x05fdbdfae180345c6cff5316c286727cf1a43327", + "address": "0xd6bfcd979e85e47425d7366c24b5672e945fd9ab", "nonce": 1, "balance": "0x0", - "codeHash": "0x09d2fd3a7cb9d5547a21c851248d703921e6348bfbdf4c0130695a3263f916ef", + "codeHash": "0x29b74e075daad9f17eb39cd893c2dd32f52ecd99084d63964842defd00ebcbe2", "storage": { "key": "0x0000000000000000000000000000000000000000000000000000000000000000", - "value": "0x0000000000000000000000000000000000000000000000000000000000000000" + "value": "0x0000000000000000000000000000000000000000000000000000018282256f8b" } } ] @@ -2681,82 +2079,57 @@ { "pc": 234, "op": "POP", - "gas": 2977991, + "gas": 2995091, "gasCost": 2, "depth": 1, "stack": [ "0xb0f2b72a", "0xa5", - "0x181964e7585", - "0x181964e7585" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x182823b95c2", + "0x182823b95c2" ] }, { "pc": 235, "op": "POP", - "gas": 2977989, + "gas": 2995089, "gasCost": 2, "depth": 1, "stack": [ "0xb0f2b72a", "0xa5", - "0x181964e7585" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x182823b95c2" ] }, { "pc": 236, "op": "JUMP", - "gas": 2977987, + "gas": 2995087, "gasCost": 8, "depth": 1, "stack": [ "0xb0f2b72a", "0xa5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { "pc": 165, "op": "JUMPDEST", - "gas": 2977979, + "gas": 2995079, "gasCost": 1, "depth": 1, "stack": [ "0xb0f2b72a" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { "pc": 166, "op": "STOP", - "gas": 2977978, + "gas": 2995078, "gasCost": 0, "depth": 1, "stack": [ "0xb0f2b72a" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] } ] diff --git a/internal/utesting/blocktraces/multi_txs.json b/internal/utesting/blocktraces/multi_txs.json new file mode 100644 index 0000000000..9802cab37e --- /dev/null +++ b/internal/utesting/blocktraces/multi_txs.json @@ -0,0 +1,69014 @@ +{ + "blockTrace": { + "number": "0x3f", + "hash": "0xe127a769327756c7603f4a78340f93dfc13499e3aa0547ef5672955130eea537", + "gasLimit": 7148208, + "difficulty": "0x2", + "baseFee": "0x108305", + "coinbase": { + "address": "0x0000000000000000000000000000000000000000", + "nonce": 0, + "balance": "0x0", + "codeHash": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "time": 1660048331, + "transactions": [ + { + "type": 2, + "nonce": 75, + "gas": 3021720, + "gasPrice": "0x14e5d2", + "from": "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "to": "0x34041eff1f32989bdaa95875e0f41afd6294dcd4", + "chainId": "0xcf55", + "value": "0x0", + "data": "0xa9059cbb000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000003e8", + "isCreate": false, + "v": "0x1", + "r": "0x6107e909f23497e77494d9402fa8bc63eec6a0e18b34b1b5d57769455c031439", + "s": "0xb2e16e482d5196a491a3814206579864abf0c39907057612a4e20bd5d17989" + }, + { + "type": 2, + "nonce": 76, + "gas": 3021656, + "gasPrice": "0x14e5d2", + "from": "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "to": "0x34041eff1f32989bdaa95875e0f41afd6294dcd4", + "chainId": "0xcf55", + "value": "0x0", + "data": "0xa9059cbb000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003e8", + "isCreate": false, + "v": "0x1", + "r": "0x89a78bda5e4da5c12bb7ac2e41aad2ec6279944cd533224695e480e2e6b30b9a", + "s": "0x499ea11df046450b199d5fedcbbf107cb61f2b46a36633d0a772b49d2ac7711a" + }, + { + "type": 2, + "nonce": 77, + "gas": 3021720, + "gasPrice": "0x14e5d2", + "from": "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "to": "0x34041eff1f32989bdaa95875e0f41afd6294dcd4", + "chainId": "0xcf55", + "value": "0x0", + "data": "0xa9059cbb000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000003e8", + "isCreate": false, + "v": "0x0", + "r": "0x8bb9d5827043cbe5798ecb802789b22dee1e5b0aa136a8a601aca097cee71e35", + "s": "0x214abfa8671ef6e84f1d997019a260fdf868c7be52e5c76e3f64e2ffc5a9831a" + }, + { + "type": 2, + "nonce": 78, + "gas": 3021720, + "gasPrice": "0x14e5d2", + "from": "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "to": "0x34041eff1f32989bdaa95875e0f41afd6294dcd4", + "chainId": "0xcf55", + "value": "0x0", + "data": "0xa9059cbb000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000003e8", + "isCreate": false, + "v": "0x0", + "r": "0xcd1ea99df0f96b7de709c378853021a84102831f3062a780b6ca5e52275eaf17", + "s": "0x4ade1197b7803218c0781697ad151157ab9311957cc3268ec6ea99a751c8a84" + }, + { + "type": 2, + "nonce": 79, + "gas": 3021720, + "gasPrice": "0x14e5d2", + "from": "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "to": "0x34041eff1f32989bdaa95875e0f41afd6294dcd4", + "chainId": "0xcf55", + "value": "0x0", + "data": "0xa9059cbb000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000003e8", + "isCreate": false, + "v": "0x0", + "r": "0x94a0c034be4e9ff635bc9bbac3bbf17fce5beaca285a51c1771aab951255c786", + "s": "0x40c2eb93cb7f6348f7e7e489fc8c9007d02ee94a0d24c5ab5f939a1dccf123c0" + } + ] + }, + "storageTrace": { + "rootBefore": "0x138cf47153008e309c6569e4d00495de18fee2f4c0e4af16cf17e448d8402cb3", + "rootAfter": "0x22e6203933d1bd555baa30837c8afbbcc55a2a2ca950016d74fa5ef1cccb6377", + "proofs": { + "0x34041eff1F32989BDaa95875e0f41AFD6294dCD4": [ + "0x0011bbe37e025f2f1fe0eeda15da5c5b7d26f9a750a21b2c0adea8dfb05d9fda002ad83ec511f3b9b9602031bb287c9a7c62da9a3b4a5176d038404e9b09984b7b", + "0x00043f02100f3d7b548eb3d98bc5a41c22e50be1c7dcf597b98bee68ae6ceeb79e23aaf5d479d4e622e738b9357adf31c5282e777f45bcd2e45dfeeb202eec869b", + "0x0014ced77e42df8602549fdf9b8509d4cb6765e02256219619e2022ebf3b7351ab2ac989f207705098a7f2ba9c03066ffdc8ff2a1dd40e7122a0b7c1f5ef560865", + "0x000776b3507c62932ac2528fa04352a9256c9ef956884cbd46586fe691d1966c250b9e2c294f862e3ccadabcc520c0e4b3ce76f2c31cb9b9d510260164000e829a", + "0x00158e457fc9a49a2e3b85543a47d928efbaea223d805c00d6a171401be8f462b40aa1a34840aa6a01e6ab7b169a8254d8486c854a87296b4a8adff786bc42ffe1", + "0x00167a9688bc4edcdce5895e61e4dcce61d9782e32350dcd47f1dabb213c2d6ee60c026fa00fd964e531737d1921efbe9dcd5fb9c53c6e9b33f86bd5be8977e0bb", + "0x01260b88a7a51caa160405b0d2eceac1967b2c627d2e27977d29709fcae7255d1d04040000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000009b5ea0519f6e20c36338989b6accc7cf3384eac2f0a083e82730bca1775444092d4ad0767fff6fc638c517285dc346e589c2964f80dc2a25e65791a97cfcaac500", + "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" + ], + "0x4cb1aB63aF5D8931Ce09673EbD8ae2ce16fD6571": [ + "0x0011bbe37e025f2f1fe0eeda15da5c5b7d26f9a750a21b2c0adea8dfb05d9fda002ad83ec511f3b9b9602031bb287c9a7c62da9a3b4a5176d038404e9b09984b7b", + "0x00043f02100f3d7b548eb3d98bc5a41c22e50be1c7dcf597b98bee68ae6ceeb79e23aaf5d479d4e622e738b9357adf31c5282e777f45bcd2e45dfeeb202eec869b", + "0x0014ced77e42df8602549fdf9b8509d4cb6765e02256219619e2022ebf3b7351ab2ac989f207705098a7f2ba9c03066ffdc8ff2a1dd40e7122a0b7c1f5ef560865", + "0x000776b3507c62932ac2528fa04352a9256c9ef956884cbd46586fe691d1966c250b9e2c294f862e3ccadabcc520c0e4b3ce76f2c31cb9b9d510260164000e829a", + "0x00000000000000000000000000000000000000000000000000000000000000000007bf2edb434c59317d8fd84be25207afe81b2684c0a568e995b090255e7bc7ca", + "0x002248f47a53d7e981b187961b71a36033d9ef59273228ec127666f43c5d0fd2c51947530837a96e5c6d0b82cd81f93438cb2f9212c8c66ebfdf45afcc8dfbb880", + "0x00000000000000000000000000000000000000000000000000000000000000000002169cb6193acba8dc5e98bf2ba5aaa8d7bf91e9158698f8586aa2112ef53364", + "0x000420293afd9880e1af19c4aed15dd069e728d2492291393a3ed165012ecd5d4f2fe8b70043185278f8f6c75d7057d75ebc62e82052f480dfc207de3b0e89700e", + "0x0129bdbea092f4f7e6de593fd1a16ddb50b1c2a6297d4ae141a60f8da631e4817504040000000000000000000000000000000000000000000000000000000000000000004b0056bc75e2d630ffffffffffffffffffffffffffffffffffff4b257dcfc85adcc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470000000000000000000000000000000000000000000000000000000000000000000", + "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" + ] + }, + "storageProofs": { + "0x34041eff1F32989BDaa95875e0f41AFD6294dCD4": { + "0x0000000000000000000000000000000000000000000000000000000000000005": [ + "0x000713d562ab52f868d79dab0cd7294e60592e190374df7fa5712119c3355eccb001cfc106c2c9d8b87cc477d65ee1cf7c2e88dec6640694117aa3138636ed8479", + "0x000bbe267bf07ad8ecfdda0efd06268db13d64805d38d5aa80eab4cf4c839dce8a2a69ad5b7872c79cdcb8c00d9088c8de8fc95bc5c71d4453375c7474030dc60e", + "0x001adc9fa414d6dcdd2067ac5ff304a2a8f971fc6952ffd8831237e1a2fdaed407057e691d71f327bec2101db98b4668208108ba2499442968f4eb99fdc0166b6d", + "0x0000000000000000000000000000000000000000000000000000000000000000000e60f6ee1629e337d9f458a40b6cf313fc0e0f64058f18e872ca2d46d452ce8f", + "0x0019b7277c1c5e2e63ba69b1fbb2730d65cc2ccbf347c70b2e30140061ae218fec030d8b41fa9be69e8a988a8be5918097e3207635e5e2eb5488e5b5014c727e2f", + "0x010e9449cefab8e4070797d09578e909e10a0ce4374ea5e4d4c608c2e11961af6801010000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571001200", + "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" + ], + "0x101e368776582e57ab3d116ffe2517c0a585cd5b23174b01e275c2d8329c3d83": [ + "0x000713d562ab52f868d79dab0cd7294e60592e190374df7fa5712119c3355eccb001cfc106c2c9d8b87cc477d65ee1cf7c2e88dec6640694117aa3138636ed8479", + "0x000bbe267bf07ad8ecfdda0efd06268db13d64805d38d5aa80eab4cf4c839dce8a2a69ad5b7872c79cdcb8c00d9088c8de8fc95bc5c71d4453375c7474030dc60e", + "0x0000000000000000000000000000000000000000000000000000000000000000002cea1f51864e28e75dd4c91f5b11febb50cd36e93ec82ec11c8c3698ec6d54f9", + "0x00000000000000000000000000000000000000000000000000000000000000000029039f3b51a7537dc054cc49653f2b7b4b8c8f270cd462dbf4eabfd006b743ea", + "0x02", + "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" + ], + "0x52d75039926638d3c558b2bdefb945d5be8dae29dedd1c313212a4d472d9fde5": [ + "0x000713d562ab52f868d79dab0cd7294e60592e190374df7fa5712119c3355eccb001cfc106c2c9d8b87cc477d65ee1cf7c2e88dec6640694117aa3138636ed8479", + "0x011a72e786805fbf3ae385ed702dcabebaf495521b5b1c71f071b424f767a5cf5b0101000000000000000000000000000000000000000000000000000000038d7ea4c67c1800", + "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" + ], + "0x5a158573daab1c353835da34297290f5f813859e4bb52de641691b875502523f": [ + "0x000713d562ab52f868d79dab0cd7294e60592e190374df7fa5712119c3355eccb001cfc106c2c9d8b87cc477d65ee1cf7c2e88dec6640694117aa3138636ed8479", + "0x011a72e786805fbf3ae385ed702dcabebaf495521b5b1c71f071b424f767a5cf5b0101000000000000000000000000000000000000000000000000000000038d7ea4c67c1800", + "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" + ], + "0xabbb5caa7dda850e60932de0934eb1f9d0f59695050f761dc64e443e5030a569": [ + "0x000713d562ab52f868d79dab0cd7294e60592e190374df7fa5712119c3355eccb001cfc106c2c9d8b87cc477d65ee1cf7c2e88dec6640694117aa3138636ed8479", + "0x000bbe267bf07ad8ecfdda0efd06268db13d64805d38d5aa80eab4cf4c839dce8a2a69ad5b7872c79cdcb8c00d9088c8de8fc95bc5c71d4453375c7474030dc60e", + "0x001adc9fa414d6dcdd2067ac5ff304a2a8f971fc6952ffd8831237e1a2fdaed407057e691d71f327bec2101db98b4668208108ba2499442968f4eb99fdc0166b6d", + "0x0002cdfe71b6ddb1fe6a08203910edb37d71d2d3a75456cd2c634c73fd4f11dab30000000000000000000000000000000000000000000000000000000000000000", + "0x02", + "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" + ], + "0xada5013122d395ba3c54772283fb069b10426056ef8ca54750cb9bb552a59e7d": [ + "0x000713d562ab52f868d79dab0cd7294e60592e190374df7fa5712119c3355eccb001cfc106c2c9d8b87cc477d65ee1cf7c2e88dec6640694117aa3138636ed8479", + "0x000bbe267bf07ad8ecfdda0efd06268db13d64805d38d5aa80eab4cf4c839dce8a2a69ad5b7872c79cdcb8c00d9088c8de8fc95bc5c71d4453375c7474030dc60e", + "0x001adc9fa414d6dcdd2067ac5ff304a2a8f971fc6952ffd8831237e1a2fdaed407057e691d71f327bec2101db98b4668208108ba2499442968f4eb99fdc0166b6d", + "0x0002cdfe71b6ddb1fe6a08203910edb37d71d2d3a75456cd2c634c73fd4f11dab30000000000000000000000000000000000000000000000000000000000000000", + "0x02", + "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" + ] + } + } + }, + "executionResults": [ + { + "gas": 54848, + "failed": false, + "returnValue": "0000000000000000000000000000000000000000000000000000000000000001", + "from": { + "address": "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "nonce": 75, + "balance": "0x56bc75e2d630ffffffffffffffffffffffffffffffffffff4b257dcfc85adc", + "codeHash": "0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470" + }, + "to": { + "address": "0x34041eff1f32989bdaa95875e0f41afd6294dcd4", + "nonce": 1, + "balance": "0x0", + "codeHash": "0x9b5ea0519f6e20c36338989b6accc7cf3384eac2f0a083e82730bca177544409" + }, + "accountAfter": [ + { + "address": "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "nonce": 76, + "balance": "0x56bc75e2d630ffffffffffffffffffffffffffffffffffff4b256ffe216b9c", + "codeHash": "0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470" + }, + { + "address": "0x34041eff1f32989bdaa95875e0f41afd6294dcd4", + "nonce": 1, + "balance": "0x0", + "codeHash": "0x9b5ea0519f6e20c36338989b6accc7cf3384eac2f0a083e82730bca177544409" + } + ], + "codeHash": "0x9b5ea0519f6e20c36338989b6accc7cf3384eac2f0a083e82730bca177544409", + "byteCode": "0x608060405234801561001057600080fd5b506004361061010b5760003560e01c80635c975abb116100a257806395d89b411161007157806395d89b41146102945780639dc29fac146102b2578063a457c2d7146102ce578063a9059cbb146102fe578063dd62ed3e1461032e5761010b565b80635c975abb1461022057806370a082311461023e5780638456cb591461026e5780638e50817a146102785761010b565b8063313ce567116100de578063313ce567146101ac57806339509351146101ca5780633f4ba83a146101fa57806340c10f19146102045761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015e57806323b872dd1461017c575b600080fd5b61011861035e565b6040516101259190611a15565b60405180910390f35b6101486004803603810190610143919061178a565b6103f0565b60405161015591906119fa565b60405180910390f35b61016661040e565b6040516101739190611bb7565b60405180910390f35b6101966004803603810190610191919061173b565b610418565b6040516101a391906119fa565b60405180910390f35b6101b46104f1565b6040516101c19190611bd2565b60405180910390f35b6101e460048036038101906101df919061178a565b610508565b6040516101f191906119fa565b60405180910390f35b6102026105bb565b005b61021e6004803603810190610219919061178a565b610655565b005b610228610743565b60405161023591906119fa565b60405180910390f35b610258600480360381019061025391906116d6565b61075a565b6040516102659190611bb7565b60405180910390f35b6102766107a2565b005b610292600480360381019061028d91906116ff565b61083c565b005b61029c610952565b6040516102a99190611a15565b60405180910390f35b6102cc60048036038101906102c7919061178a565b6109e4565b005b6102e860048036038101906102e3919061178a565b610ad2565b6040516102f591906119fa565b60405180910390f35b6103186004803603810190610313919061178a565b610b9f565b60405161032591906119fa565b60405180910390f35b610348600480360381019061034391906116ff565b610bbd565b6040516103559190611bb7565b60405180910390f35b60606003805461036d90611d51565b80601f016020809104026020016040519081016040528092919081815260200182805461039990611d51565b80156103e65780601f106103bb576101008083540402835291602001916103e6565b820191906000526020600020905b8154815290600101906020018083116103c957829003601f168201915b5050505050905090565b60006104046103fd610c44565b8484610c4c565b6001905092915050565b6000600254905090565b6000610425848484610e17565b6104e684610431610c44565b6104e18560405180606001604052806028815260200161213960289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610497610c44565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110ac9092919063ffffffff16565b610c4c565b600190509392505050565b6000600560009054906101000a900460ff16905090565b60006105b1610515610c44565b846105ac8560016000610526610c44565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461111090919063ffffffff16565b610c4c565b6001905092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461064b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161064290611ab7565b60405180910390fd5b61065361116e565b565b600560019054906101000a900460ff16156106a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161069c90611ad7565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610735576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161072c90611ab7565b60405180910390fd5b61073f8282611218565b5050565b6000600560019054906101000a900460ff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610832576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082990611ab7565b60405180910390fd5b61083a6113ac565b565b600560029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146108cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c390611b37565b60405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b60606004805461096190611d51565b80601f016020809104026020016040519081016040528092919081815260200182805461098d90611d51565b80156109da5780601f106109af576101008083540402835291602001916109da565b820191906000526020600020905b8154815290600101906020018083116109bd57829003601f168201915b5050505050905090565b600560019054906101000a900460ff1615610a34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2b90611ad7565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610ac4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abb90611ab7565b60405180910390fd5b610ace8282611457565b5050565b6000610b95610adf610c44565b84610b90856040518060600160405280602581526020016121616025913960016000610b09610c44565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110ac9092919063ffffffff16565b610c4c565b6001905092915050565b6000610bb3610bac610c44565b8484610e17565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb390611b57565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2390611a77565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e0a9190611bb7565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7e90611b17565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ef7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eee90611a37565b60405180910390fd5b610f02838383611605565b610f6d81604051806060016040528060268152602001612113602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110ac9092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611000816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461111090919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161109f9190611bb7565b60405180910390a3505050565b60008383111582906110f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110eb9190611a15565b60405180910390fd5b50600083856111039190611c5f565b9050809150509392505050565b600080828461111f9190611c09565b905083811015611164576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115b90611a97565b60405180910390fd5b8091505092915050565b600560019054906101000a900460ff166111bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b490611a57565b60405180910390fd5b6000600560016101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611201610c44565b60405161120e91906119df565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611288576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127f90611b77565b60405180910390fd5b61129460008383611605565b6112a98160025461111090919063ffffffff16565b600281905550611300816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461111090919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516113a09190611bb7565b60405180910390a35050565b600560019054906101000a900460ff16156113fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f390611ad7565b60405180910390fd5b6001600560016101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611440610c44565b60405161144d91906119df565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114be90611af7565b60405180910390fd5b6114d382600083611605565b61153e816040518060600160405280602281526020016120f1602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110ac9092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506115958160025461165d90919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516115f99190611bb7565b60405180910390a35050565b6116108383836116a7565b611618610743565b15611658576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164f90611b97565b60405180910390fd5b505050565b600061169f83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506110ac565b905092915050565b505050565b6000813590506116bb816120c2565b92915050565b6000813590506116d0816120d9565b92915050565b6000602082840312156116e857600080fd5b60006116f6848285016116ac565b91505092915050565b6000806040838503121561171257600080fd5b6000611720858286016116ac565b9250506020611731858286016116ac565b9150509250929050565b60008060006060848603121561175057600080fd5b600061175e868287016116ac565b935050602061176f868287016116ac565b9250506040611780868287016116c1565b9150509250925092565b6000806040838503121561179d57600080fd5b60006117ab858286016116ac565b92505060206117bc858286016116c1565b9150509250929050565b6117cf81611ce8565b82525050565b6117de81611ca5565b82525050565b60006117ef82611bed565b6117f98185611bf8565b9350611809818560208601611d1e565b61181281611de1565b840191505092915050565b600061182a602383611bf8565b915061183582611df2565b604082019050919050565b600061184d601483611bf8565b915061185882611e41565b602082019050919050565b6000611870602283611bf8565b915061187b82611e6a565b604082019050919050565b6000611893601b83611bf8565b915061189e82611eb9565b602082019050919050565b60006118b6600b83611bf8565b91506118c182611ee2565b602082019050919050565b60006118d9601083611bf8565b91506118e482611f0b565b602082019050919050565b60006118fc602183611bf8565b915061190782611f34565b604082019050919050565b600061191f602583611bf8565b915061192a82611f83565b604082019050919050565b6000611942600c83611bf8565b915061194d82611fd2565b602082019050919050565b6000611965602483611bf8565b915061197082611ffb565b604082019050919050565b6000611988601f83611bf8565b91506119938261204a565b602082019050919050565b60006119ab602a83611bf8565b91506119b682612073565b604082019050919050565b6119ca81611cd1565b82525050565b6119d981611cdb565b82525050565b60006020820190506119f460008301846117c6565b92915050565b6000602082019050611a0f60008301846117d5565b92915050565b60006020820190508181036000830152611a2f81846117e4565b905092915050565b60006020820190508181036000830152611a508161181d565b9050919050565b60006020820190508181036000830152611a7081611840565b9050919050565b60006020820190508181036000830152611a9081611863565b9050919050565b60006020820190508181036000830152611ab081611886565b9050919050565b60006020820190508181036000830152611ad0816118a9565b9050919050565b60006020820190508181036000830152611af0816118cc565b9050919050565b60006020820190508181036000830152611b10816118ef565b9050919050565b60006020820190508181036000830152611b3081611912565b9050919050565b60006020820190508181036000830152611b5081611935565b9050919050565b60006020820190508181036000830152611b7081611958565b9050919050565b60006020820190508181036000830152611b908161197b565b9050919050565b60006020820190508181036000830152611bb08161199e565b9050919050565b6000602082019050611bcc60008301846119c1565b92915050565b6000602082019050611be760008301846119d0565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611c1482611cd1565b9150611c1f83611cd1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611c5457611c53611d83565b5b828201905092915050565b6000611c6a82611cd1565b9150611c7583611cd1565b925082821015611c8857611c87611d83565b5b828203905092915050565b6000611c9e82611cb1565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b6000611cf382611cfa565b9050919050565b6000611d0582611d0c565b9050919050565b6000611d1782611cb1565b9050919050565b60005b83811015611d3c578082015181840152602081019050611d21565b83811115611d4b576000848401525b50505050565b60006002820490506001821680611d6957607f821691505b60208210811415611d7d57611d7c611db2565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b7f6e6f7420616c6c6f776564000000000000000000000000000000000000000000600082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f6f6e6c7920466163746f72790000000000000000000000000000000000000000600082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b7f45524332305061757361626c653a20746f6b656e207472616e7366657220776860008201527f696c652070617573656400000000000000000000000000000000000000000000602082015250565b6120cb81611c93565b81146120d657600080fd5b50565b6120e281611cd1565b81146120ed57600080fd5b5056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122050720249c11bf2bf6da8b1770af05168068be0eee81154cac03b74b0ab3b6a3f64736f6c63430008040033", + "structLogs": [ + { + "pc": 0, + "op": "PUSH1", + "gas": 3000364, + "gasCost": 3, + "depth": 1 + }, + { + "pc": 2, + "op": "PUSH1", + "gas": 3000361, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80" + ] + }, + { + "pc": 4, + "op": "MSTORE", + "gas": 3000358, + "gasCost": 12, + "depth": 1, + "stack": [ + "0x80", + "0x40" + ] + }, + { + "pc": 5, + "op": "CALLVALUE", + "gas": 3000346, + "gasCost": 2, + "depth": 1 + }, + { + "pc": 6, + "op": "DUP1", + "gas": 3000344, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 7, + "op": "ISZERO", + "gas": 3000341, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0", + "0x0" + ] + }, + { + "pc": 8, + "op": "PUSH2", + "gas": 3000338, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0", + "0x1" + ] + }, + { + "pc": 11, + "op": "JUMPI", + "gas": 3000335, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x0", + "0x1", + "0x10" + ] + }, + { + "pc": 16, + "op": "JUMPDEST", + "gas": 3000325, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 17, + "op": "POP", + "gas": 3000324, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 18, + "op": "PUSH1", + "gas": 3000322, + "gasCost": 3, + "depth": 1 + }, + { + "pc": 20, + "op": "CALLDATASIZE", + "gas": 3000319, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x4" + ] + }, + { + "pc": 21, + "op": "LT", + "gas": 3000317, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4", + "0x44" + ] + }, + { + "pc": 22, + "op": "PUSH2", + "gas": 3000314, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 25, + "op": "JUMPI", + "gas": 3000311, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x0", + "0x10b" + ] + }, + { + "pc": 26, + "op": "PUSH1", + "gas": 3000301, + "gasCost": 3, + "depth": 1 + }, + { + "pc": 28, + "op": "CALLDATALOAD", + "gas": 3000298, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 29, + "op": "PUSH1", + "gas": 3000295, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb00000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 31, + "op": "SHR", + "gas": 3000292, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb00000000000000000000000000000000000000000000000000000000", + "0xe0" + ] + }, + { + "pc": 32, + "op": "DUP1", + "gas": 3000289, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb" + ] + }, + { + "pc": 33, + "op": "PUSH4", + "gas": 3000286, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0xa9059cbb" + ] + }, + { + "pc": 38, + "op": "GT", + "gas": 3000283, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0xa9059cbb", + "0x5c975abb" + ] + }, + { + "pc": 39, + "op": "PUSH2", + "gas": 3000280, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x0" + ] + }, + { + "pc": 42, + "op": "JUMPI", + "gas": 3000277, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x0", + "0xa2" + ] + }, + { + "pc": 43, + "op": "DUP1", + "gas": 3000267, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb" + ] + }, + { + "pc": 44, + "op": "PUSH4", + "gas": 3000264, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0xa9059cbb" + ] + }, + { + "pc": 49, + "op": "GT", + "gas": 3000261, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0xa9059cbb", + "0x95d89b41" + ] + }, + { + "pc": 50, + "op": "PUSH2", + "gas": 3000258, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x0" + ] + }, + { + "pc": 53, + "op": "JUMPI", + "gas": 3000255, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x0", + "0x71" + ] + }, + { + "pc": 54, + "op": "DUP1", + "gas": 3000245, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb" + ] + }, + { + "pc": 55, + "op": "PUSH4", + "gas": 3000242, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0xa9059cbb" + ] + }, + { + "pc": 60, + "op": "EQ", + "gas": 3000239, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0xa9059cbb", + "0x95d89b41" + ] + }, + { + "pc": 61, + "op": "PUSH2", + "gas": 3000236, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x0" + ] + }, + { + "pc": 64, + "op": "JUMPI", + "gas": 3000233, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x0", + "0x294" + ] + }, + { + "pc": 65, + "op": "DUP1", + "gas": 3000223, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb" + ] + }, + { + "pc": 66, + "op": "PUSH4", + "gas": 3000220, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0xa9059cbb" + ] + }, + { + "pc": 71, + "op": "EQ", + "gas": 3000217, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0xa9059cbb", + "0x9dc29fac" + ] + }, + { + "pc": 72, + "op": "PUSH2", + "gas": 3000214, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x0" + ] + }, + { + "pc": 75, + "op": "JUMPI", + "gas": 3000211, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x0", + "0x2b2" + ] + }, + { + "pc": 76, + "op": "DUP1", + "gas": 3000201, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb" + ] + }, + { + "pc": 77, + "op": "PUSH4", + "gas": 3000198, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0xa9059cbb" + ] + }, + { + "pc": 82, + "op": "EQ", + "gas": 3000195, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0xa9059cbb", + "0xa457c2d7" + ] + }, + { + "pc": 83, + "op": "PUSH2", + "gas": 3000192, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x0" + ] + }, + { + "pc": 86, + "op": "JUMPI", + "gas": 3000189, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x0", + "0x2ce" + ] + }, + { + "pc": 87, + "op": "DUP1", + "gas": 3000179, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb" + ] + }, + { + "pc": 88, + "op": "PUSH4", + "gas": 3000176, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0xa9059cbb" + ] + }, + { + "pc": 93, + "op": "EQ", + "gas": 3000173, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0xa9059cbb", + "0xa9059cbb" + ] + }, + { + "pc": 94, + "op": "PUSH2", + "gas": 3000170, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x1" + ] + }, + { + "pc": 97, + "op": "JUMPI", + "gas": 3000167, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x1", + "0x2fe" + ] + }, + { + "pc": 766, + "op": "JUMPDEST", + "gas": 3000157, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb" + ] + }, + { + "pc": 767, + "op": "PUSH2", + "gas": 3000156, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb" + ] + }, + { + "pc": 770, + "op": "PUSH1", + "gas": 3000153, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318" + ] + }, + { + "pc": 772, + "op": "DUP1", + "gas": 3000150, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4" + ] + }, + { + "pc": 773, + "op": "CALLDATASIZE", + "gas": 3000147, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x4" + ] + }, + { + "pc": 774, + "op": "SUB", + "gas": 3000145, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x4", + "0x44" + ] + }, + { + "pc": 775, + "op": "DUP2", + "gas": 3000142, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x40" + ] + }, + { + "pc": 776, + "op": "ADD", + "gas": 3000139, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x40", + "0x4" + ] + }, + { + "pc": 777, + "op": "SWAP1", + "gas": 3000136, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x44" + ] + }, + { + "pc": 778, + "op": "PUSH2", + "gas": 3000133, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x44", + "0x4" + ] + }, + { + "pc": 781, + "op": "SWAP2", + "gas": 3000130, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x44", + "0x4", + "0x313" + ] + }, + { + "pc": 782, + "op": "SWAP1", + "gas": 3000127, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x4", + "0x44" + ] + }, + { + "pc": 783, + "op": "PUSH2", + "gas": 3000124, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4" + ] + }, + { + "pc": 786, + "op": "JUMP", + "gas": 3000121, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x178a" + ] + }, + { + "pc": 6026, + "op": "JUMPDEST", + "gas": 3000113, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4" + ] + }, + { + "pc": 6027, + "op": "PUSH1", + "gas": 3000112, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4" + ] + }, + { + "pc": 6029, + "op": "DUP1", + "gas": 3000109, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0" + ] + }, + { + "pc": 6030, + "op": "PUSH1", + "gas": 3000106, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0" + ] + }, + { + "pc": 6032, + "op": "DUP4", + "gas": 3000103, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x40" + ] + }, + { + "pc": 6033, + "op": "DUP6", + "gas": 3000100, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x40", + "0x4" + ] + }, + { + "pc": 6034, + "op": "SUB", + "gas": 3000097, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x40", + "0x4", + "0x44" + ] + }, + { + "pc": 6035, + "op": "SLT", + "gas": 3000094, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x40", + "0x40" + ] + }, + { + "pc": 6036, + "op": "ISZERO", + "gas": 3000091, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 6037, + "op": "PUSH2", + "gas": 3000088, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x1" + ] + }, + { + "pc": 6040, + "op": "JUMPI", + "gas": 3000085, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x1", + "0x179d" + ] + }, + { + "pc": 6045, + "op": "JUMPDEST", + "gas": 3000075, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0" + ] + }, + { + "pc": 6046, + "op": "PUSH1", + "gas": 3000074, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0" + ] + }, + { + "pc": 6048, + "op": "PUSH2", + "gas": 3000071, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 6051, + "op": "DUP6", + "gas": 3000068, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab" + ] + }, + { + "pc": 6052, + "op": "DUP3", + "gas": 3000065, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44" + ] + }, + { + "pc": 6053, + "op": "DUP7", + "gas": 3000062, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x0" + ] + }, + { + "pc": 6054, + "op": "ADD", + "gas": 3000059, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x0", + "0x4" + ] + }, + { + "pc": 6055, + "op": "PUSH2", + "gas": 3000056, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4" + ] + }, + { + "pc": 6058, + "op": "JUMP", + "gas": 3000053, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x16ac" + ] + }, + { + "pc": 5804, + "op": "JUMPDEST", + "gas": 3000045, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4" + ] + }, + { + "pc": 5805, + "op": "PUSH1", + "gas": 3000044, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4" + ] + }, + { + "pc": 5807, + "op": "DUP2", + "gas": 3000041, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x0" + ] + }, + { + "pc": 5808, + "op": "CALLDATALOAD", + "gas": 3000038, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x0", + "0x4" + ] + }, + { + "pc": 5809, + "op": "SWAP1", + "gas": 3000035, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x0", + "0x1" + ] + }, + { + "pc": 5810, + "op": "POP", + "gas": 3000032, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x1", + "0x0" + ] + }, + { + "pc": 5811, + "op": "PUSH2", + "gas": 3000030, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x1" + ] + }, + { + "pc": 5814, + "op": "DUP2", + "gas": 3000027, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x1", + "0x16bb" + ] + }, + { + "pc": 5815, + "op": "PUSH2", + "gas": 3000024, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x1", + "0x16bb", + "0x1" + ] + }, + { + "pc": 5818, + "op": "JUMP", + "gas": 3000021, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x1", + "0x16bb", + "0x1", + "0x20c2" + ] + }, + { + "pc": 8386, + "op": "JUMPDEST", + "gas": 3000013, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x1", + "0x16bb", + "0x1" + ] + }, + { + "pc": 8387, + "op": "PUSH2", + "gas": 3000012, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x1", + "0x16bb", + "0x1" + ] + }, + { + "pc": 8390, + "op": "DUP2", + "gas": 3000009, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x1", + "0x16bb", + "0x1", + "0x20cb" + ] + }, + { + "pc": 8391, + "op": "PUSH2", + "gas": 3000006, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x1", + "0x16bb", + "0x1", + "0x20cb", + "0x1" + ] + }, + { + "pc": 8394, + "op": "JUMP", + "gas": 3000003, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x1", + "0x16bb", + "0x1", + "0x20cb", + "0x1", + "0x1c93" + ] + }, + { + "pc": 7315, + "op": "JUMPDEST", + "gas": 2999995, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x1", + "0x16bb", + "0x1", + "0x20cb", + "0x1" + ] + }, + { + "pc": 7316, + "op": "PUSH1", + "gas": 2999994, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x1", + "0x16bb", + "0x1", + "0x20cb", + "0x1" + ] + }, + { + "pc": 7318, + "op": "PUSH2", + "gas": 2999991, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x1", + "0x16bb", + "0x1", + "0x20cb", + "0x1", + "0x0" + ] + }, + { + "pc": 7321, + "op": "DUP3", + "gas": 2999988, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x1", + "0x16bb", + "0x1", + "0x20cb", + "0x1", + "0x0", + "0x1c9e" + ] + }, + { + "pc": 7322, + "op": "PUSH2", + "gas": 2999985, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x1", + "0x16bb", + "0x1", + "0x20cb", + "0x1", + "0x0", + "0x1c9e", + "0x1" + ] + }, + { + "pc": 7325, + "op": "JUMP", + "gas": 2999982, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x1", + "0x16bb", + "0x1", + "0x20cb", + "0x1", + "0x0", + "0x1c9e", + "0x1", + "0x1cb1" + ] + }, + { + "pc": 7345, + "op": "JUMPDEST", + "gas": 2999974, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x1", + "0x16bb", + "0x1", + "0x20cb", + "0x1", + "0x0", + "0x1c9e", + "0x1" + ] + }, + { + "pc": 7346, + "op": "PUSH1", + "gas": 2999973, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x1", + "0x16bb", + "0x1", + "0x20cb", + "0x1", + "0x0", + "0x1c9e", + "0x1" + ] + }, + { + "pc": 7348, + "op": "PUSH20", + "gas": 2999970, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x1", + "0x16bb", + "0x1", + "0x20cb", + "0x1", + "0x0", + "0x1c9e", + "0x1", + "0x0" + ] + }, + { + "pc": 7369, + "op": "DUP3", + "gas": 2999967, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x1", + "0x16bb", + "0x1", + "0x20cb", + "0x1", + "0x0", + "0x1c9e", + "0x1", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 7370, + "op": "AND", + "gas": 2999964, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x1", + "0x16bb", + "0x1", + "0x20cb", + "0x1", + "0x0", + "0x1c9e", + "0x1", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x1" + ] + }, + { + "pc": 7371, + "op": "SWAP1", + "gas": 2999961, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x1", + "0x16bb", + "0x1", + "0x20cb", + "0x1", + "0x0", + "0x1c9e", + "0x1", + "0x0", + "0x1" + ] + }, + { + "pc": 7372, + "op": "POP", + "gas": 2999958, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x1", + "0x16bb", + "0x1", + "0x20cb", + "0x1", + "0x0", + "0x1c9e", + "0x1", + "0x1", + "0x0" + ] + }, + { + "pc": 7373, + "op": "SWAP2", + "gas": 2999956, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x1", + "0x16bb", + "0x1", + "0x20cb", + "0x1", + "0x0", + "0x1c9e", + "0x1", + "0x1" + ] + }, + { + "pc": 7374, + "op": "SWAP1", + "gas": 2999953, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x1", + "0x16bb", + "0x1", + "0x20cb", + "0x1", + "0x0", + "0x1", + "0x1", + "0x1c9e" + ] + }, + { + "pc": 7375, + "op": "POP", + "gas": 2999950, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x1", + "0x16bb", + "0x1", + "0x20cb", + "0x1", + "0x0", + "0x1", + "0x1c9e", + "0x1" + ] + }, + { + "pc": 7376, + "op": "JUMP", + "gas": 2999948, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x1", + "0x16bb", + "0x1", + "0x20cb", + "0x1", + "0x0", + "0x1", + "0x1c9e" + ] + }, + { + "pc": 7326, + "op": "JUMPDEST", + "gas": 2999940, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x1", + "0x16bb", + "0x1", + "0x20cb", + "0x1", + "0x0", + "0x1" + ] + }, + { + "pc": 7327, + "op": "SWAP1", + "gas": 2999939, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x1", + "0x16bb", + "0x1", + "0x20cb", + "0x1", + "0x0", + "0x1" + ] + }, + { + "pc": 7328, + "op": "POP", + "gas": 2999936, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x1", + "0x16bb", + "0x1", + "0x20cb", + "0x1", + "0x1", + "0x0" + ] + }, + { + "pc": 7329, + "op": "SWAP2", + "gas": 2999934, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x1", + "0x16bb", + "0x1", + "0x20cb", + "0x1", + "0x1" + ] + }, + { + "pc": 7330, + "op": "SWAP1", + "gas": 2999931, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x1", + "0x16bb", + "0x1", + "0x1", + "0x1", + "0x20cb" + ] + }, + { + "pc": 7331, + "op": "POP", + "gas": 2999928, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x1", + "0x16bb", + "0x1", + "0x1", + "0x20cb", + "0x1" + ] + }, + { + "pc": 7332, + "op": "JUMP", + "gas": 2999926, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x1", + "0x16bb", + "0x1", + "0x1", + "0x20cb" + ] + }, + { + "pc": 8395, + "op": "JUMPDEST", + "gas": 2999918, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x1", + "0x16bb", + "0x1", + "0x1" + ] + }, + { + "pc": 8396, + "op": "DUP2", + "gas": 2999917, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x1", + "0x16bb", + "0x1", + "0x1" + ] + }, + { + "pc": 8397, + "op": "EQ", + "gas": 2999914, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x1", + "0x16bb", + "0x1", + "0x1", + "0x1" + ] + }, + { + "pc": 8398, + "op": "PUSH2", + "gas": 2999911, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x1", + "0x16bb", + "0x1", + "0x1" + ] + }, + { + "pc": 8401, + "op": "JUMPI", + "gas": 2999908, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x1", + "0x16bb", + "0x1", + "0x1", + "0x20d6" + ] + }, + { + "pc": 8406, + "op": "JUMPDEST", + "gas": 2999898, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x1", + "0x16bb", + "0x1" + ] + }, + { + "pc": 8407, + "op": "POP", + "gas": 2999897, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x1", + "0x16bb", + "0x1" + ] + }, + { + "pc": 8408, + "op": "JUMP", + "gas": 2999895, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x1", + "0x16bb" + ] + }, + { + "pc": 5819, + "op": "JUMPDEST", + "gas": 2999887, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x1" + ] + }, + { + "pc": 5820, + "op": "SWAP3", + "gas": 2999886, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x1" + ] + }, + { + "pc": 5821, + "op": "SWAP2", + "gas": 2999883, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x1", + "0x44", + "0x4", + "0x17ab" + ] + }, + { + "pc": 5822, + "op": "POP", + "gas": 2999880, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x1", + "0x17ab", + "0x4", + "0x44" + ] + }, + { + "pc": 5823, + "op": "POP", + "gas": 2999878, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x1", + "0x17ab", + "0x4" + ] + }, + { + "pc": 5824, + "op": "JUMP", + "gas": 2999876, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x1", + "0x17ab" + ] + }, + { + "pc": 6059, + "op": "JUMPDEST", + "gas": 2999868, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x1" + ] + }, + { + "pc": 6060, + "op": "SWAP3", + "gas": 2999867, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x1" + ] + }, + { + "pc": 6061, + "op": "POP", + "gas": 2999864, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x1", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 6062, + "op": "POP", + "gas": 2999862, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x1", + "0x0", + "0x0" + ] + }, + { + "pc": 6063, + "op": "PUSH1", + "gas": 2999860, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x1", + "0x0" + ] + }, + { + "pc": 6065, + "op": "PUSH2", + "gas": 2999857, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x1", + "0x0", + "0x20" + ] + }, + { + "pc": 6068, + "op": "DUP6", + "gas": 2999854, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x1", + "0x0", + "0x20", + "0x17bc" + ] + }, + { + "pc": 6069, + "op": "DUP3", + "gas": 2999851, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x1", + "0x0", + "0x20", + "0x17bc", + "0x44" + ] + }, + { + "pc": 6070, + "op": "DUP7", + "gas": 2999848, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x1", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x20" + ] + }, + { + "pc": 6071, + "op": "ADD", + "gas": 2999845, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x1", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x20", + "0x4" + ] + }, + { + "pc": 6072, + "op": "PUSH2", + "gas": 2999842, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x1", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24" + ] + }, + { + "pc": 6075, + "op": "JUMP", + "gas": 2999839, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x1", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x16c1" + ] + }, + { + "pc": 5825, + "op": "JUMPDEST", + "gas": 2999831, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x1", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24" + ] + }, + { + "pc": 5826, + "op": "PUSH1", + "gas": 2999830, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x1", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24" + ] + }, + { + "pc": 5828, + "op": "DUP2", + "gas": 2999827, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x1", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x0" + ] + }, + { + "pc": 5829, + "op": "CALLDATALOAD", + "gas": 2999824, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x1", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x0", + "0x24" + ] + }, + { + "pc": 5830, + "op": "SWAP1", + "gas": 2999821, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x1", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x0", + "0x3e8" + ] + }, + { + "pc": 5831, + "op": "POP", + "gas": 2999818, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x1", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8", + "0x0" + ] + }, + { + "pc": 5832, + "op": "PUSH2", + "gas": 2999816, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x1", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8" + ] + }, + { + "pc": 5835, + "op": "DUP2", + "gas": 2999813, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x1", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8", + "0x16d0" + ] + }, + { + "pc": 5836, + "op": "PUSH2", + "gas": 2999810, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x1", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8", + "0x16d0", + "0x3e8" + ] + }, + { + "pc": 5839, + "op": "JUMP", + "gas": 2999807, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x1", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8", + "0x16d0", + "0x3e8", + "0x20d9" + ] + }, + { + "pc": 8409, + "op": "JUMPDEST", + "gas": 2999799, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x1", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8", + "0x16d0", + "0x3e8" + ] + }, + { + "pc": 8410, + "op": "PUSH2", + "gas": 2999798, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x1", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8", + "0x16d0", + "0x3e8" + ] + }, + { + "pc": 8413, + "op": "DUP2", + "gas": 2999795, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x1", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8", + "0x16d0", + "0x3e8", + "0x20e2" + ] + }, + { + "pc": 8414, + "op": "PUSH2", + "gas": 2999792, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x1", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8", + "0x16d0", + "0x3e8", + "0x20e2", + "0x3e8" + ] + }, + { + "pc": 8417, + "op": "JUMP", + "gas": 2999789, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x1", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8", + "0x16d0", + "0x3e8", + "0x20e2", + "0x3e8", + "0x1cd1" + ] + }, + { + "pc": 7377, + "op": "JUMPDEST", + "gas": 2999781, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x1", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8", + "0x16d0", + "0x3e8", + "0x20e2", + "0x3e8" + ] + }, + { + "pc": 7378, + "op": "PUSH1", + "gas": 2999780, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x1", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8", + "0x16d0", + "0x3e8", + "0x20e2", + "0x3e8" + ] + }, + { + "pc": 7380, + "op": "DUP2", + "gas": 2999777, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x1", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8", + "0x16d0", + "0x3e8", + "0x20e2", + "0x3e8", + "0x0" + ] + }, + { + "pc": 7381, + "op": "SWAP1", + "gas": 2999774, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x1", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8", + "0x16d0", + "0x3e8", + "0x20e2", + "0x3e8", + "0x0", + "0x3e8" + ] + }, + { + "pc": 7382, + "op": "POP", + "gas": 2999771, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x1", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8", + "0x16d0", + "0x3e8", + "0x20e2", + "0x3e8", + "0x3e8", + "0x0" + ] + }, + { + "pc": 7383, + "op": "SWAP2", + "gas": 2999769, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x1", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8", + "0x16d0", + "0x3e8", + "0x20e2", + "0x3e8", + "0x3e8" + ] + }, + { + "pc": 7384, + "op": "SWAP1", + "gas": 2999766, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x1", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8", + "0x16d0", + "0x3e8", + "0x3e8", + "0x3e8", + "0x20e2" + ] + }, + { + "pc": 7385, + "op": "POP", + "gas": 2999763, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x1", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8", + "0x16d0", + "0x3e8", + "0x3e8", + "0x20e2", + "0x3e8" + ] + }, + { + "pc": 7386, + "op": "JUMP", + "gas": 2999761, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x1", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8", + "0x16d0", + "0x3e8", + "0x3e8", + "0x20e2" + ] + }, + { + "pc": 8418, + "op": "JUMPDEST", + "gas": 2999753, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x1", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8", + "0x16d0", + "0x3e8", + "0x3e8" + ] + }, + { + "pc": 8419, + "op": "DUP2", + "gas": 2999752, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x1", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8", + "0x16d0", + "0x3e8", + "0x3e8" + ] + }, + { + "pc": 8420, + "op": "EQ", + "gas": 2999749, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x1", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8", + "0x16d0", + "0x3e8", + "0x3e8", + "0x3e8" + ] + }, + { + "pc": 8421, + "op": "PUSH2", + "gas": 2999746, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x1", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8", + "0x16d0", + "0x3e8", + "0x1" + ] + }, + { + "pc": 8424, + "op": "JUMPI", + "gas": 2999743, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x1", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8", + "0x16d0", + "0x3e8", + "0x1", + "0x20ed" + ] + }, + { + "pc": 8429, + "op": "JUMPDEST", + "gas": 2999733, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x1", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8", + "0x16d0", + "0x3e8" + ] + }, + { + "pc": 8430, + "op": "POP", + "gas": 2999732, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x1", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8", + "0x16d0", + "0x3e8" + ] + }, + { + "pc": 8431, + "op": "JUMP", + "gas": 2999730, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x1", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8", + "0x16d0" + ] + }, + { + "pc": 5840, + "op": "JUMPDEST", + "gas": 2999722, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x1", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8" + ] + }, + { + "pc": 5841, + "op": "SWAP3", + "gas": 2999721, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x1", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8" + ] + }, + { + "pc": 5842, + "op": "SWAP2", + "gas": 2999718, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x1", + "0x0", + "0x20", + "0x3e8", + "0x44", + "0x24", + "0x17bc" + ] + }, + { + "pc": 5843, + "op": "POP", + "gas": 2999715, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x1", + "0x0", + "0x20", + "0x3e8", + "0x17bc", + "0x24", + "0x44" + ] + }, + { + "pc": 5844, + "op": "POP", + "gas": 2999713, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x1", + "0x0", + "0x20", + "0x3e8", + "0x17bc", + "0x24" + ] + }, + { + "pc": 5845, + "op": "JUMP", + "gas": 2999711, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x1", + "0x0", + "0x20", + "0x3e8", + "0x17bc" + ] + }, + { + "pc": 6076, + "op": "JUMPDEST", + "gas": 2999703, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x1", + "0x0", + "0x20", + "0x3e8" + ] + }, + { + "pc": 6077, + "op": "SWAP2", + "gas": 2999702, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x1", + "0x0", + "0x20", + "0x3e8" + ] + }, + { + "pc": 6078, + "op": "POP", + "gas": 2999699, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x1", + "0x3e8", + "0x20", + "0x0" + ] + }, + { + "pc": 6079, + "op": "POP", + "gas": 2999697, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x1", + "0x3e8", + "0x20" + ] + }, + { + "pc": 6080, + "op": "SWAP3", + "gas": 2999695, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x1", + "0x3e8" + ] + }, + { + "pc": 6081, + "op": "POP", + "gas": 2999692, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x3e8", + "0x4", + "0x1", + "0x44" + ] + }, + { + "pc": 6082, + "op": "SWAP3", + "gas": 2999690, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x3e8", + "0x4", + "0x1" + ] + }, + { + "pc": 6083, + "op": "SWAP1", + "gas": 2999687, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x4", + "0x313" + ] + }, + { + "pc": 6084, + "op": "POP", + "gas": 2999684, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x313", + "0x4" + ] + }, + { + "pc": 6085, + "op": "JUMP", + "gas": 2999682, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x313" + ] + }, + { + "pc": 787, + "op": "JUMPDEST", + "gas": 2999674, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8" + ] + }, + { + "pc": 788, + "op": "PUSH2", + "gas": 2999673, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8" + ] + }, + { + "pc": 791, + "op": "JUMP", + "gas": 2999670, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0xb9f" + ] + }, + { + "pc": 2975, + "op": "JUMPDEST", + "gas": 2999662, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8" + ] + }, + { + "pc": 2976, + "op": "PUSH1", + "gas": 2999661, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8" + ] + }, + { + "pc": 2978, + "op": "PUSH2", + "gas": 2999658, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0" + ] + }, + { + "pc": 2981, + "op": "PUSH2", + "gas": 2999655, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3" + ] + }, + { + "pc": 2984, + "op": "PUSH2", + "gas": 2999652, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0xbac" + ] + }, + { + "pc": 2987, + "op": "JUMP", + "gas": 2999649, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0xbac", + "0xc44" + ] + }, + { + "pc": 3140, + "op": "JUMPDEST", + "gas": 2999641, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0xbac" + ] + }, + { + "pc": 3141, + "op": "PUSH1", + "gas": 2999640, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0xbac" + ] + }, + { + "pc": 3143, + "op": "CALLER", + "gas": 2999637, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0xbac", + "0x0" + ] + }, + { + "pc": 3144, + "op": "SWAP1", + "gas": 2999635, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0xbac", + "0x0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 3145, + "op": "POP", + "gas": 2999632, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0xbac", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0" + ] + }, + { + "pc": 3146, + "op": "SWAP1", + "gas": 2999630, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0xbac", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 3147, + "op": "JUMP", + "gas": 2999627, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xbac" + ] + }, + { + "pc": 2988, + "op": "JUMPDEST", + "gas": 2999619, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 2989, + "op": "DUP5", + "gas": 2999618, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 2990, + "op": "DUP5", + "gas": 2999615, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1" + ] + }, + { + "pc": 2991, + "op": "PUSH2", + "gas": 2999612, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8" + ] + }, + { + "pc": 2994, + "op": "JUMP", + "gas": 2999609, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xe17" + ] + }, + { + "pc": 3607, + "op": "JUMPDEST", + "gas": 2999601, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8" + ] + }, + { + "pc": 3608, + "op": "PUSH1", + "gas": 2999600, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8" + ] + }, + { + "pc": 3610, + "op": "PUSH20", + "gas": 2999597, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x0" + ] + }, + { + "pc": 3631, + "op": "AND", + "gas": 2999594, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 3632, + "op": "DUP4", + "gas": 2999591, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x0" + ] + }, + { + "pc": 3633, + "op": "PUSH20", + "gas": 2999588, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 3654, + "op": "AND", + "gas": 2999585, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 3655, + "op": "EQ", + "gas": 2999582, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 3656, + "op": "ISZERO", + "gas": 2999579, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x0" + ] + }, + { + "pc": 3657, + "op": "PUSH2", + "gas": 2999576, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1" + ] + }, + { + "pc": 3660, + "op": "JUMPI", + "gas": 2999573, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1", + "0xe87" + ] + }, + { + "pc": 3719, + "op": "JUMPDEST", + "gas": 2999563, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8" + ] + }, + { + "pc": 3720, + "op": "PUSH1", + "gas": 2999562, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8" + ] + }, + { + "pc": 3722, + "op": "PUSH20", + "gas": 2999559, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x0" + ] + }, + { + "pc": 3743, + "op": "AND", + "gas": 2999556, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 3744, + "op": "DUP3", + "gas": 2999553, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x0" + ] + }, + { + "pc": 3745, + "op": "PUSH20", + "gas": 2999550, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x0", + "0x1" + ] + }, + { + "pc": 3766, + "op": "AND", + "gas": 2999547, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x0", + "0x1", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 3767, + "op": "EQ", + "gas": 2999544, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x0", + "0x1" + ] + }, + { + "pc": 3768, + "op": "ISZERO", + "gas": 2999541, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x0" + ] + }, + { + "pc": 3769, + "op": "PUSH2", + "gas": 2999538, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1" + ] + }, + { + "pc": 3772, + "op": "JUMPI", + "gas": 2999535, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1", + "0xef7" + ] + }, + { + "pc": 3831, + "op": "JUMPDEST", + "gas": 2999525, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8" + ] + }, + { + "pc": 3832, + "op": "PUSH2", + "gas": 2999524, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8" + ] + }, + { + "pc": 3835, + "op": "DUP4", + "gas": 2999521, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf02" + ] + }, + { + "pc": 3836, + "op": "DUP4", + "gas": 2999518, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 3837, + "op": "DUP4", + "gas": 2999515, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1" + ] + }, + { + "pc": 3838, + "op": "PUSH2", + "gas": 2999512, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8" + ] + }, + { + "pc": 3841, + "op": "JUMP", + "gas": 2999509, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1605" + ] + }, + { + "pc": 5637, + "op": "JUMPDEST", + "gas": 2999501, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8" + ] + }, + { + "pc": 5638, + "op": "PUSH2", + "gas": 2999500, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8" + ] + }, + { + "pc": 5641, + "op": "DUP4", + "gas": 2999497, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1610" + ] + }, + { + "pc": 5642, + "op": "DUP4", + "gas": 2999494, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1610", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 5643, + "op": "DUP4", + "gas": 2999491, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1610", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1" + ] + }, + { + "pc": 5644, + "op": "PUSH2", + "gas": 2999488, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1610", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8" + ] + }, + { + "pc": 5647, + "op": "JUMP", + "gas": 2999485, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1610", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x16a7" + ] + }, + { + "pc": 5799, + "op": "JUMPDEST", + "gas": 2999477, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1610", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8" + ] + }, + { + "pc": 5800, + "op": "POP", + "gas": 2999476, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1610", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8" + ] + }, + { + "pc": 5801, + "op": "POP", + "gas": 2999474, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1610", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1" + ] + }, + { + "pc": 5802, + "op": "POP", + "gas": 2999472, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1610", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 5803, + "op": "JUMP", + "gas": 2999470, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1610" + ] + }, + { + "pc": 5648, + "op": "JUMPDEST", + "gas": 2999462, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8" + ] + }, + { + "pc": 5649, + "op": "PUSH2", + "gas": 2999461, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8" + ] + }, + { + "pc": 5652, + "op": "PUSH2", + "gas": 2999458, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1618" + ] + }, + { + "pc": 5655, + "op": "JUMP", + "gas": 2999455, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1618", + "0x743" + ] + }, + { + "pc": 1859, + "op": "JUMPDEST", + "gas": 2999447, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1618" + ] + }, + { + "pc": 1860, + "op": "PUSH1", + "gas": 2999446, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1618" + ] + }, + { + "pc": 1862, + "op": "PUSH1", + "gas": 2999443, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1618", + "0x0" + ] + }, + { + "pc": 1864, + "op": "PUSH1", + "gas": 2999440, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1618", + "0x0", + "0x5" + ] + }, + { + "pc": 1866, + "op": "SWAP1", + "gas": 2999437, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1618", + "0x0", + "0x5", + "0x1" + ] + }, + { + "pc": 1867, + "op": "SLOAD", + "gas": 2999434, + "gasCost": 2100, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1618", + "0x0", + "0x1", + "0x5" + ], + "storage": { + "0x0000000000000000000000000000000000000000000000000000000000000005": "0x000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd65710012" + }, + "extraData": { + "proofList": [ + { + "address": "0x34041eff1f32989bdaa95875e0f41afd6294dcd4", + "nonce": 1, + "balance": "0x0", + "codeHash": "0x9b5ea0519f6e20c36338989b6accc7cf3384eac2f0a083e82730bca177544409", + "storage": { + "key": "0x0000000000000000000000000000000000000000000000000000000000000005", + "value": "0x000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd65710012" + } + } + ] + } + }, + { + "pc": 1868, + "op": "SWAP1", + "gas": 2997334, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1618", + "0x0", + "0x1", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd65710012" + ] + }, + { + "pc": 1869, + "op": "PUSH2", + "gas": 2997331, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1618", + "0x0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd65710012", + "0x1" + ] + }, + { + "pc": 1872, + "op": "EXP", + "gas": 2997328, + "gasCost": 60, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1618", + "0x0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd65710012", + "0x1", + "0x100" + ] + }, + { + "pc": 1873, + "op": "SWAP1", + "gas": 2997268, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1618", + "0x0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd65710012", + "0x100" + ] + }, + { + "pc": 1874, + "op": "DIV", + "gas": 2997265, + "gasCost": 5, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1618", + "0x0", + "0x100", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd65710012" + ] + }, + { + "pc": 1875, + "op": "PUSH1", + "gas": 2997260, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1618", + "0x0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd657100" + ] + }, + { + "pc": 1877, + "op": "AND", + "gas": 2997257, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1618", + "0x0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd657100", + "0xff" + ] + }, + { + "pc": 1878, + "op": "SWAP1", + "gas": 2997254, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1618", + "0x0", + "0x0" + ] + }, + { + "pc": 1879, + "op": "POP", + "gas": 2997251, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1618", + "0x0", + "0x0" + ] + }, + { + "pc": 1880, + "op": "SWAP1", + "gas": 2997249, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1618", + "0x0" + ] + }, + { + "pc": 1881, + "op": "JUMP", + "gas": 2997246, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x0", + "0x1618" + ] + }, + { + "pc": 5656, + "op": "JUMPDEST", + "gas": 2997238, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x0" + ] + }, + { + "pc": 5657, + "op": "ISZERO", + "gas": 2997237, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x0" + ] + }, + { + "pc": 5658, + "op": "PUSH2", + "gas": 2997234, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1" + ] + }, + { + "pc": 5661, + "op": "JUMPI", + "gas": 2997231, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1", + "0x1658" + ] + }, + { + "pc": 5720, + "op": "JUMPDEST", + "gas": 2997221, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8" + ] + }, + { + "pc": 5721, + "op": "POP", + "gas": 2997220, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8" + ] + }, + { + "pc": 5722, + "op": "POP", + "gas": 2997218, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1" + ] + }, + { + "pc": 5723, + "op": "POP", + "gas": 2997216, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 5724, + "op": "JUMP", + "gas": 2997214, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf02" + ] + }, + { + "pc": 3842, + "op": "JUMPDEST", + "gas": 2997206, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8" + ] + }, + { + "pc": 3843, + "op": "PUSH2", + "gas": 2997205, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8" + ] + }, + { + "pc": 3846, + "op": "DUP2", + "gas": 2997202, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf6d" + ] + }, + { + "pc": 3847, + "op": "PUSH1", + "gas": 2997199, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf6d", + "0x3e8" + ] + }, + { + "pc": 3849, + "op": "MLOAD", + "gas": 2997196, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf6d", + "0x3e8", + "0x40" + ] + }, + { + "pc": 3850, + "op": "DUP1", + "gas": 2997193, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80" + ] + }, + { + "pc": 3851, + "op": "PUSH1", + "gas": 2997190, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x80" + ] + }, + { + "pc": 3853, + "op": "ADD", + "gas": 2997187, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x80", + "0x60" + ] + }, + { + "pc": 3854, + "op": "PUSH1", + "gas": 2997184, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0xe0" + ] + }, + { + "pc": 3856, + "op": "MSTORE", + "gas": 2997181, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0xe0", + "0x40" + ] + }, + { + "pc": 3857, + "op": "DUP1", + "gas": 2997178, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80" + ] + }, + { + "pc": 3858, + "op": "PUSH1", + "gas": 2997175, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x80" + ] + }, + { + "pc": 3860, + "op": "DUP2", + "gas": 2997172, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x80", + "0x26" + ] + }, + { + "pc": 3861, + "op": "MSTORE", + "gas": 2997169, + "gasCost": 9, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x80", + "0x26", + "0x80" + ] + }, + { + "pc": 3862, + "op": "PUSH1", + "gas": 2997160, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x80" + ] + }, + { + "pc": 3864, + "op": "ADD", + "gas": 2997157, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x80", + "0x20" + ] + }, + { + "pc": 3865, + "op": "PUSH2", + "gas": 2997154, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0xa0" + ] + }, + { + "pc": 3868, + "op": "PUSH1", + "gas": 2997151, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0xa0", + "0x2113" + ] + }, + { + "pc": 3870, + "op": "SWAP2", + "gas": 2997148, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0xa0", + "0x2113", + "0x26" + ] + }, + { + "pc": 3871, + "op": "CODECOPY", + "gas": 2997145, + "gasCost": 15, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x26", + "0x2113", + "0xa0" + ], + "extraData": { + "codeList": [ + "0x608060405234801561001057600080fd5b506004361061010b5760003560e01c80635c975abb116100a257806395d89b411161007157806395d89b41146102945780639dc29fac146102b2578063a457c2d7146102ce578063a9059cbb146102fe578063dd62ed3e1461032e5761010b565b80635c975abb1461022057806370a082311461023e5780638456cb591461026e5780638e50817a146102785761010b565b8063313ce567116100de578063313ce567146101ac57806339509351146101ca5780633f4ba83a146101fa57806340c10f19146102045761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015e57806323b872dd1461017c575b600080fd5b61011861035e565b6040516101259190611a15565b60405180910390f35b6101486004803603810190610143919061178a565b6103f0565b60405161015591906119fa565b60405180910390f35b61016661040e565b6040516101739190611bb7565b60405180910390f35b6101966004803603810190610191919061173b565b610418565b6040516101a391906119fa565b60405180910390f35b6101b46104f1565b6040516101c19190611bd2565b60405180910390f35b6101e460048036038101906101df919061178a565b610508565b6040516101f191906119fa565b60405180910390f35b6102026105bb565b005b61021e6004803603810190610219919061178a565b610655565b005b610228610743565b60405161023591906119fa565b60405180910390f35b610258600480360381019061025391906116d6565b61075a565b6040516102659190611bb7565b60405180910390f35b6102766107a2565b005b610292600480360381019061028d91906116ff565b61083c565b005b61029c610952565b6040516102a99190611a15565b60405180910390f35b6102cc60048036038101906102c7919061178a565b6109e4565b005b6102e860048036038101906102e3919061178a565b610ad2565b6040516102f591906119fa565b60405180910390f35b6103186004803603810190610313919061178a565b610b9f565b60405161032591906119fa565b60405180910390f35b610348600480360381019061034391906116ff565b610bbd565b6040516103559190611bb7565b60405180910390f35b60606003805461036d90611d51565b80601f016020809104026020016040519081016040528092919081815260200182805461039990611d51565b80156103e65780601f106103bb576101008083540402835291602001916103e6565b820191906000526020600020905b8154815290600101906020018083116103c957829003601f168201915b5050505050905090565b60006104046103fd610c44565b8484610c4c565b6001905092915050565b6000600254905090565b6000610425848484610e17565b6104e684610431610c44565b6104e18560405180606001604052806028815260200161213960289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610497610c44565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110ac9092919063ffffffff16565b610c4c565b600190509392505050565b6000600560009054906101000a900460ff16905090565b60006105b1610515610c44565b846105ac8560016000610526610c44565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461111090919063ffffffff16565b610c4c565b6001905092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461064b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161064290611ab7565b60405180910390fd5b61065361116e565b565b600560019054906101000a900460ff16156106a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161069c90611ad7565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610735576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161072c90611ab7565b60405180910390fd5b61073f8282611218565b5050565b6000600560019054906101000a900460ff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610832576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082990611ab7565b60405180910390fd5b61083a6113ac565b565b600560029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146108cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c390611b37565b60405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b60606004805461096190611d51565b80601f016020809104026020016040519081016040528092919081815260200182805461098d90611d51565b80156109da5780601f106109af576101008083540402835291602001916109da565b820191906000526020600020905b8154815290600101906020018083116109bd57829003601f168201915b5050505050905090565b600560019054906101000a900460ff1615610a34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2b90611ad7565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610ac4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abb90611ab7565b60405180910390fd5b610ace8282611457565b5050565b6000610b95610adf610c44565b84610b90856040518060600160405280602581526020016121616025913960016000610b09610c44565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110ac9092919063ffffffff16565b610c4c565b6001905092915050565b6000610bb3610bac610c44565b8484610e17565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb390611b57565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2390611a77565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e0a9190611bb7565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7e90611b17565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ef7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eee90611a37565b60405180910390fd5b610f02838383611605565b610f6d81604051806060016040528060268152602001612113602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110ac9092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611000816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461111090919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161109f9190611bb7565b60405180910390a3505050565b60008383111582906110f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110eb9190611a15565b60405180910390fd5b50600083856111039190611c5f565b9050809150509392505050565b600080828461111f9190611c09565b905083811015611164576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115b90611a97565b60405180910390fd5b8091505092915050565b600560019054906101000a900460ff166111bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b490611a57565b60405180910390fd5b6000600560016101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611201610c44565b60405161120e91906119df565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611288576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127f90611b77565b60405180910390fd5b61129460008383611605565b6112a98160025461111090919063ffffffff16565b600281905550611300816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461111090919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516113a09190611bb7565b60405180910390a35050565b600560019054906101000a900460ff16156113fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f390611ad7565b60405180910390fd5b6001600560016101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611440610c44565b60405161144d91906119df565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114be90611af7565b60405180910390fd5b6114d382600083611605565b61153e816040518060600160405280602281526020016120f1602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110ac9092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506115958160025461165d90919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516115f99190611bb7565b60405180910390a35050565b6116108383836116a7565b611618610743565b15611658576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164f90611b97565b60405180910390fd5b505050565b600061169f83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506110ac565b905092915050565b505050565b6000813590506116bb816120c2565b92915050565b6000813590506116d0816120d9565b92915050565b6000602082840312156116e857600080fd5b60006116f6848285016116ac565b91505092915050565b6000806040838503121561171257600080fd5b6000611720858286016116ac565b9250506020611731858286016116ac565b9150509250929050565b60008060006060848603121561175057600080fd5b600061175e868287016116ac565b935050602061176f868287016116ac565b9250506040611780868287016116c1565b9150509250925092565b6000806040838503121561179d57600080fd5b60006117ab858286016116ac565b92505060206117bc858286016116c1565b9150509250929050565b6117cf81611ce8565b82525050565b6117de81611ca5565b82525050565b60006117ef82611bed565b6117f98185611bf8565b9350611809818560208601611d1e565b61181281611de1565b840191505092915050565b600061182a602383611bf8565b915061183582611df2565b604082019050919050565b600061184d601483611bf8565b915061185882611e41565b602082019050919050565b6000611870602283611bf8565b915061187b82611e6a565b604082019050919050565b6000611893601b83611bf8565b915061189e82611eb9565b602082019050919050565b60006118b6600b83611bf8565b91506118c182611ee2565b602082019050919050565b60006118d9601083611bf8565b91506118e482611f0b565b602082019050919050565b60006118fc602183611bf8565b915061190782611f34565b604082019050919050565b600061191f602583611bf8565b915061192a82611f83565b604082019050919050565b6000611942600c83611bf8565b915061194d82611fd2565b602082019050919050565b6000611965602483611bf8565b915061197082611ffb565b604082019050919050565b6000611988601f83611bf8565b91506119938261204a565b602082019050919050565b60006119ab602a83611bf8565b91506119b682612073565b604082019050919050565b6119ca81611cd1565b82525050565b6119d981611cdb565b82525050565b60006020820190506119f460008301846117c6565b92915050565b6000602082019050611a0f60008301846117d5565b92915050565b60006020820190508181036000830152611a2f81846117e4565b905092915050565b60006020820190508181036000830152611a508161181d565b9050919050565b60006020820190508181036000830152611a7081611840565b9050919050565b60006020820190508181036000830152611a9081611863565b9050919050565b60006020820190508181036000830152611ab081611886565b9050919050565b60006020820190508181036000830152611ad0816118a9565b9050919050565b60006020820190508181036000830152611af0816118cc565b9050919050565b60006020820190508181036000830152611b10816118ef565b9050919050565b60006020820190508181036000830152611b3081611912565b9050919050565b60006020820190508181036000830152611b5081611935565b9050919050565b60006020820190508181036000830152611b7081611958565b9050919050565b60006020820190508181036000830152611b908161197b565b9050919050565b60006020820190508181036000830152611bb08161199e565b9050919050565b6000602082019050611bcc60008301846119c1565b92915050565b6000602082019050611be760008301846119d0565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611c1482611cd1565b9150611c1f83611cd1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611c5457611c53611d83565b5b828201905092915050565b6000611c6a82611cd1565b9150611c7583611cd1565b925082821015611c8857611c87611d83565b5b828203905092915050565b6000611c9e82611cb1565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b6000611cf382611cfa565b9050919050565b6000611d0582611d0c565b9050919050565b6000611d1782611cb1565b9050919050565b60005b83811015611d3c578082015181840152602081019050611d21565b83811115611d4b576000848401525b50505050565b60006002820490506001821680611d6957607f821691505b60208210811415611d7d57611d7c611db2565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b7f6e6f7420616c6c6f776564000000000000000000000000000000000000000000600082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f6f6e6c7920466163746f72790000000000000000000000000000000000000000600082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b7f45524332305061757361626c653a20746f6b656e207472616e7366657220776860008201527f696c652070617573656400000000000000000000000000000000000000000000602082015250565b6120cb81611c93565b81146120d657600080fd5b50565b6120e281611cd1565b81146120ed57600080fd5b5056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122050720249c11bf2bf6da8b1770af05168068be0eee81154cac03b74b0ab3b6a3f64736f6c63430008040033" + ] + } + }, + { + "pc": 3872, + "op": "PUSH1", + "gas": 2997130, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80" + ] + }, + { + "pc": 3874, + "op": "DUP1", + "gas": 2997127, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x0" + ] + }, + { + "pc": 3875, + "op": "DUP8", + "gas": 2997124, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x0", + "0x0" + ] + }, + { + "pc": 3876, + "op": "PUSH20", + "gas": 2997121, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 3897, + "op": "AND", + "gas": 2997118, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 3898, + "op": "PUSH20", + "gas": 2997115, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 3919, + "op": "AND", + "gas": 2997112, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 3920, + "op": "DUP2", + "gas": 2997109, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 3921, + "op": "MSTORE", + "gas": 2997106, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0" + ] + }, + { + "pc": 3922, + "op": "PUSH1", + "gas": 2997103, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x0", + "0x0" + ] + }, + { + "pc": 3924, + "op": "ADD", + "gas": 2997100, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x20" + ] + }, + { + "pc": 3925, + "op": "SWAP1", + "gas": 2997097, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x0", + "0x20" + ] + }, + { + "pc": 3926, + "op": "DUP2", + "gas": 2997094, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x20", + "0x0" + ] + }, + { + "pc": 3927, + "op": "MSTORE", + "gas": 2997091, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x20", + "0x0", + "0x20" + ] + }, + { + "pc": 3928, + "op": "PUSH1", + "gas": 2997088, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x20" + ] + }, + { + "pc": 3930, + "op": "ADD", + "gas": 2997085, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x20", + "0x20" + ] + }, + { + "pc": 3931, + "op": "PUSH1", + "gas": 2997082, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x40" + ] + }, + { + "pc": 3933, + "op": "SHA3", + "gas": 2997079, + "gasCost": 42, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x40", + "0x0" + ] + }, + { + "pc": 3934, + "op": "SLOAD", + "gas": 2997037, + "gasCost": 2100, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x5a158573daab1c353835da34297290f5f813859e4bb52de641691b875502523f" + ], + "storage": { + "0x0000000000000000000000000000000000000000000000000000000000000005": "0x000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd65710012", + "0x5a158573daab1c353835da34297290f5f813859e4bb52de641691b875502523f": "0x00000000000000000000000000000000000000000000000000038d7ea4c67c18" + }, + "extraData": { + "proofList": [ + { + "address": "0x34041eff1f32989bdaa95875e0f41afd6294dcd4", + "nonce": 1, + "balance": "0x0", + "codeHash": "0x9b5ea0519f6e20c36338989b6accc7cf3384eac2f0a083e82730bca177544409", + "storage": { + "key": "0x5a158573daab1c353835da34297290f5f813859e4bb52de641691b875502523f", + "value": "0x00000000000000000000000000000000000000000000000000038d7ea4c67c18" + } + } + ] + } + }, + { + "pc": 3935, + "op": "PUSH2", + "gas": 2994937, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x38d7ea4c67c18" + ] + }, + { + "pc": 3938, + "op": "SWAP1", + "gas": 2994934, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x38d7ea4c67c18", + "0x10ac" + ] + }, + { + "pc": 3939, + "op": "SWAP3", + "gas": 2994931, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x10ac", + "0x38d7ea4c67c18" + ] + }, + { + "pc": 3940, + "op": "SWAP2", + "gas": 2994928, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf6d", + "0x38d7ea4c67c18", + "0x80", + "0x10ac", + "0x3e8" + ] + }, + { + "pc": 3941, + "op": "SWAP1", + "gas": 2994925, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf6d", + "0x38d7ea4c67c18", + "0x3e8", + "0x10ac", + "0x80" + ] + }, + { + "pc": 3942, + "op": "PUSH4", + "gas": 2994922, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf6d", + "0x38d7ea4c67c18", + "0x3e8", + "0x80", + "0x10ac" + ] + }, + { + "pc": 3947, + "op": "AND", + "gas": 2994919, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf6d", + "0x38d7ea4c67c18", + "0x3e8", + "0x80", + "0x10ac", + "0xffffffff" + ] + }, + { + "pc": 3948, + "op": "JUMP", + "gas": 2994916, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf6d", + "0x38d7ea4c67c18", + "0x3e8", + "0x80", + "0x10ac" + ] + }, + { + "pc": 4268, + "op": "JUMPDEST", + "gas": 2994908, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf6d", + "0x38d7ea4c67c18", + "0x3e8", + "0x80" + ] + }, + { + "pc": 4269, + "op": "PUSH1", + "gas": 2994907, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf6d", + "0x38d7ea4c67c18", + "0x3e8", + "0x80" + ] + }, + { + "pc": 4271, + "op": "DUP4", + "gas": 2994904, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf6d", + "0x38d7ea4c67c18", + "0x3e8", + "0x80", + "0x0" + ] + }, + { + "pc": 4272, + "op": "DUP4", + "gas": 2994901, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf6d", + "0x38d7ea4c67c18", + "0x3e8", + "0x80", + "0x0", + "0x38d7ea4c67c18" + ] + }, + { + "pc": 4273, + "op": "GT", + "gas": 2994898, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf6d", + "0x38d7ea4c67c18", + "0x3e8", + "0x80", + "0x0", + "0x38d7ea4c67c18", + "0x3e8" + ] + }, + { + "pc": 4274, + "op": "ISZERO", + "gas": 2994895, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf6d", + "0x38d7ea4c67c18", + "0x3e8", + "0x80", + "0x0", + "0x0" + ] + }, + { + "pc": 4275, + "op": "DUP3", + "gas": 2994892, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf6d", + "0x38d7ea4c67c18", + "0x3e8", + "0x80", + "0x0", + "0x1" + ] + }, + { + "pc": 4276, + "op": "SWAP1", + "gas": 2994889, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf6d", + "0x38d7ea4c67c18", + "0x3e8", + "0x80", + "0x0", + "0x1", + "0x80" + ] + }, + { + "pc": 4277, + "op": "PUSH2", + "gas": 2994886, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf6d", + "0x38d7ea4c67c18", + "0x3e8", + "0x80", + "0x0", + "0x80", + "0x1" + ] + }, + { + "pc": 4280, + "op": "JUMPI", + "gas": 2994883, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf6d", + "0x38d7ea4c67c18", + "0x3e8", + "0x80", + "0x0", + "0x80", + "0x1", + "0x10f4" + ] + }, + { + "pc": 4340, + "op": "JUMPDEST", + "gas": 2994873, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf6d", + "0x38d7ea4c67c18", + "0x3e8", + "0x80", + "0x0", + "0x80" + ] + }, + { + "pc": 4341, + "op": "POP", + "gas": 2994872, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf6d", + "0x38d7ea4c67c18", + "0x3e8", + "0x80", + "0x0", + "0x80" + ] + }, + { + "pc": 4342, + "op": "PUSH1", + "gas": 2994870, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf6d", + "0x38d7ea4c67c18", + "0x3e8", + "0x80", + "0x0" + ] + }, + { + "pc": 4344, + "op": "DUP4", + "gas": 2994867, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf6d", + "0x38d7ea4c67c18", + "0x3e8", + "0x80", + "0x0", + "0x0" + ] + }, + { + "pc": 4345, + "op": "DUP6", + "gas": 2994864, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf6d", + "0x38d7ea4c67c18", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x3e8" + ] + }, + { + "pc": 4346, + "op": "PUSH2", + "gas": 2994861, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf6d", + "0x38d7ea4c67c18", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x3e8", + "0x38d7ea4c67c18" + ] + }, + { + "pc": 4349, + "op": "SWAP2", + "gas": 2994858, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf6d", + "0x38d7ea4c67c18", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x3e8", + "0x38d7ea4c67c18", + "0x1103" + ] + }, + { + "pc": 4350, + "op": "SWAP1", + "gas": 2994855, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf6d", + "0x38d7ea4c67c18", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x38d7ea4c67c18", + "0x3e8" + ] + }, + { + "pc": 4351, + "op": "PUSH2", + "gas": 2994852, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf6d", + "0x38d7ea4c67c18", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67c18" + ] + }, + { + "pc": 4354, + "op": "JUMP", + "gas": 2994849, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf6d", + "0x38d7ea4c67c18", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67c18", + "0x1c5f" + ] + }, + { + "pc": 7263, + "op": "JUMPDEST", + "gas": 2994841, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf6d", + "0x38d7ea4c67c18", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67c18" + ] + }, + { + "pc": 7264, + "op": "PUSH1", + "gas": 2994840, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf6d", + "0x38d7ea4c67c18", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67c18" + ] + }, + { + "pc": 7266, + "op": "PUSH2", + "gas": 2994837, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf6d", + "0x38d7ea4c67c18", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67c18", + "0x0" + ] + }, + { + "pc": 7269, + "op": "DUP3", + "gas": 2994834, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf6d", + "0x38d7ea4c67c18", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67c18", + "0x0", + "0x1c6a" + ] + }, + { + "pc": 7270, + "op": "PUSH2", + "gas": 2994831, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf6d", + "0x38d7ea4c67c18", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67c18", + "0x0", + "0x1c6a", + "0x38d7ea4c67c18" + ] + }, + { + "pc": 7273, + "op": "JUMP", + "gas": 2994828, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf6d", + "0x38d7ea4c67c18", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67c18", + "0x0", + "0x1c6a", + "0x38d7ea4c67c18", + "0x1cd1" + ] + }, + { + "pc": 7377, + "op": "JUMPDEST", + "gas": 2994820, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf6d", + "0x38d7ea4c67c18", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67c18", + "0x0", + "0x1c6a", + "0x38d7ea4c67c18" + ] + }, + { + "pc": 7378, + "op": "PUSH1", + "gas": 2994819, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf6d", + "0x38d7ea4c67c18", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67c18", + "0x0", + "0x1c6a", + "0x38d7ea4c67c18" + ] + }, + { + "pc": 7380, + "op": "DUP2", + "gas": 2994816, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf6d", + "0x38d7ea4c67c18", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67c18", + "0x0", + "0x1c6a", + "0x38d7ea4c67c18", + "0x0" + ] + }, + { + "pc": 7381, + "op": "SWAP1", + "gas": 2994813, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf6d", + "0x38d7ea4c67c18", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67c18", + "0x0", + "0x1c6a", + "0x38d7ea4c67c18", + "0x0", + "0x38d7ea4c67c18" + ] + }, + { + "pc": 7382, + "op": "POP", + "gas": 2994810, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf6d", + "0x38d7ea4c67c18", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67c18", + "0x0", + "0x1c6a", + "0x38d7ea4c67c18", + "0x38d7ea4c67c18", + "0x0" + ] + }, + { + "pc": 7383, + "op": "SWAP2", + "gas": 2994808, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf6d", + "0x38d7ea4c67c18", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67c18", + "0x0", + "0x1c6a", + "0x38d7ea4c67c18", + "0x38d7ea4c67c18" + ] + }, + { + "pc": 7384, + "op": "SWAP1", + "gas": 2994805, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf6d", + "0x38d7ea4c67c18", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67c18", + "0x0", + "0x38d7ea4c67c18", + "0x38d7ea4c67c18", + "0x1c6a" + ] + }, + { + "pc": 7385, + "op": "POP", + "gas": 2994802, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf6d", + "0x38d7ea4c67c18", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67c18", + "0x0", + "0x38d7ea4c67c18", + "0x1c6a", + "0x38d7ea4c67c18" + ] + }, + { + "pc": 7386, + "op": "JUMP", + "gas": 2994800, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf6d", + "0x38d7ea4c67c18", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67c18", + "0x0", + "0x38d7ea4c67c18", + "0x1c6a" + ] + }, + { + "pc": 7274, + "op": "JUMPDEST", + "gas": 2994792, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf6d", + "0x38d7ea4c67c18", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67c18", + "0x0", + "0x38d7ea4c67c18" + ] + }, + { + "pc": 7275, + "op": "SWAP2", + "gas": 2994791, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf6d", + "0x38d7ea4c67c18", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67c18", + "0x0", + "0x38d7ea4c67c18" + ] + }, + { + "pc": 7276, + "op": "POP", + "gas": 2994788, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf6d", + "0x38d7ea4c67c18", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67c18", + "0x0", + "0x38d7ea4c67c18" + ] + }, + { + "pc": 7277, + "op": "PUSH2", + "gas": 2994786, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf6d", + "0x38d7ea4c67c18", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67c18", + "0x0" + ] + }, + { + "pc": 7280, + "op": "DUP4", + "gas": 2994783, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf6d", + "0x38d7ea4c67c18", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67c18", + "0x0", + "0x1c75" + ] + }, + { + "pc": 7281, + "op": "PUSH2", + "gas": 2994780, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf6d", + "0x38d7ea4c67c18", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67c18", + "0x0", + "0x1c75", + "0x3e8" + ] + }, + { + "pc": 7284, + "op": "JUMP", + "gas": 2994777, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf6d", + "0x38d7ea4c67c18", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67c18", + "0x0", + "0x1c75", + "0x3e8", + "0x1cd1" + ] + }, + { + "pc": 7377, + "op": "JUMPDEST", + "gas": 2994769, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf6d", + "0x38d7ea4c67c18", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67c18", + "0x0", + "0x1c75", + "0x3e8" + ] + }, + { + "pc": 7378, + "op": "PUSH1", + "gas": 2994768, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf6d", + "0x38d7ea4c67c18", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67c18", + "0x0", + "0x1c75", + "0x3e8" + ] + }, + { + "pc": 7380, + "op": "DUP2", + "gas": 2994765, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf6d", + "0x38d7ea4c67c18", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67c18", + "0x0", + "0x1c75", + "0x3e8", + "0x0" + ] + }, + { + "pc": 7381, + "op": "SWAP1", + "gas": 2994762, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf6d", + "0x38d7ea4c67c18", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67c18", + "0x0", + "0x1c75", + "0x3e8", + "0x0", + "0x3e8" + ] + }, + { + "pc": 7382, + "op": "POP", + "gas": 2994759, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf6d", + "0x38d7ea4c67c18", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67c18", + "0x0", + "0x1c75", + "0x3e8", + "0x3e8", + "0x0" + ] + }, + { + "pc": 7383, + "op": "SWAP2", + "gas": 2994757, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf6d", + "0x38d7ea4c67c18", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67c18", + "0x0", + "0x1c75", + "0x3e8", + "0x3e8" + ] + }, + { + "pc": 7384, + "op": "SWAP1", + "gas": 2994754, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf6d", + "0x38d7ea4c67c18", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67c18", + "0x0", + "0x3e8", + "0x3e8", + "0x1c75" + ] + }, + { + "pc": 7385, + "op": "POP", + "gas": 2994751, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf6d", + "0x38d7ea4c67c18", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67c18", + "0x0", + "0x3e8", + "0x1c75", + "0x3e8" + ] + }, + { + "pc": 7386, + "op": "JUMP", + "gas": 2994749, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf6d", + "0x38d7ea4c67c18", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67c18", + "0x0", + "0x3e8", + "0x1c75" + ] + }, + { + "pc": 7285, + "op": "JUMPDEST", + "gas": 2994741, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf6d", + "0x38d7ea4c67c18", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67c18", + "0x0", + "0x3e8" + ] + }, + { + "pc": 7286, + "op": "SWAP3", + "gas": 2994740, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf6d", + "0x38d7ea4c67c18", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67c18", + "0x0", + "0x3e8" + ] + }, + { + "pc": 7287, + "op": "POP", + "gas": 2994737, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf6d", + "0x38d7ea4c67c18", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67c18", + "0x0", + "0x3e8" + ] + }, + { + "pc": 7288, + "op": "DUP3", + "gas": 2994735, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf6d", + "0x38d7ea4c67c18", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67c18", + "0x0" + ] + }, + { + "pc": 7289, + "op": "DUP3", + "gas": 2994732, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf6d", + "0x38d7ea4c67c18", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67c18", + "0x0", + "0x3e8" + ] + }, + { + "pc": 7290, + "op": "LT", + "gas": 2994729, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf6d", + "0x38d7ea4c67c18", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67c18", + "0x0", + "0x3e8", + "0x38d7ea4c67c18" + ] + }, + { + "pc": 7291, + "op": "ISZERO", + "gas": 2994726, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf6d", + "0x38d7ea4c67c18", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67c18", + "0x0", + "0x0" + ] + }, + { + "pc": 7292, + "op": "PUSH2", + "gas": 2994723, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf6d", + "0x38d7ea4c67c18", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67c18", + "0x0", + "0x1" + ] + }, + { + "pc": 7295, + "op": "JUMPI", + "gas": 2994720, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf6d", + "0x38d7ea4c67c18", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67c18", + "0x0", + "0x1", + "0x1c88" + ] + }, + { + "pc": 7304, + "op": "JUMPDEST", + "gas": 2994710, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf6d", + "0x38d7ea4c67c18", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67c18", + "0x0" + ] + }, + { + "pc": 7305, + "op": "DUP3", + "gas": 2994709, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf6d", + "0x38d7ea4c67c18", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67c18", + "0x0" + ] + }, + { + "pc": 7306, + "op": "DUP3", + "gas": 2994706, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf6d", + "0x38d7ea4c67c18", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67c18", + "0x0", + "0x3e8" + ] + }, + { + "pc": 7307, + "op": "SUB", + "gas": 2994703, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf6d", + "0x38d7ea4c67c18", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67c18", + "0x0", + "0x3e8", + "0x38d7ea4c67c18" + ] + }, + { + "pc": 7308, + "op": "SWAP1", + "gas": 2994700, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf6d", + "0x38d7ea4c67c18", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67c18", + "0x0", + "0x38d7ea4c67830" + ] + }, + { + "pc": 7309, + "op": "POP", + "gas": 2994697, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf6d", + "0x38d7ea4c67c18", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67c18", + "0x38d7ea4c67830", + "0x0" + ] + }, + { + "pc": 7310, + "op": "SWAP3", + "gas": 2994695, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf6d", + "0x38d7ea4c67c18", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67c18", + "0x38d7ea4c67830" + ] + }, + { + "pc": 7311, + "op": "SWAP2", + "gas": 2994692, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf6d", + "0x38d7ea4c67c18", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x38d7ea4c67830", + "0x3e8", + "0x38d7ea4c67c18", + "0x1103" + ] + }, + { + "pc": 7312, + "op": "POP", + "gas": 2994689, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf6d", + "0x38d7ea4c67c18", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x38d7ea4c67830", + "0x1103", + "0x38d7ea4c67c18", + "0x3e8" + ] + }, + { + "pc": 7313, + "op": "POP", + "gas": 2994687, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf6d", + "0x38d7ea4c67c18", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x38d7ea4c67830", + "0x1103", + "0x38d7ea4c67c18" + ] + }, + { + "pc": 7314, + "op": "JUMP", + "gas": 2994685, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf6d", + "0x38d7ea4c67c18", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x38d7ea4c67830", + "0x1103" + ] + }, + { + "pc": 4355, + "op": "JUMPDEST", + "gas": 2994677, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf6d", + "0x38d7ea4c67c18", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x38d7ea4c67830" + ] + }, + { + "pc": 4356, + "op": "SWAP1", + "gas": 2994676, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf6d", + "0x38d7ea4c67c18", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x38d7ea4c67830" + ] + }, + { + "pc": 4357, + "op": "POP", + "gas": 2994673, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf6d", + "0x38d7ea4c67c18", + "0x3e8", + "0x80", + "0x0", + "0x38d7ea4c67830", + "0x0" + ] + }, + { + "pc": 4358, + "op": "DUP1", + "gas": 2994671, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf6d", + "0x38d7ea4c67c18", + "0x3e8", + "0x80", + "0x0", + "0x38d7ea4c67830" + ] + }, + { + "pc": 4359, + "op": "SWAP2", + "gas": 2994668, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf6d", + "0x38d7ea4c67c18", + "0x3e8", + "0x80", + "0x0", + "0x38d7ea4c67830", + "0x38d7ea4c67830" + ] + }, + { + "pc": 4360, + "op": "POP", + "gas": 2994665, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf6d", + "0x38d7ea4c67c18", + "0x3e8", + "0x80", + "0x38d7ea4c67830", + "0x38d7ea4c67830", + "0x0" + ] + }, + { + "pc": 4361, + "op": "POP", + "gas": 2994663, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf6d", + "0x38d7ea4c67c18", + "0x3e8", + "0x80", + "0x38d7ea4c67830", + "0x38d7ea4c67830" + ] + }, + { + "pc": 4362, + "op": "SWAP4", + "gas": 2994661, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0xf6d", + "0x38d7ea4c67c18", + "0x3e8", + "0x80", + "0x38d7ea4c67830" + ] + }, + { + "pc": 4363, + "op": "SWAP3", + "gas": 2994658, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x38d7ea4c67830", + "0x38d7ea4c67c18", + "0x3e8", + "0x80", + "0xf6d" + ] + }, + { + "pc": 4364, + "op": "POP", + "gas": 2994655, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x38d7ea4c67830", + "0xf6d", + "0x3e8", + "0x80", + "0x38d7ea4c67c18" + ] + }, + { + "pc": 4365, + "op": "POP", + "gas": 2994653, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x38d7ea4c67830", + "0xf6d", + "0x3e8", + "0x80" + ] + }, + { + "pc": 4366, + "op": "POP", + "gas": 2994651, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x38d7ea4c67830", + "0xf6d", + "0x3e8" + ] + }, + { + "pc": 4367, + "op": "JUMP", + "gas": 2994649, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x38d7ea4c67830", + "0xf6d" + ] + }, + { + "pc": 3949, + "op": "JUMPDEST", + "gas": 2994641, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x38d7ea4c67830" + ] + }, + { + "pc": 3950, + "op": "PUSH1", + "gas": 2994640, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x38d7ea4c67830" + ] + }, + { + "pc": 3952, + "op": "DUP1", + "gas": 2994637, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x38d7ea4c67830", + "0x0" + ] + }, + { + "pc": 3953, + "op": "DUP6", + "gas": 2994634, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x38d7ea4c67830", + "0x0", + "0x0" + ] + }, + { + "pc": 3954, + "op": "PUSH20", + "gas": 2994631, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x38d7ea4c67830", + "0x0", + "0x0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 3975, + "op": "AND", + "gas": 2994628, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x38d7ea4c67830", + "0x0", + "0x0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 3976, + "op": "PUSH20", + "gas": 2994625, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x38d7ea4c67830", + "0x0", + "0x0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 3997, + "op": "AND", + "gas": 2994622, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x38d7ea4c67830", + "0x0", + "0x0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 3998, + "op": "DUP2", + "gas": 2994619, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x38d7ea4c67830", + "0x0", + "0x0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 3999, + "op": "MSTORE", + "gas": 2994616, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x38d7ea4c67830", + "0x0", + "0x0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0" + ] + }, + { + "pc": 4000, + "op": "PUSH1", + "gas": 2994613, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x38d7ea4c67830", + "0x0", + "0x0" + ] + }, + { + "pc": 4002, + "op": "ADD", + "gas": 2994610, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x38d7ea4c67830", + "0x0", + "0x0", + "0x20" + ] + }, + { + "pc": 4003, + "op": "SWAP1", + "gas": 2994607, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x38d7ea4c67830", + "0x0", + "0x20" + ] + }, + { + "pc": 4004, + "op": "DUP2", + "gas": 2994604, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x38d7ea4c67830", + "0x20", + "0x0" + ] + }, + { + "pc": 4005, + "op": "MSTORE", + "gas": 2994601, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x38d7ea4c67830", + "0x20", + "0x0", + "0x20" + ] + }, + { + "pc": 4006, + "op": "PUSH1", + "gas": 2994598, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x38d7ea4c67830", + "0x20" + ] + }, + { + "pc": 4008, + "op": "ADD", + "gas": 2994595, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x38d7ea4c67830", + "0x20", + "0x20" + ] + }, + { + "pc": 4009, + "op": "PUSH1", + "gas": 2994592, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x38d7ea4c67830", + "0x40" + ] + }, + { + "pc": 4011, + "op": "SHA3", + "gas": 2994589, + "gasCost": 42, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x38d7ea4c67830", + "0x40", + "0x0" + ] + }, + { + "pc": 4012, + "op": "DUP2", + "gas": 2994547, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x38d7ea4c67830", + "0x5a158573daab1c353835da34297290f5f813859e4bb52de641691b875502523f" + ] + }, + { + "pc": 4013, + "op": "SWAP1", + "gas": 2994544, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x38d7ea4c67830", + "0x5a158573daab1c353835da34297290f5f813859e4bb52de641691b875502523f", + "0x38d7ea4c67830" + ] + }, + { + "pc": 4014, + "op": "SSTORE", + "gas": 2994541, + "gasCost": 2900, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x38d7ea4c67830", + "0x38d7ea4c67830", + "0x5a158573daab1c353835da34297290f5f813859e4bb52de641691b875502523f" + ], + "storage": { + "0x0000000000000000000000000000000000000000000000000000000000000005": "0x000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd65710012", + "0x5a158573daab1c353835da34297290f5f813859e4bb52de641691b875502523f": "0x00000000000000000000000000000000000000000000000000038d7ea4c67830" + }, + "extraData": { + "proofList": [ + { + "address": "0x34041eff1f32989bdaa95875e0f41afd6294dcd4", + "nonce": 1, + "balance": "0x0", + "codeHash": "0x9b5ea0519f6e20c36338989b6accc7cf3384eac2f0a083e82730bca177544409", + "storage": { + "key": "0x5a158573daab1c353835da34297290f5f813859e4bb52de641691b875502523f", + "value": "0x00000000000000000000000000000000000000000000000000038d7ea4c67c18" + } + } + ] + } + }, + { + "pc": 4015, + "op": "POP", + "gas": 2991641, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x38d7ea4c67830" + ] + }, + { + "pc": 4016, + "op": "PUSH2", + "gas": 2991639, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8" + ] + }, + { + "pc": 4019, + "op": "DUP2", + "gas": 2991636, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1000" + ] + }, + { + "pc": 4020, + "op": "PUSH1", + "gas": 2991633, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1000", + "0x3e8" + ] + }, + { + "pc": 4022, + "op": "DUP1", + "gas": 2991630, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1000", + "0x3e8", + "0x0" + ] + }, + { + "pc": 4023, + "op": "DUP6", + "gas": 2991627, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1000", + "0x3e8", + "0x0", + "0x0" + ] + }, + { + "pc": 4024, + "op": "PUSH20", + "gas": 2991624, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1000", + "0x3e8", + "0x0", + "0x0", + "0x1" + ] + }, + { + "pc": 4045, + "op": "AND", + "gas": 2991621, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1000", + "0x3e8", + "0x0", + "0x0", + "0x1", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 4046, + "op": "PUSH20", + "gas": 2991618, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1000", + "0x3e8", + "0x0", + "0x0", + "0x1" + ] + }, + { + "pc": 4067, + "op": "AND", + "gas": 2991615, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1000", + "0x3e8", + "0x0", + "0x0", + "0x1", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 4068, + "op": "DUP2", + "gas": 2991612, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1000", + "0x3e8", + "0x0", + "0x0", + "0x1" + ] + }, + { + "pc": 4069, + "op": "MSTORE", + "gas": 2991609, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1000", + "0x3e8", + "0x0", + "0x0", + "0x1", + "0x0" + ] + }, + { + "pc": 4070, + "op": "PUSH1", + "gas": 2991606, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1000", + "0x3e8", + "0x0", + "0x0" + ] + }, + { + "pc": 4072, + "op": "ADD", + "gas": 2991603, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1000", + "0x3e8", + "0x0", + "0x0", + "0x20" + ] + }, + { + "pc": 4073, + "op": "SWAP1", + "gas": 2991600, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1000", + "0x3e8", + "0x0", + "0x20" + ] + }, + { + "pc": 4074, + "op": "DUP2", + "gas": 2991597, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1000", + "0x3e8", + "0x20", + "0x0" + ] + }, + { + "pc": 4075, + "op": "MSTORE", + "gas": 2991594, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1000", + "0x3e8", + "0x20", + "0x0", + "0x20" + ] + }, + { + "pc": 4076, + "op": "PUSH1", + "gas": 2991591, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1000", + "0x3e8", + "0x20" + ] + }, + { + "pc": 4078, + "op": "ADD", + "gas": 2991588, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1000", + "0x3e8", + "0x20", + "0x20" + ] + }, + { + "pc": 4079, + "op": "PUSH1", + "gas": 2991585, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1000", + "0x3e8", + "0x40" + ] + }, + { + "pc": 4081, + "op": "SHA3", + "gas": 2991582, + "gasCost": 42, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1000", + "0x3e8", + "0x40", + "0x0" + ] + }, + { + "pc": 4082, + "op": "SLOAD", + "gas": 2991540, + "gasCost": 2100, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1000", + "0x3e8", + "0xada5013122d395ba3c54772283fb069b10426056ef8ca54750cb9bb552a59e7d" + ], + "storage": { + "0x0000000000000000000000000000000000000000000000000000000000000005": "0x000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd65710012", + "0x5a158573daab1c353835da34297290f5f813859e4bb52de641691b875502523f": "0x00000000000000000000000000000000000000000000000000038d7ea4c67830", + "0xada5013122d395ba3c54772283fb069b10426056ef8ca54750cb9bb552a59e7d": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "extraData": { + "proofList": [ + { + "address": "0x34041eff1f32989bdaa95875e0f41afd6294dcd4", + "nonce": 1, + "balance": "0x0", + "codeHash": "0x9b5ea0519f6e20c36338989b6accc7cf3384eac2f0a083e82730bca177544409", + "storage": { + "key": "0xada5013122d395ba3c54772283fb069b10426056ef8ca54750cb9bb552a59e7d", + "value": "0x0000000000000000000000000000000000000000000000000000000000000000" + } + } + ] + } + }, + { + "pc": 4083, + "op": "PUSH2", + "gas": 2989440, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1000", + "0x3e8", + "0x0" + ] + }, + { + "pc": 4086, + "op": "SWAP1", + "gas": 2989437, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1000", + "0x3e8", + "0x0", + "0x1110" + ] + }, + { + "pc": 4087, + "op": "SWAP2", + "gas": 2989434, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1000", + "0x3e8", + "0x1110", + "0x0" + ] + }, + { + "pc": 4088, + "op": "SWAP1", + "gas": 2989431, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1000", + "0x0", + "0x1110", + "0x3e8" + ] + }, + { + "pc": 4089, + "op": "PUSH4", + "gas": 2989428, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x1110" + ] + }, + { + "pc": 4094, + "op": "AND", + "gas": 2989425, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x1110", + "0xffffffff" + ] + }, + { + "pc": 4095, + "op": "JUMP", + "gas": 2989422, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x1110" + ] + }, + { + "pc": 4368, + "op": "JUMPDEST", + "gas": 2989414, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1000", + "0x0", + "0x3e8" + ] + }, + { + "pc": 4369, + "op": "PUSH1", + "gas": 2989413, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1000", + "0x0", + "0x3e8" + ] + }, + { + "pc": 4371, + "op": "DUP1", + "gas": 2989410, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0" + ] + }, + { + "pc": 4372, + "op": "DUP3", + "gas": 2989407, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0" + ] + }, + { + "pc": 4373, + "op": "DUP5", + "gas": 2989404, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x3e8" + ] + }, + { + "pc": 4374, + "op": "PUSH2", + "gas": 2989401, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x3e8", + "0x0" + ] + }, + { + "pc": 4377, + "op": "SWAP2", + "gas": 2989398, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x3e8", + "0x0", + "0x111f" + ] + }, + { + "pc": 4378, + "op": "SWAP1", + "gas": 2989395, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x0", + "0x3e8" + ] + }, + { + "pc": 4379, + "op": "PUSH2", + "gas": 2989392, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0" + ] + }, + { + "pc": 4382, + "op": "JUMP", + "gas": 2989389, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x1c09" + ] + }, + { + "pc": 7177, + "op": "JUMPDEST", + "gas": 2989381, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0" + ] + }, + { + "pc": 7178, + "op": "PUSH1", + "gas": 2989380, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0" + ] + }, + { + "pc": 7180, + "op": "PUSH2", + "gas": 2989377, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0" + ] + }, + { + "pc": 7183, + "op": "DUP3", + "gas": 2989374, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x1c14" + ] + }, + { + "pc": 7184, + "op": "PUSH2", + "gas": 2989371, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x1c14", + "0x0" + ] + }, + { + "pc": 7187, + "op": "JUMP", + "gas": 2989368, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x1c14", + "0x0", + "0x1cd1" + ] + }, + { + "pc": 7377, + "op": "JUMPDEST", + "gas": 2989360, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x1c14", + "0x0" + ] + }, + { + "pc": 7378, + "op": "PUSH1", + "gas": 2989359, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x1c14", + "0x0" + ] + }, + { + "pc": 7380, + "op": "DUP2", + "gas": 2989356, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x1c14", + "0x0", + "0x0" + ] + }, + { + "pc": 7381, + "op": "SWAP1", + "gas": 2989353, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x1c14", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 7382, + "op": "POP", + "gas": 2989350, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x1c14", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 7383, + "op": "SWAP2", + "gas": 2989348, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x1c14", + "0x0", + "0x0" + ] + }, + { + "pc": 7384, + "op": "SWAP1", + "gas": 2989345, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x0", + "0x0", + "0x1c14" + ] + }, + { + "pc": 7385, + "op": "POP", + "gas": 2989342, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x0", + "0x1c14", + "0x0" + ] + }, + { + "pc": 7386, + "op": "JUMP", + "gas": 2989340, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x0", + "0x1c14" + ] + }, + { + "pc": 7188, + "op": "JUMPDEST", + "gas": 2989332, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 7189, + "op": "SWAP2", + "gas": 2989331, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 7190, + "op": "POP", + "gas": 2989328, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 7191, + "op": "PUSH2", + "gas": 2989326, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0" + ] + }, + { + "pc": 7194, + "op": "DUP4", + "gas": 2989323, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x1c1f" + ] + }, + { + "pc": 7195, + "op": "PUSH2", + "gas": 2989320, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x1c1f", + "0x3e8" + ] + }, + { + "pc": 7198, + "op": "JUMP", + "gas": 2989317, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x1c1f", + "0x3e8", + "0x1cd1" + ] + }, + { + "pc": 7377, + "op": "JUMPDEST", + "gas": 2989309, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x1c1f", + "0x3e8" + ] + }, + { + "pc": 7378, + "op": "PUSH1", + "gas": 2989308, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x1c1f", + "0x3e8" + ] + }, + { + "pc": 7380, + "op": "DUP2", + "gas": 2989305, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x1c1f", + "0x3e8", + "0x0" + ] + }, + { + "pc": 7381, + "op": "SWAP1", + "gas": 2989302, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x1c1f", + "0x3e8", + "0x0", + "0x3e8" + ] + }, + { + "pc": 7382, + "op": "POP", + "gas": 2989299, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x1c1f", + "0x3e8", + "0x3e8", + "0x0" + ] + }, + { + "pc": 7383, + "op": "SWAP2", + "gas": 2989297, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x1c1f", + "0x3e8", + "0x3e8" + ] + }, + { + "pc": 7384, + "op": "SWAP1", + "gas": 2989294, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x3e8", + "0x3e8", + "0x1c1f" + ] + }, + { + "pc": 7385, + "op": "POP", + "gas": 2989291, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x3e8", + "0x1c1f", + "0x3e8" + ] + }, + { + "pc": 7386, + "op": "JUMP", + "gas": 2989289, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x3e8", + "0x1c1f" + ] + }, + { + "pc": 7199, + "op": "JUMPDEST", + "gas": 2989281, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x3e8" + ] + }, + { + "pc": 7200, + "op": "SWAP3", + "gas": 2989280, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x3e8" + ] + }, + { + "pc": 7201, + "op": "POP", + "gas": 2989277, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x3e8" + ] + }, + { + "pc": 7202, + "op": "DUP3", + "gas": 2989275, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0" + ] + }, + { + "pc": 7203, + "op": "PUSH32", + "gas": 2989272, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x3e8" + ] + }, + { + "pc": 7236, + "op": "SUB", + "gas": 2989269, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x3e8", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 7237, + "op": "DUP3", + "gas": 2989266, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc17" + ] + }, + { + "pc": 7238, + "op": "GT", + "gas": 2989263, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc17", + "0x0" + ] + }, + { + "pc": 7239, + "op": "ISZERO", + "gas": 2989260, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 7240, + "op": "PUSH2", + "gas": 2989257, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x1" + ] + }, + { + "pc": 7243, + "op": "JUMPI", + "gas": 2989254, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x1", + "0x1c54" + ] + }, + { + "pc": 7252, + "op": "JUMPDEST", + "gas": 2989244, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0" + ] + }, + { + "pc": 7253, + "op": "DUP3", + "gas": 2989243, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0" + ] + }, + { + "pc": 7254, + "op": "DUP3", + "gas": 2989240, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x3e8" + ] + }, + { + "pc": 7255, + "op": "ADD", + "gas": 2989237, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x3e8", + "0x0" + ] + }, + { + "pc": 7256, + "op": "SWAP1", + "gas": 2989234, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x3e8" + ] + }, + { + "pc": 7257, + "op": "POP", + "gas": 2989231, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x3e8", + "0x0" + ] + }, + { + "pc": 7258, + "op": "SWAP3", + "gas": 2989229, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x3e8" + ] + }, + { + "pc": 7259, + "op": "SWAP2", + "gas": 2989226, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x3e8", + "0x3e8", + "0x0", + "0x111f" + ] + }, + { + "pc": 7260, + "op": "POP", + "gas": 2989223, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x3e8", + "0x111f", + "0x0", + "0x3e8" + ] + }, + { + "pc": 7261, + "op": "POP", + "gas": 2989221, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x3e8", + "0x111f", + "0x0" + ] + }, + { + "pc": 7262, + "op": "JUMP", + "gas": 2989219, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x3e8", + "0x111f" + ] + }, + { + "pc": 4383, + "op": "JUMPDEST", + "gas": 2989211, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x3e8" + ] + }, + { + "pc": 4384, + "op": "SWAP1", + "gas": 2989210, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x3e8" + ] + }, + { + "pc": 4385, + "op": "POP", + "gas": 2989207, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x3e8", + "0x0" + ] + }, + { + "pc": 4386, + "op": "DUP4", + "gas": 2989205, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x3e8" + ] + }, + { + "pc": 4387, + "op": "DUP2", + "gas": 2989202, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x3e8", + "0x0" + ] + }, + { + "pc": 4388, + "op": "LT", + "gas": 2989199, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x3e8", + "0x0", + "0x3e8" + ] + }, + { + "pc": 4389, + "op": "ISZERO", + "gas": 2989196, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x3e8", + "0x0" + ] + }, + { + "pc": 4390, + "op": "PUSH2", + "gas": 2989193, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x3e8", + "0x1" + ] + }, + { + "pc": 4393, + "op": "JUMPI", + "gas": 2989190, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x3e8", + "0x1", + "0x1164" + ] + }, + { + "pc": 4452, + "op": "JUMPDEST", + "gas": 2989180, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x3e8" + ] + }, + { + "pc": 4453, + "op": "DUP1", + "gas": 2989179, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x3e8" + ] + }, + { + "pc": 4454, + "op": "SWAP2", + "gas": 2989176, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x3e8", + "0x3e8" + ] + }, + { + "pc": 4455, + "op": "POP", + "gas": 2989173, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x3e8", + "0x3e8", + "0x0" + ] + }, + { + "pc": 4456, + "op": "POP", + "gas": 2989171, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x3e8", + "0x3e8" + ] + }, + { + "pc": 4457, + "op": "SWAP3", + "gas": 2989169, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x3e8" + ] + }, + { + "pc": 4458, + "op": "SWAP2", + "gas": 2989166, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x3e8", + "0x0", + "0x3e8", + "0x1000" + ] + }, + { + "pc": 4459, + "op": "POP", + "gas": 2989163, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x3e8", + "0x1000", + "0x3e8", + "0x0" + ] + }, + { + "pc": 4460, + "op": "POP", + "gas": 2989161, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x3e8", + "0x1000", + "0x3e8" + ] + }, + { + "pc": 4461, + "op": "JUMP", + "gas": 2989159, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x3e8", + "0x1000" + ] + }, + { + "pc": 4096, + "op": "JUMPDEST", + "gas": 2989151, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x3e8" + ] + }, + { + "pc": 4097, + "op": "PUSH1", + "gas": 2989150, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x3e8" + ] + }, + { + "pc": 4099, + "op": "DUP1", + "gas": 2989147, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x3e8", + "0x0" + ] + }, + { + "pc": 4100, + "op": "DUP5", + "gas": 2989144, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x3e8", + "0x0", + "0x0" + ] + }, + { + "pc": 4101, + "op": "PUSH20", + "gas": 2989141, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x3e8", + "0x0", + "0x0", + "0x1" + ] + }, + { + "pc": 4122, + "op": "AND", + "gas": 2989138, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x3e8", + "0x0", + "0x0", + "0x1", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 4123, + "op": "PUSH20", + "gas": 2989135, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x3e8", + "0x0", + "0x0", + "0x1" + ] + }, + { + "pc": 4144, + "op": "AND", + "gas": 2989132, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x3e8", + "0x0", + "0x0", + "0x1", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 4145, + "op": "DUP2", + "gas": 2989129, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x3e8", + "0x0", + "0x0", + "0x1" + ] + }, + { + "pc": 4146, + "op": "MSTORE", + "gas": 2989126, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x3e8", + "0x0", + "0x0", + "0x1", + "0x0" + ] + }, + { + "pc": 4147, + "op": "PUSH1", + "gas": 2989123, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x3e8", + "0x0", + "0x0" + ] + }, + { + "pc": 4149, + "op": "ADD", + "gas": 2989120, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x3e8", + "0x0", + "0x0", + "0x20" + ] + }, + { + "pc": 4150, + "op": "SWAP1", + "gas": 2989117, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x3e8", + "0x0", + "0x20" + ] + }, + { + "pc": 4151, + "op": "DUP2", + "gas": 2989114, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x3e8", + "0x20", + "0x0" + ] + }, + { + "pc": 4152, + "op": "MSTORE", + "gas": 2989111, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x3e8", + "0x20", + "0x0", + "0x20" + ] + }, + { + "pc": 4153, + "op": "PUSH1", + "gas": 2989108, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x3e8", + "0x20" + ] + }, + { + "pc": 4155, + "op": "ADD", + "gas": 2989105, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x3e8", + "0x20", + "0x20" + ] + }, + { + "pc": 4156, + "op": "PUSH1", + "gas": 2989102, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x3e8", + "0x40" + ] + }, + { + "pc": 4158, + "op": "SHA3", + "gas": 2989099, + "gasCost": 42, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x3e8", + "0x40", + "0x0" + ] + }, + { + "pc": 4159, + "op": "DUP2", + "gas": 2989057, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x3e8", + "0xada5013122d395ba3c54772283fb069b10426056ef8ca54750cb9bb552a59e7d" + ] + }, + { + "pc": 4160, + "op": "SWAP1", + "gas": 2989054, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x3e8", + "0xada5013122d395ba3c54772283fb069b10426056ef8ca54750cb9bb552a59e7d", + "0x3e8" + ] + }, + { + "pc": 4161, + "op": "SSTORE", + "gas": 2989051, + "gasCost": 20000, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x3e8", + "0x3e8", + "0xada5013122d395ba3c54772283fb069b10426056ef8ca54750cb9bb552a59e7d" + ], + "storage": { + "0x0000000000000000000000000000000000000000000000000000000000000005": "0x000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd65710012", + "0x5a158573daab1c353835da34297290f5f813859e4bb52de641691b875502523f": "0x00000000000000000000000000000000000000000000000000038d7ea4c67830", + "0xada5013122d395ba3c54772283fb069b10426056ef8ca54750cb9bb552a59e7d": "0x00000000000000000000000000000000000000000000000000000000000003e8" + }, + "extraData": { + "proofList": [ + { + "address": "0x34041eff1f32989bdaa95875e0f41afd6294dcd4", + "nonce": 1, + "balance": "0x0", + "codeHash": "0x9b5ea0519f6e20c36338989b6accc7cf3384eac2f0a083e82730bca177544409", + "storage": { + "key": "0xada5013122d395ba3c54772283fb069b10426056ef8ca54750cb9bb552a59e7d", + "value": "0x0000000000000000000000000000000000000000000000000000000000000000" + } + } + ] + } + }, + { + "pc": 4162, + "op": "POP", + "gas": 2969051, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x3e8" + ] + }, + { + "pc": 4163, + "op": "DUP2", + "gas": 2969049, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8" + ] + }, + { + "pc": 4164, + "op": "PUSH20", + "gas": 2969046, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1" + ] + }, + { + "pc": 4185, + "op": "AND", + "gas": 2969043, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 4186, + "op": "DUP4", + "gas": 2969040, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1" + ] + }, + { + "pc": 4187, + "op": "PUSH20", + "gas": 2969037, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 4208, + "op": "AND", + "gas": 2969034, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 4209, + "op": "PUSH32", + "gas": 2969031, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 4242, + "op": "DUP4", + "gas": 2969028, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef" + ] + }, + { + "pc": 4243, + "op": "PUSH1", + "gas": 2969025, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x3e8" + ] + }, + { + "pc": 4245, + "op": "MLOAD", + "gas": 2969022, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x3e8", + "0x40" + ] + }, + { + "pc": 4246, + "op": "PUSH2", + "gas": 2969019, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x3e8", + "0xe0" + ] + }, + { + "pc": 4249, + "op": "SWAP2", + "gas": 2969016, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x3e8", + "0xe0", + "0x109f" + ] + }, + { + "pc": 4250, + "op": "SWAP1", + "gas": 2969013, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0xe0", + "0x3e8" + ] + }, + { + "pc": 4251, + "op": "PUSH2", + "gas": 2969010, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0" + ] + }, + { + "pc": 4254, + "op": "JUMP", + "gas": 2969007, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x1bb7" + ] + }, + { + "pc": 7095, + "op": "JUMPDEST", + "gas": 2968999, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0" + ] + }, + { + "pc": 7096, + "op": "PUSH1", + "gas": 2968998, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0" + ] + }, + { + "pc": 7098, + "op": "PUSH1", + "gas": 2968995, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x0" + ] + }, + { + "pc": 7100, + "op": "DUP3", + "gas": 2968992, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x0", + "0x20" + ] + }, + { + "pc": 7101, + "op": "ADD", + "gas": 2968989, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x0", + "0x20", + "0xe0" + ] + }, + { + "pc": 7102, + "op": "SWAP1", + "gas": 2968986, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x0", + "0x100" + ] + }, + { + "pc": 7103, + "op": "POP", + "gas": 2968983, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x100", + "0x0" + ] + }, + { + "pc": 7104, + "op": "PUSH2", + "gas": 2968981, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x100" + ] + }, + { + "pc": 7107, + "op": "PUSH1", + "gas": 2968978, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x100", + "0x1bcc" + ] + }, + { + "pc": 7109, + "op": "DUP4", + "gas": 2968975, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x100", + "0x1bcc", + "0x0" + ] + }, + { + "pc": 7110, + "op": "ADD", + "gas": 2968972, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x100", + "0x1bcc", + "0x0", + "0xe0" + ] + }, + { + "pc": 7111, + "op": "DUP5", + "gas": 2968969, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x100", + "0x1bcc", + "0xe0" + ] + }, + { + "pc": 7112, + "op": "PUSH2", + "gas": 2968966, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x100", + "0x1bcc", + "0xe0", + "0x3e8" + ] + }, + { + "pc": 7115, + "op": "JUMP", + "gas": 2968963, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x100", + "0x1bcc", + "0xe0", + "0x3e8", + "0x19c1" + ] + }, + { + "pc": 6593, + "op": "JUMPDEST", + "gas": 2968955, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x100", + "0x1bcc", + "0xe0", + "0x3e8" + ] + }, + { + "pc": 6594, + "op": "PUSH2", + "gas": 2968954, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x100", + "0x1bcc", + "0xe0", + "0x3e8" + ] + }, + { + "pc": 6597, + "op": "DUP2", + "gas": 2968951, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x100", + "0x1bcc", + "0xe0", + "0x3e8", + "0x19ca" + ] + }, + { + "pc": 6598, + "op": "PUSH2", + "gas": 2968948, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x100", + "0x1bcc", + "0xe0", + "0x3e8", + "0x19ca", + "0x3e8" + ] + }, + { + "pc": 6601, + "op": "JUMP", + "gas": 2968945, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x100", + "0x1bcc", + "0xe0", + "0x3e8", + "0x19ca", + "0x3e8", + "0x1cd1" + ] + }, + { + "pc": 7377, + "op": "JUMPDEST", + "gas": 2968937, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x100", + "0x1bcc", + "0xe0", + "0x3e8", + "0x19ca", + "0x3e8" + ] + }, + { + "pc": 7378, + "op": "PUSH1", + "gas": 2968936, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x100", + "0x1bcc", + "0xe0", + "0x3e8", + "0x19ca", + "0x3e8" + ] + }, + { + "pc": 7380, + "op": "DUP2", + "gas": 2968933, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x100", + "0x1bcc", + "0xe0", + "0x3e8", + "0x19ca", + "0x3e8", + "0x0" + ] + }, + { + "pc": 7381, + "op": "SWAP1", + "gas": 2968930, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x100", + "0x1bcc", + "0xe0", + "0x3e8", + "0x19ca", + "0x3e8", + "0x0", + "0x3e8" + ] + }, + { + "pc": 7382, + "op": "POP", + "gas": 2968927, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x100", + "0x1bcc", + "0xe0", + "0x3e8", + "0x19ca", + "0x3e8", + "0x3e8", + "0x0" + ] + }, + { + "pc": 7383, + "op": "SWAP2", + "gas": 2968925, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x100", + "0x1bcc", + "0xe0", + "0x3e8", + "0x19ca", + "0x3e8", + "0x3e8" + ] + }, + { + "pc": 7384, + "op": "SWAP1", + "gas": 2968922, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x100", + "0x1bcc", + "0xe0", + "0x3e8", + "0x3e8", + "0x3e8", + "0x19ca" + ] + }, + { + "pc": 7385, + "op": "POP", + "gas": 2968919, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x100", + "0x1bcc", + "0xe0", + "0x3e8", + "0x3e8", + "0x19ca", + "0x3e8" + ] + }, + { + "pc": 7386, + "op": "JUMP", + "gas": 2968917, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x100", + "0x1bcc", + "0xe0", + "0x3e8", + "0x3e8", + "0x19ca" + ] + }, + { + "pc": 6602, + "op": "JUMPDEST", + "gas": 2968909, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x100", + "0x1bcc", + "0xe0", + "0x3e8", + "0x3e8" + ] + }, + { + "pc": 6603, + "op": "DUP3", + "gas": 2968908, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x100", + "0x1bcc", + "0xe0", + "0x3e8", + "0x3e8" + ] + }, + { + "pc": 6604, + "op": "MSTORE", + "gas": 2968905, + "gasCost": 6, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x100", + "0x1bcc", + "0xe0", + "0x3e8", + "0x3e8", + "0xe0" + ] + }, + { + "pc": 6605, + "op": "POP", + "gas": 2968899, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x100", + "0x1bcc", + "0xe0", + "0x3e8" + ] + }, + { + "pc": 6606, + "op": "POP", + "gas": 2968897, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x100", + "0x1bcc", + "0xe0" + ] + }, + { + "pc": 6607, + "op": "JUMP", + "gas": 2968895, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x100", + "0x1bcc" + ] + }, + { + "pc": 7116, + "op": "JUMPDEST", + "gas": 2968887, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x100" + ] + }, + { + "pc": 7117, + "op": "SWAP3", + "gas": 2968886, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x100" + ] + }, + { + "pc": 7118, + "op": "SWAP2", + "gas": 2968883, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x100", + "0x3e8", + "0xe0", + "0x109f" + ] + }, + { + "pc": 7119, + "op": "POP", + "gas": 2968880, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x100", + "0x109f", + "0xe0", + "0x3e8" + ] + }, + { + "pc": 7120, + "op": "POP", + "gas": 2968878, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x100", + "0x109f", + "0xe0" + ] + }, + { + "pc": 7121, + "op": "JUMP", + "gas": 2968876, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x100", + "0x109f" + ] + }, + { + "pc": 4255, + "op": "JUMPDEST", + "gas": 2968868, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x100" + ] + }, + { + "pc": 4256, + "op": "PUSH1", + "gas": 2968867, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x100" + ] + }, + { + "pc": 4258, + "op": "MLOAD", + "gas": 2968864, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x100", + "0x40" + ] + }, + { + "pc": 4259, + "op": "DUP1", + "gas": 2968861, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x100", + "0xe0" + ] + }, + { + "pc": 4260, + "op": "SWAP2", + "gas": 2968858, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x100", + "0xe0", + "0xe0" + ] + }, + { + "pc": 4261, + "op": "SUB", + "gas": 2968855, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0xe0", + "0xe0", + "0x100" + ] + }, + { + "pc": 4262, + "op": "SWAP1", + "gas": 2968852, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0xe0", + "0x20" + ] + }, + { + "pc": 4263, + "op": "LOG3", + "gas": 2968849, + "gasCost": 1756, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8", + "0x1", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x20", + "0xe0" + ] + }, + { + "pc": 4264, + "op": "POP", + "gas": 2967093, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1", + "0x3e8" + ] + }, + { + "pc": 4265, + "op": "POP", + "gas": 2967091, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x1" + ] + }, + { + "pc": 4266, + "op": "POP", + "gas": 2967089, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 4267, + "op": "JUMP", + "gas": 2967087, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0xbb3" + ] + }, + { + "pc": 2995, + "op": "JUMPDEST", + "gas": 2967079, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0" + ] + }, + { + "pc": 2996, + "op": "PUSH1", + "gas": 2967078, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0" + ] + }, + { + "pc": 2998, + "op": "SWAP1", + "gas": 2967075, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x0", + "0x1" + ] + }, + { + "pc": 2999, + "op": "POP", + "gas": 2967072, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x1", + "0x0" + ] + }, + { + "pc": 3000, + "op": "SWAP3", + "gas": 2967070, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x1", + "0x3e8", + "0x1" + ] + }, + { + "pc": 3001, + "op": "SWAP2", + "gas": 2967067, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x1", + "0x1", + "0x3e8", + "0x318" + ] + }, + { + "pc": 3002, + "op": "POP", + "gas": 2967064, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x1", + "0x318", + "0x3e8", + "0x1" + ] + }, + { + "pc": 3003, + "op": "POP", + "gas": 2967062, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x1", + "0x318", + "0x3e8" + ] + }, + { + "pc": 3004, + "op": "JUMP", + "gas": 2967060, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x1", + "0x318" + ] + }, + { + "pc": 792, + "op": "JUMPDEST", + "gas": 2967052, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x1" + ] + }, + { + "pc": 793, + "op": "PUSH1", + "gas": 2967051, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x1" + ] + }, + { + "pc": 795, + "op": "MLOAD", + "gas": 2967048, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x1", + "0x40" + ] + }, + { + "pc": 796, + "op": "PUSH2", + "gas": 2967045, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x1", + "0xe0" + ] + }, + { + "pc": 799, + "op": "SWAP2", + "gas": 2967042, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x1", + "0xe0", + "0x325" + ] + }, + { + "pc": 800, + "op": "SWAP1", + "gas": 2967039, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0xe0", + "0x1" + ] + }, + { + "pc": 801, + "op": "PUSH2", + "gas": 2967036, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0" + ] + }, + { + "pc": 804, + "op": "JUMP", + "gas": 2967033, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x19fa" + ] + }, + { + "pc": 6650, + "op": "JUMPDEST", + "gas": 2967025, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0" + ] + }, + { + "pc": 6651, + "op": "PUSH1", + "gas": 2967024, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0" + ] + }, + { + "pc": 6653, + "op": "PUSH1", + "gas": 2967021, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x0" + ] + }, + { + "pc": 6655, + "op": "DUP3", + "gas": 2967018, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x0", + "0x20" + ] + }, + { + "pc": 6656, + "op": "ADD", + "gas": 2967015, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x0", + "0x20", + "0xe0" + ] + }, + { + "pc": 6657, + "op": "SWAP1", + "gas": 2967012, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x0", + "0x100" + ] + }, + { + "pc": 6658, + "op": "POP", + "gas": 2967009, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x100", + "0x0" + ] + }, + { + "pc": 6659, + "op": "PUSH2", + "gas": 2967007, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x100" + ] + }, + { + "pc": 6662, + "op": "PUSH1", + "gas": 2967004, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x100", + "0x1a0f" + ] + }, + { + "pc": 6664, + "op": "DUP4", + "gas": 2967001, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x100", + "0x1a0f", + "0x0" + ] + }, + { + "pc": 6665, + "op": "ADD", + "gas": 2966998, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x100", + "0x1a0f", + "0x0", + "0xe0" + ] + }, + { + "pc": 6666, + "op": "DUP5", + "gas": 2966995, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x100", + "0x1a0f", + "0xe0" + ] + }, + { + "pc": 6667, + "op": "PUSH2", + "gas": 2966992, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x100", + "0x1a0f", + "0xe0", + "0x1" + ] + }, + { + "pc": 6670, + "op": "JUMP", + "gas": 2966989, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x100", + "0x1a0f", + "0xe0", + "0x1", + "0x17d5" + ] + }, + { + "pc": 6101, + "op": "JUMPDEST", + "gas": 2966981, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x100", + "0x1a0f", + "0xe0", + "0x1" + ] + }, + { + "pc": 6102, + "op": "PUSH2", + "gas": 2966980, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x100", + "0x1a0f", + "0xe0", + "0x1" + ] + }, + { + "pc": 6105, + "op": "DUP2", + "gas": 2966977, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x100", + "0x1a0f", + "0xe0", + "0x1", + "0x17de" + ] + }, + { + "pc": 6106, + "op": "PUSH2", + "gas": 2966974, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x100", + "0x1a0f", + "0xe0", + "0x1", + "0x17de", + "0x1" + ] + }, + { + "pc": 6109, + "op": "JUMP", + "gas": 2966971, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x100", + "0x1a0f", + "0xe0", + "0x1", + "0x17de", + "0x1", + "0x1ca5" + ] + }, + { + "pc": 7333, + "op": "JUMPDEST", + "gas": 2966963, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x100", + "0x1a0f", + "0xe0", + "0x1", + "0x17de", + "0x1" + ] + }, + { + "pc": 7334, + "op": "PUSH1", + "gas": 2966962, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x100", + "0x1a0f", + "0xe0", + "0x1", + "0x17de", + "0x1" + ] + }, + { + "pc": 7336, + "op": "DUP2", + "gas": 2966959, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x100", + "0x1a0f", + "0xe0", + "0x1", + "0x17de", + "0x1", + "0x0" + ] + }, + { + "pc": 7337, + "op": "ISZERO", + "gas": 2966956, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x100", + "0x1a0f", + "0xe0", + "0x1", + "0x17de", + "0x1", + "0x0", + "0x1" + ] + }, + { + "pc": 7338, + "op": "ISZERO", + "gas": 2966953, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x100", + "0x1a0f", + "0xe0", + "0x1", + "0x17de", + "0x1", + "0x0", + "0x0" + ] + }, + { + "pc": 7339, + "op": "SWAP1", + "gas": 2966950, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x100", + "0x1a0f", + "0xe0", + "0x1", + "0x17de", + "0x1", + "0x0", + "0x1" + ] + }, + { + "pc": 7340, + "op": "POP", + "gas": 2966947, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x100", + "0x1a0f", + "0xe0", + "0x1", + "0x17de", + "0x1", + "0x1", + "0x0" + ] + }, + { + "pc": 7341, + "op": "SWAP2", + "gas": 2966945, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x100", + "0x1a0f", + "0xe0", + "0x1", + "0x17de", + "0x1", + "0x1" + ] + }, + { + "pc": 7342, + "op": "SWAP1", + "gas": 2966942, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x100", + "0x1a0f", + "0xe0", + "0x1", + "0x1", + "0x1", + "0x17de" + ] + }, + { + "pc": 7343, + "op": "POP", + "gas": 2966939, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x100", + "0x1a0f", + "0xe0", + "0x1", + "0x1", + "0x17de", + "0x1" + ] + }, + { + "pc": 7344, + "op": "JUMP", + "gas": 2966937, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x100", + "0x1a0f", + "0xe0", + "0x1", + "0x1", + "0x17de" + ] + }, + { + "pc": 6110, + "op": "JUMPDEST", + "gas": 2966929, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x100", + "0x1a0f", + "0xe0", + "0x1", + "0x1" + ] + }, + { + "pc": 6111, + "op": "DUP3", + "gas": 2966928, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x100", + "0x1a0f", + "0xe0", + "0x1", + "0x1" + ] + }, + { + "pc": 6112, + "op": "MSTORE", + "gas": 2966925, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x100", + "0x1a0f", + "0xe0", + "0x1", + "0x1", + "0xe0" + ] + }, + { + "pc": 6113, + "op": "POP", + "gas": 2966922, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x100", + "0x1a0f", + "0xe0", + "0x1" + ] + }, + { + "pc": 6114, + "op": "POP", + "gas": 2966920, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x100", + "0x1a0f", + "0xe0" + ] + }, + { + "pc": 6115, + "op": "JUMP", + "gas": 2966918, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x100", + "0x1a0f" + ] + }, + { + "pc": 6671, + "op": "JUMPDEST", + "gas": 2966910, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x100" + ] + }, + { + "pc": 6672, + "op": "SWAP3", + "gas": 2966909, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x100" + ] + }, + { + "pc": 6673, + "op": "SWAP2", + "gas": 2966906, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x100", + "0x1", + "0xe0", + "0x325" + ] + }, + { + "pc": 6674, + "op": "POP", + "gas": 2966903, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x100", + "0x325", + "0xe0", + "0x1" + ] + }, + { + "pc": 6675, + "op": "POP", + "gas": 2966901, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x100", + "0x325", + "0xe0" + ] + }, + { + "pc": 6676, + "op": "JUMP", + "gas": 2966899, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x100", + "0x325" + ] + }, + { + "pc": 805, + "op": "JUMPDEST", + "gas": 2966891, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x100" + ] + }, + { + "pc": 806, + "op": "PUSH1", + "gas": 2966890, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x100" + ] + }, + { + "pc": 808, + "op": "MLOAD", + "gas": 2966887, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x100", + "0x40" + ] + }, + { + "pc": 809, + "op": "DUP1", + "gas": 2966884, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x100", + "0xe0" + ] + }, + { + "pc": 810, + "op": "SWAP2", + "gas": 2966881, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x100", + "0xe0", + "0xe0" + ] + }, + { + "pc": 811, + "op": "SUB", + "gas": 2966878, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0xe0", + "0xe0", + "0x100" + ] + }, + { + "pc": 812, + "op": "SWAP1", + "gas": 2966875, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0xe0", + "0x20" + ] + }, + { + "pc": 813, + "op": "RETURN", + "gas": 2966872, + "gasCost": 0, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x20", + "0xe0" + ] + } + ] + }, + { + "gas": 22500, + "failed": true, + "returnValue": "08c379a00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002345524332303a207472616e7366657220746f20746865207a65726f20616464726573730000000000000000000000000000000000000000000000000000000000", + "from": { + "address": "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "nonce": 76, + "balance": "0x56bc75e2d630ffffffffffffffffffffffffffffffffffff4b256ffe216b9c", + "codeHash": "0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470" + }, + "to": { + "address": "0x34041eff1f32989bdaa95875e0f41afd6294dcd4", + "nonce": 1, + "balance": "0x0", + "codeHash": "0x9b5ea0519f6e20c36338989b6accc7cf3384eac2f0a083e82730bca177544409" + }, + "accountAfter": [ + { + "address": "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "nonce": 77, + "balance": "0x56bc75e2d630ffffffffffffffffffffffffffffffffffff4b256a52e60828", + "codeHash": "0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470" + }, + { + "address": "0x34041eff1f32989bdaa95875e0f41afd6294dcd4", + "nonce": 1, + "balance": "0x0", + "codeHash": "0x9b5ea0519f6e20c36338989b6accc7cf3384eac2f0a083e82730bca177544409" + } + ], + "codeHash": "0x9b5ea0519f6e20c36338989b6accc7cf3384eac2f0a083e82730bca177544409", + "byteCode": "0x608060405234801561001057600080fd5b506004361061010b5760003560e01c80635c975abb116100a257806395d89b411161007157806395d89b41146102945780639dc29fac146102b2578063a457c2d7146102ce578063a9059cbb146102fe578063dd62ed3e1461032e5761010b565b80635c975abb1461022057806370a082311461023e5780638456cb591461026e5780638e50817a146102785761010b565b8063313ce567116100de578063313ce567146101ac57806339509351146101ca5780633f4ba83a146101fa57806340c10f19146102045761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015e57806323b872dd1461017c575b600080fd5b61011861035e565b6040516101259190611a15565b60405180910390f35b6101486004803603810190610143919061178a565b6103f0565b60405161015591906119fa565b60405180910390f35b61016661040e565b6040516101739190611bb7565b60405180910390f35b6101966004803603810190610191919061173b565b610418565b6040516101a391906119fa565b60405180910390f35b6101b46104f1565b6040516101c19190611bd2565b60405180910390f35b6101e460048036038101906101df919061178a565b610508565b6040516101f191906119fa565b60405180910390f35b6102026105bb565b005b61021e6004803603810190610219919061178a565b610655565b005b610228610743565b60405161023591906119fa565b60405180910390f35b610258600480360381019061025391906116d6565b61075a565b6040516102659190611bb7565b60405180910390f35b6102766107a2565b005b610292600480360381019061028d91906116ff565b61083c565b005b61029c610952565b6040516102a99190611a15565b60405180910390f35b6102cc60048036038101906102c7919061178a565b6109e4565b005b6102e860048036038101906102e3919061178a565b610ad2565b6040516102f591906119fa565b60405180910390f35b6103186004803603810190610313919061178a565b610b9f565b60405161032591906119fa565b60405180910390f35b610348600480360381019061034391906116ff565b610bbd565b6040516103559190611bb7565b60405180910390f35b60606003805461036d90611d51565b80601f016020809104026020016040519081016040528092919081815260200182805461039990611d51565b80156103e65780601f106103bb576101008083540402835291602001916103e6565b820191906000526020600020905b8154815290600101906020018083116103c957829003601f168201915b5050505050905090565b60006104046103fd610c44565b8484610c4c565b6001905092915050565b6000600254905090565b6000610425848484610e17565b6104e684610431610c44565b6104e18560405180606001604052806028815260200161213960289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610497610c44565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110ac9092919063ffffffff16565b610c4c565b600190509392505050565b6000600560009054906101000a900460ff16905090565b60006105b1610515610c44565b846105ac8560016000610526610c44565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461111090919063ffffffff16565b610c4c565b6001905092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461064b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161064290611ab7565b60405180910390fd5b61065361116e565b565b600560019054906101000a900460ff16156106a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161069c90611ad7565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610735576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161072c90611ab7565b60405180910390fd5b61073f8282611218565b5050565b6000600560019054906101000a900460ff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610832576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082990611ab7565b60405180910390fd5b61083a6113ac565b565b600560029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146108cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c390611b37565b60405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b60606004805461096190611d51565b80601f016020809104026020016040519081016040528092919081815260200182805461098d90611d51565b80156109da5780601f106109af576101008083540402835291602001916109da565b820191906000526020600020905b8154815290600101906020018083116109bd57829003601f168201915b5050505050905090565b600560019054906101000a900460ff1615610a34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2b90611ad7565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610ac4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abb90611ab7565b60405180910390fd5b610ace8282611457565b5050565b6000610b95610adf610c44565b84610b90856040518060600160405280602581526020016121616025913960016000610b09610c44565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110ac9092919063ffffffff16565b610c4c565b6001905092915050565b6000610bb3610bac610c44565b8484610e17565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb390611b57565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2390611a77565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e0a9190611bb7565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7e90611b17565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ef7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eee90611a37565b60405180910390fd5b610f02838383611605565b610f6d81604051806060016040528060268152602001612113602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110ac9092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611000816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461111090919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161109f9190611bb7565b60405180910390a3505050565b60008383111582906110f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110eb9190611a15565b60405180910390fd5b50600083856111039190611c5f565b9050809150509392505050565b600080828461111f9190611c09565b905083811015611164576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115b90611a97565b60405180910390fd5b8091505092915050565b600560019054906101000a900460ff166111bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b490611a57565b60405180910390fd5b6000600560016101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611201610c44565b60405161120e91906119df565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611288576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127f90611b77565b60405180910390fd5b61129460008383611605565b6112a98160025461111090919063ffffffff16565b600281905550611300816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461111090919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516113a09190611bb7565b60405180910390a35050565b600560019054906101000a900460ff16156113fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f390611ad7565b60405180910390fd5b6001600560016101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611440610c44565b60405161144d91906119df565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114be90611af7565b60405180910390fd5b6114d382600083611605565b61153e816040518060600160405280602281526020016120f1602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110ac9092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506115958160025461165d90919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516115f99190611bb7565b60405180910390a35050565b6116108383836116a7565b611618610743565b15611658576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164f90611b97565b60405180910390fd5b505050565b600061169f83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506110ac565b905092915050565b505050565b6000813590506116bb816120c2565b92915050565b6000813590506116d0816120d9565b92915050565b6000602082840312156116e857600080fd5b60006116f6848285016116ac565b91505092915050565b6000806040838503121561171257600080fd5b6000611720858286016116ac565b9250506020611731858286016116ac565b9150509250929050565b60008060006060848603121561175057600080fd5b600061175e868287016116ac565b935050602061176f868287016116ac565b9250506040611780868287016116c1565b9150509250925092565b6000806040838503121561179d57600080fd5b60006117ab858286016116ac565b92505060206117bc858286016116c1565b9150509250929050565b6117cf81611ce8565b82525050565b6117de81611ca5565b82525050565b60006117ef82611bed565b6117f98185611bf8565b9350611809818560208601611d1e565b61181281611de1565b840191505092915050565b600061182a602383611bf8565b915061183582611df2565b604082019050919050565b600061184d601483611bf8565b915061185882611e41565b602082019050919050565b6000611870602283611bf8565b915061187b82611e6a565b604082019050919050565b6000611893601b83611bf8565b915061189e82611eb9565b602082019050919050565b60006118b6600b83611bf8565b91506118c182611ee2565b602082019050919050565b60006118d9601083611bf8565b91506118e482611f0b565b602082019050919050565b60006118fc602183611bf8565b915061190782611f34565b604082019050919050565b600061191f602583611bf8565b915061192a82611f83565b604082019050919050565b6000611942600c83611bf8565b915061194d82611fd2565b602082019050919050565b6000611965602483611bf8565b915061197082611ffb565b604082019050919050565b6000611988601f83611bf8565b91506119938261204a565b602082019050919050565b60006119ab602a83611bf8565b91506119b682612073565b604082019050919050565b6119ca81611cd1565b82525050565b6119d981611cdb565b82525050565b60006020820190506119f460008301846117c6565b92915050565b6000602082019050611a0f60008301846117d5565b92915050565b60006020820190508181036000830152611a2f81846117e4565b905092915050565b60006020820190508181036000830152611a508161181d565b9050919050565b60006020820190508181036000830152611a7081611840565b9050919050565b60006020820190508181036000830152611a9081611863565b9050919050565b60006020820190508181036000830152611ab081611886565b9050919050565b60006020820190508181036000830152611ad0816118a9565b9050919050565b60006020820190508181036000830152611af0816118cc565b9050919050565b60006020820190508181036000830152611b10816118ef565b9050919050565b60006020820190508181036000830152611b3081611912565b9050919050565b60006020820190508181036000830152611b5081611935565b9050919050565b60006020820190508181036000830152611b7081611958565b9050919050565b60006020820190508181036000830152611b908161197b565b9050919050565b60006020820190508181036000830152611bb08161199e565b9050919050565b6000602082019050611bcc60008301846119c1565b92915050565b6000602082019050611be760008301846119d0565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611c1482611cd1565b9150611c1f83611cd1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611c5457611c53611d83565b5b828201905092915050565b6000611c6a82611cd1565b9150611c7583611cd1565b925082821015611c8857611c87611d83565b5b828203905092915050565b6000611c9e82611cb1565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b6000611cf382611cfa565b9050919050565b6000611d0582611d0c565b9050919050565b6000611d1782611cb1565b9050919050565b60005b83811015611d3c578082015181840152602081019050611d21565b83811115611d4b576000848401525b50505050565b60006002820490506001821680611d6957607f821691505b60208210811415611d7d57611d7c611db2565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b7f6e6f7420616c6c6f776564000000000000000000000000000000000000000000600082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f6f6e6c7920466163746f72790000000000000000000000000000000000000000600082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b7f45524332305061757361626c653a20746f6b656e207472616e7366657220776860008201527f696c652070617573656400000000000000000000000000000000000000000000602082015250565b6120cb81611c93565b81146120d657600080fd5b50565b6120e281611cd1565b81146120ed57600080fd5b5056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122050720249c11bf2bf6da8b1770af05168068be0eee81154cac03b74b0ab3b6a3f64736f6c63430008040033", + "structLogs": [ + { + "pc": 0, + "op": "PUSH1", + "gas": 3000312, + "gasCost": 3, + "depth": 1 + }, + { + "pc": 2, + "op": "PUSH1", + "gas": 3000309, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80" + ] + }, + { + "pc": 4, + "op": "MSTORE", + "gas": 3000306, + "gasCost": 12, + "depth": 1, + "stack": [ + "0x80", + "0x40" + ] + }, + { + "pc": 5, + "op": "CALLVALUE", + "gas": 3000294, + "gasCost": 2, + "depth": 1 + }, + { + "pc": 6, + "op": "DUP1", + "gas": 3000292, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 7, + "op": "ISZERO", + "gas": 3000289, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0", + "0x0" + ] + }, + { + "pc": 8, + "op": "PUSH2", + "gas": 3000286, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0", + "0x1" + ] + }, + { + "pc": 11, + "op": "JUMPI", + "gas": 3000283, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x0", + "0x1", + "0x10" + ] + }, + { + "pc": 16, + "op": "JUMPDEST", + "gas": 3000273, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 17, + "op": "POP", + "gas": 3000272, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 18, + "op": "PUSH1", + "gas": 3000270, + "gasCost": 3, + "depth": 1 + }, + { + "pc": 20, + "op": "CALLDATASIZE", + "gas": 3000267, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x4" + ] + }, + { + "pc": 21, + "op": "LT", + "gas": 3000265, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4", + "0x44" + ] + }, + { + "pc": 22, + "op": "PUSH2", + "gas": 3000262, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 25, + "op": "JUMPI", + "gas": 3000259, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x0", + "0x10b" + ] + }, + { + "pc": 26, + "op": "PUSH1", + "gas": 3000249, + "gasCost": 3, + "depth": 1 + }, + { + "pc": 28, + "op": "CALLDATALOAD", + "gas": 3000246, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 29, + "op": "PUSH1", + "gas": 3000243, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb00000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 31, + "op": "SHR", + "gas": 3000240, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb00000000000000000000000000000000000000000000000000000000", + "0xe0" + ] + }, + { + "pc": 32, + "op": "DUP1", + "gas": 3000237, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb" + ] + }, + { + "pc": 33, + "op": "PUSH4", + "gas": 3000234, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0xa9059cbb" + ] + }, + { + "pc": 38, + "op": "GT", + "gas": 3000231, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0xa9059cbb", + "0x5c975abb" + ] + }, + { + "pc": 39, + "op": "PUSH2", + "gas": 3000228, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x0" + ] + }, + { + "pc": 42, + "op": "JUMPI", + "gas": 3000225, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x0", + "0xa2" + ] + }, + { + "pc": 43, + "op": "DUP1", + "gas": 3000215, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb" + ] + }, + { + "pc": 44, + "op": "PUSH4", + "gas": 3000212, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0xa9059cbb" + ] + }, + { + "pc": 49, + "op": "GT", + "gas": 3000209, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0xa9059cbb", + "0x95d89b41" + ] + }, + { + "pc": 50, + "op": "PUSH2", + "gas": 3000206, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x0" + ] + }, + { + "pc": 53, + "op": "JUMPI", + "gas": 3000203, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x0", + "0x71" + ] + }, + { + "pc": 54, + "op": "DUP1", + "gas": 3000193, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb" + ] + }, + { + "pc": 55, + "op": "PUSH4", + "gas": 3000190, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0xa9059cbb" + ] + }, + { + "pc": 60, + "op": "EQ", + "gas": 3000187, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0xa9059cbb", + "0x95d89b41" + ] + }, + { + "pc": 61, + "op": "PUSH2", + "gas": 3000184, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x0" + ] + }, + { + "pc": 64, + "op": "JUMPI", + "gas": 3000181, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x0", + "0x294" + ] + }, + { + "pc": 65, + "op": "DUP1", + "gas": 3000171, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb" + ] + }, + { + "pc": 66, + "op": "PUSH4", + "gas": 3000168, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0xa9059cbb" + ] + }, + { + "pc": 71, + "op": "EQ", + "gas": 3000165, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0xa9059cbb", + "0x9dc29fac" + ] + }, + { + "pc": 72, + "op": "PUSH2", + "gas": 3000162, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x0" + ] + }, + { + "pc": 75, + "op": "JUMPI", + "gas": 3000159, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x0", + "0x2b2" + ] + }, + { + "pc": 76, + "op": "DUP1", + "gas": 3000149, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb" + ] + }, + { + "pc": 77, + "op": "PUSH4", + "gas": 3000146, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0xa9059cbb" + ] + }, + { + "pc": 82, + "op": "EQ", + "gas": 3000143, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0xa9059cbb", + "0xa457c2d7" + ] + }, + { + "pc": 83, + "op": "PUSH2", + "gas": 3000140, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x0" + ] + }, + { + "pc": 86, + "op": "JUMPI", + "gas": 3000137, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x0", + "0x2ce" + ] + }, + { + "pc": 87, + "op": "DUP1", + "gas": 3000127, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb" + ] + }, + { + "pc": 88, + "op": "PUSH4", + "gas": 3000124, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0xa9059cbb" + ] + }, + { + "pc": 93, + "op": "EQ", + "gas": 3000121, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0xa9059cbb", + "0xa9059cbb" + ] + }, + { + "pc": 94, + "op": "PUSH2", + "gas": 3000118, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x1" + ] + }, + { + "pc": 97, + "op": "JUMPI", + "gas": 3000115, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x1", + "0x2fe" + ] + }, + { + "pc": 766, + "op": "JUMPDEST", + "gas": 3000105, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb" + ] + }, + { + "pc": 767, + "op": "PUSH2", + "gas": 3000104, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb" + ] + }, + { + "pc": 770, + "op": "PUSH1", + "gas": 3000101, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318" + ] + }, + { + "pc": 772, + "op": "DUP1", + "gas": 3000098, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4" + ] + }, + { + "pc": 773, + "op": "CALLDATASIZE", + "gas": 3000095, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x4" + ] + }, + { + "pc": 774, + "op": "SUB", + "gas": 3000093, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x4", + "0x44" + ] + }, + { + "pc": 775, + "op": "DUP2", + "gas": 3000090, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x40" + ] + }, + { + "pc": 776, + "op": "ADD", + "gas": 3000087, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x40", + "0x4" + ] + }, + { + "pc": 777, + "op": "SWAP1", + "gas": 3000084, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x44" + ] + }, + { + "pc": 778, + "op": "PUSH2", + "gas": 3000081, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x44", + "0x4" + ] + }, + { + "pc": 781, + "op": "SWAP2", + "gas": 3000078, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x44", + "0x4", + "0x313" + ] + }, + { + "pc": 782, + "op": "SWAP1", + "gas": 3000075, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x4", + "0x44" + ] + }, + { + "pc": 783, + "op": "PUSH2", + "gas": 3000072, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4" + ] + }, + { + "pc": 786, + "op": "JUMP", + "gas": 3000069, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x178a" + ] + }, + { + "pc": 6026, + "op": "JUMPDEST", + "gas": 3000061, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4" + ] + }, + { + "pc": 6027, + "op": "PUSH1", + "gas": 3000060, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4" + ] + }, + { + "pc": 6029, + "op": "DUP1", + "gas": 3000057, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0" + ] + }, + { + "pc": 6030, + "op": "PUSH1", + "gas": 3000054, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0" + ] + }, + { + "pc": 6032, + "op": "DUP4", + "gas": 3000051, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x40" + ] + }, + { + "pc": 6033, + "op": "DUP6", + "gas": 3000048, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x40", + "0x4" + ] + }, + { + "pc": 6034, + "op": "SUB", + "gas": 3000045, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x40", + "0x4", + "0x44" + ] + }, + { + "pc": 6035, + "op": "SLT", + "gas": 3000042, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x40", + "0x40" + ] + }, + { + "pc": 6036, + "op": "ISZERO", + "gas": 3000039, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 6037, + "op": "PUSH2", + "gas": 3000036, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x1" + ] + }, + { + "pc": 6040, + "op": "JUMPI", + "gas": 3000033, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x1", + "0x179d" + ] + }, + { + "pc": 6045, + "op": "JUMPDEST", + "gas": 3000023, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0" + ] + }, + { + "pc": 6046, + "op": "PUSH1", + "gas": 3000022, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0" + ] + }, + { + "pc": 6048, + "op": "PUSH2", + "gas": 3000019, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 6051, + "op": "DUP6", + "gas": 3000016, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab" + ] + }, + { + "pc": 6052, + "op": "DUP3", + "gas": 3000013, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44" + ] + }, + { + "pc": 6053, + "op": "DUP7", + "gas": 3000010, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x0" + ] + }, + { + "pc": 6054, + "op": "ADD", + "gas": 3000007, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x0", + "0x4" + ] + }, + { + "pc": 6055, + "op": "PUSH2", + "gas": 3000004, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4" + ] + }, + { + "pc": 6058, + "op": "JUMP", + "gas": 3000001, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x16ac" + ] + }, + { + "pc": 5804, + "op": "JUMPDEST", + "gas": 2999993, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4" + ] + }, + { + "pc": 5805, + "op": "PUSH1", + "gas": 2999992, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4" + ] + }, + { + "pc": 5807, + "op": "DUP2", + "gas": 2999989, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x0" + ] + }, + { + "pc": 5808, + "op": "CALLDATALOAD", + "gas": 2999986, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x0", + "0x4" + ] + }, + { + "pc": 5809, + "op": "SWAP1", + "gas": 2999983, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x0", + "0x0" + ] + }, + { + "pc": 5810, + "op": "POP", + "gas": 2999980, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x0", + "0x0" + ] + }, + { + "pc": 5811, + "op": "PUSH2", + "gas": 2999978, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x0" + ] + }, + { + "pc": 5814, + "op": "DUP2", + "gas": 2999975, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x0", + "0x16bb" + ] + }, + { + "pc": 5815, + "op": "PUSH2", + "gas": 2999972, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x0", + "0x16bb", + "0x0" + ] + }, + { + "pc": 5818, + "op": "JUMP", + "gas": 2999969, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x0", + "0x16bb", + "0x0", + "0x20c2" + ] + }, + { + "pc": 8386, + "op": "JUMPDEST", + "gas": 2999961, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x0", + "0x16bb", + "0x0" + ] + }, + { + "pc": 8387, + "op": "PUSH2", + "gas": 2999960, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x0", + "0x16bb", + "0x0" + ] + }, + { + "pc": 8390, + "op": "DUP2", + "gas": 2999957, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x0", + "0x16bb", + "0x0", + "0x20cb" + ] + }, + { + "pc": 8391, + "op": "PUSH2", + "gas": 2999954, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x0", + "0x16bb", + "0x0", + "0x20cb", + "0x0" + ] + }, + { + "pc": 8394, + "op": "JUMP", + "gas": 2999951, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x0", + "0x16bb", + "0x0", + "0x20cb", + "0x0", + "0x1c93" + ] + }, + { + "pc": 7315, + "op": "JUMPDEST", + "gas": 2999943, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x0", + "0x16bb", + "0x0", + "0x20cb", + "0x0" + ] + }, + { + "pc": 7316, + "op": "PUSH1", + "gas": 2999942, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x0", + "0x16bb", + "0x0", + "0x20cb", + "0x0" + ] + }, + { + "pc": 7318, + "op": "PUSH2", + "gas": 2999939, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x0", + "0x16bb", + "0x0", + "0x20cb", + "0x0", + "0x0" + ] + }, + { + "pc": 7321, + "op": "DUP3", + "gas": 2999936, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x0", + "0x16bb", + "0x0", + "0x20cb", + "0x0", + "0x0", + "0x1c9e" + ] + }, + { + "pc": 7322, + "op": "PUSH2", + "gas": 2999933, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x0", + "0x16bb", + "0x0", + "0x20cb", + "0x0", + "0x0", + "0x1c9e", + "0x0" + ] + }, + { + "pc": 7325, + "op": "JUMP", + "gas": 2999930, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x0", + "0x16bb", + "0x0", + "0x20cb", + "0x0", + "0x0", + "0x1c9e", + "0x0", + "0x1cb1" + ] + }, + { + "pc": 7345, + "op": "JUMPDEST", + "gas": 2999922, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x0", + "0x16bb", + "0x0", + "0x20cb", + "0x0", + "0x0", + "0x1c9e", + "0x0" + ] + }, + { + "pc": 7346, + "op": "PUSH1", + "gas": 2999921, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x0", + "0x16bb", + "0x0", + "0x20cb", + "0x0", + "0x0", + "0x1c9e", + "0x0" + ] + }, + { + "pc": 7348, + "op": "PUSH20", + "gas": 2999918, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x0", + "0x16bb", + "0x0", + "0x20cb", + "0x0", + "0x0", + "0x1c9e", + "0x0", + "0x0" + ] + }, + { + "pc": 7369, + "op": "DUP3", + "gas": 2999915, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x0", + "0x16bb", + "0x0", + "0x20cb", + "0x0", + "0x0", + "0x1c9e", + "0x0", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 7370, + "op": "AND", + "gas": 2999912, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x0", + "0x16bb", + "0x0", + "0x20cb", + "0x0", + "0x0", + "0x1c9e", + "0x0", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x0" + ] + }, + { + "pc": 7371, + "op": "SWAP1", + "gas": 2999909, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x0", + "0x16bb", + "0x0", + "0x20cb", + "0x0", + "0x0", + "0x1c9e", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 7372, + "op": "POP", + "gas": 2999906, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x0", + "0x16bb", + "0x0", + "0x20cb", + "0x0", + "0x0", + "0x1c9e", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 7373, + "op": "SWAP2", + "gas": 2999904, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x0", + "0x16bb", + "0x0", + "0x20cb", + "0x0", + "0x0", + "0x1c9e", + "0x0", + "0x0" + ] + }, + { + "pc": 7374, + "op": "SWAP1", + "gas": 2999901, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x0", + "0x16bb", + "0x0", + "0x20cb", + "0x0", + "0x0", + "0x0", + "0x0", + "0x1c9e" + ] + }, + { + "pc": 7375, + "op": "POP", + "gas": 2999898, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x0", + "0x16bb", + "0x0", + "0x20cb", + "0x0", + "0x0", + "0x0", + "0x1c9e", + "0x0" + ] + }, + { + "pc": 7376, + "op": "JUMP", + "gas": 2999896, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x0", + "0x16bb", + "0x0", + "0x20cb", + "0x0", + "0x0", + "0x0", + "0x1c9e" + ] + }, + { + "pc": 7326, + "op": "JUMPDEST", + "gas": 2999888, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x0", + "0x16bb", + "0x0", + "0x20cb", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 7327, + "op": "SWAP1", + "gas": 2999887, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x0", + "0x16bb", + "0x0", + "0x20cb", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 7328, + "op": "POP", + "gas": 2999884, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x0", + "0x16bb", + "0x0", + "0x20cb", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 7329, + "op": "SWAP2", + "gas": 2999882, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x0", + "0x16bb", + "0x0", + "0x20cb", + "0x0", + "0x0" + ] + }, + { + "pc": 7330, + "op": "SWAP1", + "gas": 2999879, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x0", + "0x16bb", + "0x0", + "0x0", + "0x0", + "0x20cb" + ] + }, + { + "pc": 7331, + "op": "POP", + "gas": 2999876, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x0", + "0x16bb", + "0x0", + "0x0", + "0x20cb", + "0x0" + ] + }, + { + "pc": 7332, + "op": "JUMP", + "gas": 2999874, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x0", + "0x16bb", + "0x0", + "0x0", + "0x20cb" + ] + }, + { + "pc": 8395, + "op": "JUMPDEST", + "gas": 2999866, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x0", + "0x16bb", + "0x0", + "0x0" + ] + }, + { + "pc": 8396, + "op": "DUP2", + "gas": 2999865, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x0", + "0x16bb", + "0x0", + "0x0" + ] + }, + { + "pc": 8397, + "op": "EQ", + "gas": 2999862, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x0", + "0x16bb", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 8398, + "op": "PUSH2", + "gas": 2999859, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x0", + "0x16bb", + "0x0", + "0x1" + ] + }, + { + "pc": 8401, + "op": "JUMPI", + "gas": 2999856, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x0", + "0x16bb", + "0x0", + "0x1", + "0x20d6" + ] + }, + { + "pc": 8406, + "op": "JUMPDEST", + "gas": 2999846, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x0", + "0x16bb", + "0x0" + ] + }, + { + "pc": 8407, + "op": "POP", + "gas": 2999845, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x0", + "0x16bb", + "0x0" + ] + }, + { + "pc": 8408, + "op": "JUMP", + "gas": 2999843, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x0", + "0x16bb" + ] + }, + { + "pc": 5819, + "op": "JUMPDEST", + "gas": 2999835, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x0" + ] + }, + { + "pc": 5820, + "op": "SWAP3", + "gas": 2999834, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x0" + ] + }, + { + "pc": 5821, + "op": "SWAP2", + "gas": 2999831, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0x44", + "0x4", + "0x17ab" + ] + }, + { + "pc": 5822, + "op": "POP", + "gas": 2999828, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x4", + "0x44" + ] + }, + { + "pc": 5823, + "op": "POP", + "gas": 2999826, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x4" + ] + }, + { + "pc": 5824, + "op": "JUMP", + "gas": 2999824, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0x17ab" + ] + }, + { + "pc": 6059, + "op": "JUMPDEST", + "gas": 2999816, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 6060, + "op": "SWAP3", + "gas": 2999815, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 6061, + "op": "POP", + "gas": 2999812, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 6062, + "op": "POP", + "gas": 2999810, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 6063, + "op": "PUSH1", + "gas": 2999808, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0" + ] + }, + { + "pc": 6065, + "op": "PUSH2", + "gas": 2999805, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x20" + ] + }, + { + "pc": 6068, + "op": "DUP6", + "gas": 2999802, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x20", + "0x17bc" + ] + }, + { + "pc": 6069, + "op": "DUP3", + "gas": 2999799, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x20", + "0x17bc", + "0x44" + ] + }, + { + "pc": 6070, + "op": "DUP7", + "gas": 2999796, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x20" + ] + }, + { + "pc": 6071, + "op": "ADD", + "gas": 2999793, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x20", + "0x4" + ] + }, + { + "pc": 6072, + "op": "PUSH2", + "gas": 2999790, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24" + ] + }, + { + "pc": 6075, + "op": "JUMP", + "gas": 2999787, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x16c1" + ] + }, + { + "pc": 5825, + "op": "JUMPDEST", + "gas": 2999779, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24" + ] + }, + { + "pc": 5826, + "op": "PUSH1", + "gas": 2999778, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24" + ] + }, + { + "pc": 5828, + "op": "DUP2", + "gas": 2999775, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x0" + ] + }, + { + "pc": 5829, + "op": "CALLDATALOAD", + "gas": 2999772, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x0", + "0x24" + ] + }, + { + "pc": 5830, + "op": "SWAP1", + "gas": 2999769, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x0", + "0x3e8" + ] + }, + { + "pc": 5831, + "op": "POP", + "gas": 2999766, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8", + "0x0" + ] + }, + { + "pc": 5832, + "op": "PUSH2", + "gas": 2999764, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8" + ] + }, + { + "pc": 5835, + "op": "DUP2", + "gas": 2999761, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8", + "0x16d0" + ] + }, + { + "pc": 5836, + "op": "PUSH2", + "gas": 2999758, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8", + "0x16d0", + "0x3e8" + ] + }, + { + "pc": 5839, + "op": "JUMP", + "gas": 2999755, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8", + "0x16d0", + "0x3e8", + "0x20d9" + ] + }, + { + "pc": 8409, + "op": "JUMPDEST", + "gas": 2999747, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8", + "0x16d0", + "0x3e8" + ] + }, + { + "pc": 8410, + "op": "PUSH2", + "gas": 2999746, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8", + "0x16d0", + "0x3e8" + ] + }, + { + "pc": 8413, + "op": "DUP2", + "gas": 2999743, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8", + "0x16d0", + "0x3e8", + "0x20e2" + ] + }, + { + "pc": 8414, + "op": "PUSH2", + "gas": 2999740, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8", + "0x16d0", + "0x3e8", + "0x20e2", + "0x3e8" + ] + }, + { + "pc": 8417, + "op": "JUMP", + "gas": 2999737, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8", + "0x16d0", + "0x3e8", + "0x20e2", + "0x3e8", + "0x1cd1" + ] + }, + { + "pc": 7377, + "op": "JUMPDEST", + "gas": 2999729, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8", + "0x16d0", + "0x3e8", + "0x20e2", + "0x3e8" + ] + }, + { + "pc": 7378, + "op": "PUSH1", + "gas": 2999728, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8", + "0x16d0", + "0x3e8", + "0x20e2", + "0x3e8" + ] + }, + { + "pc": 7380, + "op": "DUP2", + "gas": 2999725, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8", + "0x16d0", + "0x3e8", + "0x20e2", + "0x3e8", + "0x0" + ] + }, + { + "pc": 7381, + "op": "SWAP1", + "gas": 2999722, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8", + "0x16d0", + "0x3e8", + "0x20e2", + "0x3e8", + "0x0", + "0x3e8" + ] + }, + { + "pc": 7382, + "op": "POP", + "gas": 2999719, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8", + "0x16d0", + "0x3e8", + "0x20e2", + "0x3e8", + "0x3e8", + "0x0" + ] + }, + { + "pc": 7383, + "op": "SWAP2", + "gas": 2999717, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8", + "0x16d0", + "0x3e8", + "0x20e2", + "0x3e8", + "0x3e8" + ] + }, + { + "pc": 7384, + "op": "SWAP1", + "gas": 2999714, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8", + "0x16d0", + "0x3e8", + "0x3e8", + "0x3e8", + "0x20e2" + ] + }, + { + "pc": 7385, + "op": "POP", + "gas": 2999711, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8", + "0x16d0", + "0x3e8", + "0x3e8", + "0x20e2", + "0x3e8" + ] + }, + { + "pc": 7386, + "op": "JUMP", + "gas": 2999709, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8", + "0x16d0", + "0x3e8", + "0x3e8", + "0x20e2" + ] + }, + { + "pc": 8418, + "op": "JUMPDEST", + "gas": 2999701, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8", + "0x16d0", + "0x3e8", + "0x3e8" + ] + }, + { + "pc": 8419, + "op": "DUP2", + "gas": 2999700, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8", + "0x16d0", + "0x3e8", + "0x3e8" + ] + }, + { + "pc": 8420, + "op": "EQ", + "gas": 2999697, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8", + "0x16d0", + "0x3e8", + "0x3e8", + "0x3e8" + ] + }, + { + "pc": 8421, + "op": "PUSH2", + "gas": 2999694, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8", + "0x16d0", + "0x3e8", + "0x1" + ] + }, + { + "pc": 8424, + "op": "JUMPI", + "gas": 2999691, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8", + "0x16d0", + "0x3e8", + "0x1", + "0x20ed" + ] + }, + { + "pc": 8429, + "op": "JUMPDEST", + "gas": 2999681, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8", + "0x16d0", + "0x3e8" + ] + }, + { + "pc": 8430, + "op": "POP", + "gas": 2999680, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8", + "0x16d0", + "0x3e8" + ] + }, + { + "pc": 8431, + "op": "JUMP", + "gas": 2999678, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8", + "0x16d0" + ] + }, + { + "pc": 5840, + "op": "JUMPDEST", + "gas": 2999670, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8" + ] + }, + { + "pc": 5841, + "op": "SWAP3", + "gas": 2999669, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8" + ] + }, + { + "pc": 5842, + "op": "SWAP2", + "gas": 2999666, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x20", + "0x3e8", + "0x44", + "0x24", + "0x17bc" + ] + }, + { + "pc": 5843, + "op": "POP", + "gas": 2999663, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x20", + "0x3e8", + "0x17bc", + "0x24", + "0x44" + ] + }, + { + "pc": 5844, + "op": "POP", + "gas": 2999661, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x20", + "0x3e8", + "0x17bc", + "0x24" + ] + }, + { + "pc": 5845, + "op": "JUMP", + "gas": 2999659, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x20", + "0x3e8", + "0x17bc" + ] + }, + { + "pc": 6076, + "op": "JUMPDEST", + "gas": 2999651, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x20", + "0x3e8" + ] + }, + { + "pc": 6077, + "op": "SWAP2", + "gas": 2999650, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x20", + "0x3e8" + ] + }, + { + "pc": 6078, + "op": "POP", + "gas": 2999647, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x3e8", + "0x20", + "0x0" + ] + }, + { + "pc": 6079, + "op": "POP", + "gas": 2999645, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x3e8", + "0x20" + ] + }, + { + "pc": 6080, + "op": "SWAP3", + "gas": 2999643, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x3e8" + ] + }, + { + "pc": 6081, + "op": "POP", + "gas": 2999640, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x3e8", + "0x4", + "0x0", + "0x44" + ] + }, + { + "pc": 6082, + "op": "SWAP3", + "gas": 2999638, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x3e8", + "0x4", + "0x0" + ] + }, + { + "pc": 6083, + "op": "SWAP1", + "gas": 2999635, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x4", + "0x313" + ] + }, + { + "pc": 6084, + "op": "POP", + "gas": 2999632, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x313", + "0x4" + ] + }, + { + "pc": 6085, + "op": "JUMP", + "gas": 2999630, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x313" + ] + }, + { + "pc": 787, + "op": "JUMPDEST", + "gas": 2999622, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8" + ] + }, + { + "pc": 788, + "op": "PUSH2", + "gas": 2999621, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8" + ] + }, + { + "pc": 791, + "op": "JUMP", + "gas": 2999618, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0xb9f" + ] + }, + { + "pc": 2975, + "op": "JUMPDEST", + "gas": 2999610, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8" + ] + }, + { + "pc": 2976, + "op": "PUSH1", + "gas": 2999609, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8" + ] + }, + { + "pc": 2978, + "op": "PUSH2", + "gas": 2999606, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0" + ] + }, + { + "pc": 2981, + "op": "PUSH2", + "gas": 2999603, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3" + ] + }, + { + "pc": 2984, + "op": "PUSH2", + "gas": 2999600, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0xbac" + ] + }, + { + "pc": 2987, + "op": "JUMP", + "gas": 2999597, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0xbac", + "0xc44" + ] + }, + { + "pc": 3140, + "op": "JUMPDEST", + "gas": 2999589, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0xbac" + ] + }, + { + "pc": 3141, + "op": "PUSH1", + "gas": 2999588, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0xbac" + ] + }, + { + "pc": 3143, + "op": "CALLER", + "gas": 2999585, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0xbac", + "0x0" + ] + }, + { + "pc": 3144, + "op": "SWAP1", + "gas": 2999583, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0xbac", + "0x0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 3145, + "op": "POP", + "gas": 2999580, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0xbac", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0" + ] + }, + { + "pc": 3146, + "op": "SWAP1", + "gas": 2999578, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0xbac", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 3147, + "op": "JUMP", + "gas": 2999575, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xbac" + ] + }, + { + "pc": 2988, + "op": "JUMPDEST", + "gas": 2999567, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 2989, + "op": "DUP5", + "gas": 2999566, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 2990, + "op": "DUP5", + "gas": 2999563, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0" + ] + }, + { + "pc": 2991, + "op": "PUSH2", + "gas": 2999560, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x3e8" + ] + }, + { + "pc": 2994, + "op": "JUMP", + "gas": 2999557, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x3e8", + "0xe17" + ] + }, + { + "pc": 3607, + "op": "JUMPDEST", + "gas": 2999549, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x3e8" + ] + }, + { + "pc": 3608, + "op": "PUSH1", + "gas": 2999548, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x3e8" + ] + }, + { + "pc": 3610, + "op": "PUSH20", + "gas": 2999545, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x3e8", + "0x0" + ] + }, + { + "pc": 3631, + "op": "AND", + "gas": 2999542, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x3e8", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 3632, + "op": "DUP4", + "gas": 2999539, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x3e8", + "0x0" + ] + }, + { + "pc": 3633, + "op": "PUSH20", + "gas": 2999536, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x3e8", + "0x0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 3654, + "op": "AND", + "gas": 2999533, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x3e8", + "0x0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 3655, + "op": "EQ", + "gas": 2999530, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x3e8", + "0x0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 3656, + "op": "ISZERO", + "gas": 2999527, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x3e8", + "0x0" + ] + }, + { + "pc": 3657, + "op": "PUSH2", + "gas": 2999524, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x3e8", + "0x1" + ] + }, + { + "pc": 3660, + "op": "JUMPI", + "gas": 2999521, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x3e8", + "0x1", + "0xe87" + ] + }, + { + "pc": 3719, + "op": "JUMPDEST", + "gas": 2999511, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x3e8" + ] + }, + { + "pc": 3720, + "op": "PUSH1", + "gas": 2999510, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x3e8" + ] + }, + { + "pc": 3722, + "op": "PUSH20", + "gas": 2999507, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x3e8", + "0x0" + ] + }, + { + "pc": 3743, + "op": "AND", + "gas": 2999504, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x3e8", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 3744, + "op": "DUP3", + "gas": 2999501, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x3e8", + "0x0" + ] + }, + { + "pc": 3745, + "op": "PUSH20", + "gas": 2999498, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x3e8", + "0x0", + "0x0" + ] + }, + { + "pc": 3766, + "op": "AND", + "gas": 2999495, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 3767, + "op": "EQ", + "gas": 2999492, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x3e8", + "0x0", + "0x0" + ] + }, + { + "pc": 3768, + "op": "ISZERO", + "gas": 2999489, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x3e8", + "0x1" + ] + }, + { + "pc": 3769, + "op": "PUSH2", + "gas": 2999486, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x3e8", + "0x0" + ] + }, + { + "pc": 3772, + "op": "JUMPI", + "gas": 2999483, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x3e8", + "0x0", + "0xef7" + ] + }, + { + "pc": 3773, + "op": "PUSH1", + "gas": 2999473, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x3e8" + ] + }, + { + "pc": 3775, + "op": "MLOAD", + "gas": 2999470, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x3e8", + "0x40" + ] + }, + { + "pc": 3776, + "op": "PUSH32", + "gas": 2999467, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x3e8", + "0x80" + ] + }, + { + "pc": 3809, + "op": "DUP2", + "gas": 2999464, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x3e8", + "0x80", + "0x8c379a000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 3810, + "op": "MSTORE", + "gas": 2999461, + "gasCost": 9, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x3e8", + "0x80", + "0x8c379a000000000000000000000000000000000000000000000000000000000", + "0x80" + ] + }, + { + "pc": 3811, + "op": "PUSH1", + "gas": 2999452, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x3e8", + "0x80" + ] + }, + { + "pc": 3813, + "op": "ADD", + "gas": 2999449, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x3e8", + "0x80", + "0x4" + ] + }, + { + "pc": 3814, + "op": "PUSH2", + "gas": 2999446, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x3e8", + "0x84" + ] + }, + { + "pc": 3817, + "op": "SWAP1", + "gas": 2999443, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x3e8", + "0x84", + "0xeee" + ] + }, + { + "pc": 3818, + "op": "PUSH2", + "gas": 2999440, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x3e8", + "0xeee", + "0x84" + ] + }, + { + "pc": 3821, + "op": "JUMP", + "gas": 2999437, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x3e8", + "0xeee", + "0x84", + "0x1a37" + ] + }, + { + "pc": 6711, + "op": "JUMPDEST", + "gas": 2999429, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x3e8", + "0xeee", + "0x84" + ] + }, + { + "pc": 6712, + "op": "PUSH1", + "gas": 2999428, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x3e8", + "0xeee", + "0x84" + ] + }, + { + "pc": 6714, + "op": "PUSH1", + "gas": 2999425, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x3e8", + "0xeee", + "0x84", + "0x0" + ] + }, + { + "pc": 6716, + "op": "DUP3", + "gas": 2999422, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x3e8", + "0xeee", + "0x84", + "0x0", + "0x20" + ] + }, + { + "pc": 6717, + "op": "ADD", + "gas": 2999419, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x3e8", + "0xeee", + "0x84", + "0x0", + "0x20", + "0x84" + ] + }, + { + "pc": 6718, + "op": "SWAP1", + "gas": 2999416, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x3e8", + "0xeee", + "0x84", + "0x0", + "0xa4" + ] + }, + { + "pc": 6719, + "op": "POP", + "gas": 2999413, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x3e8", + "0xeee", + "0x84", + "0xa4", + "0x0" + ] + }, + { + "pc": 6720, + "op": "DUP2", + "gas": 2999411, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x3e8", + "0xeee", + "0x84", + "0xa4" + ] + }, + { + "pc": 6721, + "op": "DUP2", + "gas": 2999408, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x3e8", + "0xeee", + "0x84", + "0xa4", + "0x84" + ] + }, + { + "pc": 6722, + "op": "SUB", + "gas": 2999405, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x3e8", + "0xeee", + "0x84", + "0xa4", + "0x84", + "0xa4" + ] + }, + { + "pc": 6723, + "op": "PUSH1", + "gas": 2999402, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x3e8", + "0xeee", + "0x84", + "0xa4", + "0x20" + ] + }, + { + "pc": 6725, + "op": "DUP4", + "gas": 2999399, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x3e8", + "0xeee", + "0x84", + "0xa4", + "0x20", + "0x0" + ] + }, + { + "pc": 6726, + "op": "ADD", + "gas": 2999396, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x3e8", + "0xeee", + "0x84", + "0xa4", + "0x20", + "0x0", + "0x84" + ] + }, + { + "pc": 6727, + "op": "MSTORE", + "gas": 2999393, + "gasCost": 6, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x3e8", + "0xeee", + "0x84", + "0xa4", + "0x20", + "0x84" + ] + }, + { + "pc": 6728, + "op": "PUSH2", + "gas": 2999387, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x3e8", + "0xeee", + "0x84", + "0xa4" + ] + }, + { + "pc": 6731, + "op": "DUP2", + "gas": 2999384, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x3e8", + "0xeee", + "0x84", + "0xa4", + "0x1a50" + ] + }, + { + "pc": 6732, + "op": "PUSH2", + "gas": 2999381, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x3e8", + "0xeee", + "0x84", + "0xa4", + "0x1a50", + "0xa4" + ] + }, + { + "pc": 6735, + "op": "JUMP", + "gas": 2999378, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x3e8", + "0xeee", + "0x84", + "0xa4", + "0x1a50", + "0xa4", + "0x181d" + ] + }, + { + "pc": 6173, + "op": "JUMPDEST", + "gas": 2999370, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x3e8", + "0xeee", + "0x84", + "0xa4", + "0x1a50", + "0xa4" + ] + }, + { + "pc": 6174, + "op": "PUSH1", + "gas": 2999369, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x3e8", + "0xeee", + "0x84", + "0xa4", + "0x1a50", + "0xa4" + ] + }, + { + "pc": 6176, + "op": "PUSH2", + "gas": 2999366, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x3e8", + "0xeee", + "0x84", + "0xa4", + "0x1a50", + "0xa4", + "0x0" + ] + }, + { + "pc": 6179, + "op": "PUSH1", + "gas": 2999363, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x3e8", + "0xeee", + "0x84", + "0xa4", + "0x1a50", + "0xa4", + "0x0", + "0x182a" + ] + }, + { + "pc": 6181, + "op": "DUP4", + "gas": 2999360, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x3e8", + "0xeee", + "0x84", + "0xa4", + "0x1a50", + "0xa4", + "0x0", + "0x182a", + "0x23" + ] + }, + { + "pc": 6182, + "op": "PUSH2", + "gas": 2999357, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x3e8", + "0xeee", + "0x84", + "0xa4", + "0x1a50", + "0xa4", + "0x0", + "0x182a", + "0x23", + "0xa4" + ] + }, + { + "pc": 6185, + "op": "JUMP", + "gas": 2999354, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x3e8", + "0xeee", + "0x84", + "0xa4", + "0x1a50", + "0xa4", + "0x0", + "0x182a", + "0x23", + "0xa4", + "0x1bf8" + ] + }, + { + "pc": 7160, + "op": "JUMPDEST", + "gas": 2999346, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x3e8", + "0xeee", + "0x84", + "0xa4", + "0x1a50", + "0xa4", + "0x0", + "0x182a", + "0x23", + "0xa4" + ] + }, + { + "pc": 7161, + "op": "PUSH1", + "gas": 2999345, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x3e8", + "0xeee", + "0x84", + "0xa4", + "0x1a50", + "0xa4", + "0x0", + "0x182a", + "0x23", + "0xa4" + ] + }, + { + "pc": 7163, + "op": "DUP3", + "gas": 2999342, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x3e8", + "0xeee", + "0x84", + "0xa4", + "0x1a50", + "0xa4", + "0x0", + "0x182a", + "0x23", + "0xa4", + "0x0" + ] + }, + { + "pc": 7164, + "op": "DUP3", + "gas": 2999339, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x3e8", + "0xeee", + "0x84", + "0xa4", + "0x1a50", + "0xa4", + "0x0", + "0x182a", + "0x23", + "0xa4", + "0x0", + "0x23" + ] + }, + { + "pc": 7165, + "op": "MSTORE", + "gas": 2999336, + "gasCost": 6, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x3e8", + "0xeee", + "0x84", + "0xa4", + "0x1a50", + "0xa4", + "0x0", + "0x182a", + "0x23", + "0xa4", + "0x0", + "0x23", + "0xa4" + ] + }, + { + "pc": 7166, + "op": "PUSH1", + "gas": 2999330, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x3e8", + "0xeee", + "0x84", + "0xa4", + "0x1a50", + "0xa4", + "0x0", + "0x182a", + "0x23", + "0xa4", + "0x0" + ] + }, + { + "pc": 7168, + "op": "DUP3", + "gas": 2999327, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x3e8", + "0xeee", + "0x84", + "0xa4", + "0x1a50", + "0xa4", + "0x0", + "0x182a", + "0x23", + "0xa4", + "0x0", + "0x20" + ] + }, + { + "pc": 7169, + "op": "ADD", + "gas": 2999324, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x3e8", + "0xeee", + "0x84", + "0xa4", + "0x1a50", + "0xa4", + "0x0", + "0x182a", + "0x23", + "0xa4", + "0x0", + "0x20", + "0xa4" + ] + }, + { + "pc": 7170, + "op": "SWAP1", + "gas": 2999321, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x3e8", + "0xeee", + "0x84", + "0xa4", + "0x1a50", + "0xa4", + "0x0", + "0x182a", + "0x23", + "0xa4", + "0x0", + "0xc4" + ] + }, + { + "pc": 7171, + "op": "POP", + "gas": 2999318, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x3e8", + "0xeee", + "0x84", + "0xa4", + "0x1a50", + "0xa4", + "0x0", + "0x182a", + "0x23", + "0xa4", + "0xc4", + "0x0" + ] + }, + { + "pc": 7172, + "op": "SWAP3", + "gas": 2999316, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x3e8", + "0xeee", + "0x84", + "0xa4", + "0x1a50", + "0xa4", + "0x0", + "0x182a", + "0x23", + "0xa4", + "0xc4" + ] + }, + { + "pc": 7173, + "op": "SWAP2", + "gas": 2999313, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x3e8", + "0xeee", + "0x84", + "0xa4", + "0x1a50", + "0xa4", + "0x0", + "0xc4", + "0x23", + "0xa4", + "0x182a" + ] + }, + { + "pc": 7174, + "op": "POP", + "gas": 2999310, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x3e8", + "0xeee", + "0x84", + "0xa4", + "0x1a50", + "0xa4", + "0x0", + "0xc4", + "0x182a", + "0xa4", + "0x23" + ] + }, + { + "pc": 7175, + "op": "POP", + "gas": 2999308, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x3e8", + "0xeee", + "0x84", + "0xa4", + "0x1a50", + "0xa4", + "0x0", + "0xc4", + "0x182a", + "0xa4" + ] + }, + { + "pc": 7176, + "op": "JUMP", + "gas": 2999306, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x3e8", + "0xeee", + "0x84", + "0xa4", + "0x1a50", + "0xa4", + "0x0", + "0xc4", + "0x182a" + ] + }, + { + "pc": 6186, + "op": "JUMPDEST", + "gas": 2999298, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x3e8", + "0xeee", + "0x84", + "0xa4", + "0x1a50", + "0xa4", + "0x0", + "0xc4" + ] + }, + { + "pc": 6187, + "op": "SWAP2", + "gas": 2999297, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x3e8", + "0xeee", + "0x84", + "0xa4", + "0x1a50", + "0xa4", + "0x0", + "0xc4" + ] + }, + { + "pc": 6188, + "op": "POP", + "gas": 2999294, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x3e8", + "0xeee", + "0x84", + "0xa4", + "0x1a50", + "0xc4", + "0x0", + "0xa4" + ] + }, + { + "pc": 6189, + "op": "PUSH2", + "gas": 2999292, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x3e8", + "0xeee", + "0x84", + "0xa4", + "0x1a50", + "0xc4", + "0x0" + ] + }, + { + "pc": 6192, + "op": "DUP3", + "gas": 2999289, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x3e8", + "0xeee", + "0x84", + "0xa4", + "0x1a50", + "0xc4", + "0x0", + "0x1835" + ] + }, + { + "pc": 6193, + "op": "PUSH2", + "gas": 2999286, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x3e8", + "0xeee", + "0x84", + "0xa4", + "0x1a50", + "0xc4", + "0x0", + "0x1835", + "0xc4" + ] + }, + { + "pc": 6196, + "op": "JUMP", + "gas": 2999283, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x3e8", + "0xeee", + "0x84", + "0xa4", + "0x1a50", + "0xc4", + "0x0", + "0x1835", + "0xc4", + "0x1df2" + ] + }, + { + "pc": 7666, + "op": "JUMPDEST", + "gas": 2999275, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x3e8", + "0xeee", + "0x84", + "0xa4", + "0x1a50", + "0xc4", + "0x0", + "0x1835", + "0xc4" + ] + }, + { + "pc": 7667, + "op": "PUSH32", + "gas": 2999274, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x3e8", + "0xeee", + "0x84", + "0xa4", + "0x1a50", + "0xc4", + "0x0", + "0x1835", + "0xc4" + ] + }, + { + "pc": 7700, + "op": "PUSH1", + "gas": 2999271, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x3e8", + "0xeee", + "0x84", + "0xa4", + "0x1a50", + "0xc4", + "0x0", + "0x1835", + "0xc4", + "0x45524332303a207472616e7366657220746f20746865207a65726f2061646472" + ] + }, + { + "pc": 7702, + "op": "DUP3", + "gas": 2999268, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x3e8", + "0xeee", + "0x84", + "0xa4", + "0x1a50", + "0xc4", + "0x0", + "0x1835", + "0xc4", + "0x45524332303a207472616e7366657220746f20746865207a65726f2061646472", + "0x0" + ] + }, + { + "pc": 7703, + "op": "ADD", + "gas": 2999265, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x3e8", + "0xeee", + "0x84", + "0xa4", + "0x1a50", + "0xc4", + "0x0", + "0x1835", + "0xc4", + "0x45524332303a207472616e7366657220746f20746865207a65726f2061646472", + "0x0", + "0xc4" + ] + }, + { + "pc": 7704, + "op": "MSTORE", + "gas": 2999262, + "gasCost": 6, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x3e8", + "0xeee", + "0x84", + "0xa4", + "0x1a50", + "0xc4", + "0x0", + "0x1835", + "0xc4", + "0x45524332303a207472616e7366657220746f20746865207a65726f2061646472", + "0xc4" + ] + }, + { + "pc": 7705, + "op": "PUSH32", + "gas": 2999256, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x3e8", + "0xeee", + "0x84", + "0xa4", + "0x1a50", + "0xc4", + "0x0", + "0x1835", + "0xc4" + ] + }, + { + "pc": 7738, + "op": "PUSH1", + "gas": 2999253, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x3e8", + "0xeee", + "0x84", + "0xa4", + "0x1a50", + "0xc4", + "0x0", + "0x1835", + "0xc4", + "0x6573730000000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 7740, + "op": "DUP3", + "gas": 2999250, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x3e8", + "0xeee", + "0x84", + "0xa4", + "0x1a50", + "0xc4", + "0x0", + "0x1835", + "0xc4", + "0x6573730000000000000000000000000000000000000000000000000000000000", + "0x20" + ] + }, + { + "pc": 7741, + "op": "ADD", + "gas": 2999247, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x3e8", + "0xeee", + "0x84", + "0xa4", + "0x1a50", + "0xc4", + "0x0", + "0x1835", + "0xc4", + "0x6573730000000000000000000000000000000000000000000000000000000000", + "0x20", + "0xc4" + ] + }, + { + "pc": 7742, + "op": "MSTORE", + "gas": 2999244, + "gasCost": 6, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x3e8", + "0xeee", + "0x84", + "0xa4", + "0x1a50", + "0xc4", + "0x0", + "0x1835", + "0xc4", + "0x6573730000000000000000000000000000000000000000000000000000000000", + "0xe4" + ] + }, + { + "pc": 7743, + "op": "POP", + "gas": 2999238, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x3e8", + "0xeee", + "0x84", + "0xa4", + "0x1a50", + "0xc4", + "0x0", + "0x1835", + "0xc4" + ] + }, + { + "pc": 7744, + "op": "JUMP", + "gas": 2999236, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x3e8", + "0xeee", + "0x84", + "0xa4", + "0x1a50", + "0xc4", + "0x0", + "0x1835" + ] + }, + { + "pc": 6197, + "op": "JUMPDEST", + "gas": 2999228, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x3e8", + "0xeee", + "0x84", + "0xa4", + "0x1a50", + "0xc4", + "0x0" + ] + }, + { + "pc": 6198, + "op": "PUSH1", + "gas": 2999227, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x3e8", + "0xeee", + "0x84", + "0xa4", + "0x1a50", + "0xc4", + "0x0" + ] + }, + { + "pc": 6200, + "op": "DUP3", + "gas": 2999224, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x3e8", + "0xeee", + "0x84", + "0xa4", + "0x1a50", + "0xc4", + "0x0", + "0x40" + ] + }, + { + "pc": 6201, + "op": "ADD", + "gas": 2999221, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x3e8", + "0xeee", + "0x84", + "0xa4", + "0x1a50", + "0xc4", + "0x0", + "0x40", + "0xc4" + ] + }, + { + "pc": 6202, + "op": "SWAP1", + "gas": 2999218, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x3e8", + "0xeee", + "0x84", + "0xa4", + "0x1a50", + "0xc4", + "0x0", + "0x104" + ] + }, + { + "pc": 6203, + "op": "POP", + "gas": 2999215, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x3e8", + "0xeee", + "0x84", + "0xa4", + "0x1a50", + "0xc4", + "0x104", + "0x0" + ] + }, + { + "pc": 6204, + "op": "SWAP2", + "gas": 2999213, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x3e8", + "0xeee", + "0x84", + "0xa4", + "0x1a50", + "0xc4", + "0x104" + ] + }, + { + "pc": 6205, + "op": "SWAP1", + "gas": 2999210, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x3e8", + "0xeee", + "0x84", + "0xa4", + "0x104", + "0xc4", + "0x1a50" + ] + }, + { + "pc": 6206, + "op": "POP", + "gas": 2999207, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x3e8", + "0xeee", + "0x84", + "0xa4", + "0x104", + "0x1a50", + "0xc4" + ] + }, + { + "pc": 6207, + "op": "JUMP", + "gas": 2999205, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x3e8", + "0xeee", + "0x84", + "0xa4", + "0x104", + "0x1a50" + ] + }, + { + "pc": 6736, + "op": "JUMPDEST", + "gas": 2999197, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x3e8", + "0xeee", + "0x84", + "0xa4", + "0x104" + ] + }, + { + "pc": 6737, + "op": "SWAP1", + "gas": 2999196, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x3e8", + "0xeee", + "0x84", + "0xa4", + "0x104" + ] + }, + { + "pc": 6738, + "op": "POP", + "gas": 2999193, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x3e8", + "0xeee", + "0x84", + "0x104", + "0xa4" + ] + }, + { + "pc": 6739, + "op": "SWAP2", + "gas": 2999191, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x3e8", + "0xeee", + "0x84", + "0x104" + ] + }, + { + "pc": 6740, + "op": "SWAP1", + "gas": 2999188, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x3e8", + "0x104", + "0x84", + "0xeee" + ] + }, + { + "pc": 6741, + "op": "POP", + "gas": 2999185, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x3e8", + "0x104", + "0xeee", + "0x84" + ] + }, + { + "pc": 6742, + "op": "JUMP", + "gas": 2999183, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x3e8", + "0x104", + "0xeee" + ] + }, + { + "pc": 3822, + "op": "JUMPDEST", + "gas": 2999175, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x3e8", + "0x104" + ] + }, + { + "pc": 3823, + "op": "PUSH1", + "gas": 2999174, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x3e8", + "0x104" + ] + }, + { + "pc": 3825, + "op": "MLOAD", + "gas": 2999171, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x3e8", + "0x104", + "0x40" + ] + }, + { + "pc": 3826, + "op": "DUP1", + "gas": 2999168, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x3e8", + "0x104", + "0x80" + ] + }, + { + "pc": 3827, + "op": "SWAP2", + "gas": 2999165, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x3e8", + "0x104", + "0x80", + "0x80" + ] + }, + { + "pc": 3828, + "op": "SUB", + "gas": 2999162, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x3e8", + "0x80", + "0x80", + "0x104" + ] + }, + { + "pc": 3829, + "op": "SWAP1", + "gas": 2999159, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x3e8", + "0x80", + "0x84" + ] + }, + { + "pc": 3830, + "op": "REVERT", + "gas": 2999156, + "gasCost": 0, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x0", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0", + "0x3e8", + "0x84", + "0x80" + ] + } + ] + }, + { + "gas": 54848, + "failed": false, + "returnValue": "0000000000000000000000000000000000000000000000000000000000000001", + "from": { + "address": "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "nonce": 77, + "balance": "0x56bc75e2d630ffffffffffffffffffffffffffffffffffff4b256a52e60828", + "codeHash": "0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470" + }, + "to": { + "address": "0x34041eff1f32989bdaa95875e0f41afd6294dcd4", + "nonce": 1, + "balance": "0x0", + "codeHash": "0x9b5ea0519f6e20c36338989b6accc7cf3384eac2f0a083e82730bca177544409" + }, + "accountAfter": [ + { + "address": "0x34041eff1f32989bdaa95875e0f41afd6294dcd4", + "nonce": 1, + "balance": "0x0", + "codeHash": "0x9b5ea0519f6e20c36338989b6accc7cf3384eac2f0a083e82730bca177544409" + }, + { + "address": "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "nonce": 78, + "balance": "0x56bc75e2d630ffffffffffffffffffffffffffffffffffff4b255c813f18e8", + "codeHash": "0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470" + } + ], + "codeHash": "0x9b5ea0519f6e20c36338989b6accc7cf3384eac2f0a083e82730bca177544409", + "byteCode": "0x608060405234801561001057600080fd5b506004361061010b5760003560e01c80635c975abb116100a257806395d89b411161007157806395d89b41146102945780639dc29fac146102b2578063a457c2d7146102ce578063a9059cbb146102fe578063dd62ed3e1461032e5761010b565b80635c975abb1461022057806370a082311461023e5780638456cb591461026e5780638e50817a146102785761010b565b8063313ce567116100de578063313ce567146101ac57806339509351146101ca5780633f4ba83a146101fa57806340c10f19146102045761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015e57806323b872dd1461017c575b600080fd5b61011861035e565b6040516101259190611a15565b60405180910390f35b6101486004803603810190610143919061178a565b6103f0565b60405161015591906119fa565b60405180910390f35b61016661040e565b6040516101739190611bb7565b60405180910390f35b6101966004803603810190610191919061173b565b610418565b6040516101a391906119fa565b60405180910390f35b6101b46104f1565b6040516101c19190611bd2565b60405180910390f35b6101e460048036038101906101df919061178a565b610508565b6040516101f191906119fa565b60405180910390f35b6102026105bb565b005b61021e6004803603810190610219919061178a565b610655565b005b610228610743565b60405161023591906119fa565b60405180910390f35b610258600480360381019061025391906116d6565b61075a565b6040516102659190611bb7565b60405180910390f35b6102766107a2565b005b610292600480360381019061028d91906116ff565b61083c565b005b61029c610952565b6040516102a99190611a15565b60405180910390f35b6102cc60048036038101906102c7919061178a565b6109e4565b005b6102e860048036038101906102e3919061178a565b610ad2565b6040516102f591906119fa565b60405180910390f35b6103186004803603810190610313919061178a565b610b9f565b60405161032591906119fa565b60405180910390f35b610348600480360381019061034391906116ff565b610bbd565b6040516103559190611bb7565b60405180910390f35b60606003805461036d90611d51565b80601f016020809104026020016040519081016040528092919081815260200182805461039990611d51565b80156103e65780601f106103bb576101008083540402835291602001916103e6565b820191906000526020600020905b8154815290600101906020018083116103c957829003601f168201915b5050505050905090565b60006104046103fd610c44565b8484610c4c565b6001905092915050565b6000600254905090565b6000610425848484610e17565b6104e684610431610c44565b6104e18560405180606001604052806028815260200161213960289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610497610c44565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110ac9092919063ffffffff16565b610c4c565b600190509392505050565b6000600560009054906101000a900460ff16905090565b60006105b1610515610c44565b846105ac8560016000610526610c44565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461111090919063ffffffff16565b610c4c565b6001905092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461064b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161064290611ab7565b60405180910390fd5b61065361116e565b565b600560019054906101000a900460ff16156106a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161069c90611ad7565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610735576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161072c90611ab7565b60405180910390fd5b61073f8282611218565b5050565b6000600560019054906101000a900460ff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610832576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082990611ab7565b60405180910390fd5b61083a6113ac565b565b600560029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146108cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c390611b37565b60405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b60606004805461096190611d51565b80601f016020809104026020016040519081016040528092919081815260200182805461098d90611d51565b80156109da5780601f106109af576101008083540402835291602001916109da565b820191906000526020600020905b8154815290600101906020018083116109bd57829003601f168201915b5050505050905090565b600560019054906101000a900460ff1615610a34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2b90611ad7565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610ac4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abb90611ab7565b60405180910390fd5b610ace8282611457565b5050565b6000610b95610adf610c44565b84610b90856040518060600160405280602581526020016121616025913960016000610b09610c44565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110ac9092919063ffffffff16565b610c4c565b6001905092915050565b6000610bb3610bac610c44565b8484610e17565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb390611b57565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2390611a77565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e0a9190611bb7565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7e90611b17565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ef7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eee90611a37565b60405180910390fd5b610f02838383611605565b610f6d81604051806060016040528060268152602001612113602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110ac9092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611000816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461111090919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161109f9190611bb7565b60405180910390a3505050565b60008383111582906110f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110eb9190611a15565b60405180910390fd5b50600083856111039190611c5f565b9050809150509392505050565b600080828461111f9190611c09565b905083811015611164576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115b90611a97565b60405180910390fd5b8091505092915050565b600560019054906101000a900460ff166111bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b490611a57565b60405180910390fd5b6000600560016101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611201610c44565b60405161120e91906119df565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611288576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127f90611b77565b60405180910390fd5b61129460008383611605565b6112a98160025461111090919063ffffffff16565b600281905550611300816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461111090919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516113a09190611bb7565b60405180910390a35050565b600560019054906101000a900460ff16156113fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f390611ad7565b60405180910390fd5b6001600560016101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611440610c44565b60405161144d91906119df565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114be90611af7565b60405180910390fd5b6114d382600083611605565b61153e816040518060600160405280602281526020016120f1602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110ac9092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506115958160025461165d90919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516115f99190611bb7565b60405180910390a35050565b6116108383836116a7565b611618610743565b15611658576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164f90611b97565b60405180910390fd5b505050565b600061169f83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506110ac565b905092915050565b505050565b6000813590506116bb816120c2565b92915050565b6000813590506116d0816120d9565b92915050565b6000602082840312156116e857600080fd5b60006116f6848285016116ac565b91505092915050565b6000806040838503121561171257600080fd5b6000611720858286016116ac565b9250506020611731858286016116ac565b9150509250929050565b60008060006060848603121561175057600080fd5b600061175e868287016116ac565b935050602061176f868287016116ac565b9250506040611780868287016116c1565b9150509250925092565b6000806040838503121561179d57600080fd5b60006117ab858286016116ac565b92505060206117bc858286016116c1565b9150509250929050565b6117cf81611ce8565b82525050565b6117de81611ca5565b82525050565b60006117ef82611bed565b6117f98185611bf8565b9350611809818560208601611d1e565b61181281611de1565b840191505092915050565b600061182a602383611bf8565b915061183582611df2565b604082019050919050565b600061184d601483611bf8565b915061185882611e41565b602082019050919050565b6000611870602283611bf8565b915061187b82611e6a565b604082019050919050565b6000611893601b83611bf8565b915061189e82611eb9565b602082019050919050565b60006118b6600b83611bf8565b91506118c182611ee2565b602082019050919050565b60006118d9601083611bf8565b91506118e482611f0b565b602082019050919050565b60006118fc602183611bf8565b915061190782611f34565b604082019050919050565b600061191f602583611bf8565b915061192a82611f83565b604082019050919050565b6000611942600c83611bf8565b915061194d82611fd2565b602082019050919050565b6000611965602483611bf8565b915061197082611ffb565b604082019050919050565b6000611988601f83611bf8565b91506119938261204a565b602082019050919050565b60006119ab602a83611bf8565b91506119b682612073565b604082019050919050565b6119ca81611cd1565b82525050565b6119d981611cdb565b82525050565b60006020820190506119f460008301846117c6565b92915050565b6000602082019050611a0f60008301846117d5565b92915050565b60006020820190508181036000830152611a2f81846117e4565b905092915050565b60006020820190508181036000830152611a508161181d565b9050919050565b60006020820190508181036000830152611a7081611840565b9050919050565b60006020820190508181036000830152611a9081611863565b9050919050565b60006020820190508181036000830152611ab081611886565b9050919050565b60006020820190508181036000830152611ad0816118a9565b9050919050565b60006020820190508181036000830152611af0816118cc565b9050919050565b60006020820190508181036000830152611b10816118ef565b9050919050565b60006020820190508181036000830152611b3081611912565b9050919050565b60006020820190508181036000830152611b5081611935565b9050919050565b60006020820190508181036000830152611b7081611958565b9050919050565b60006020820190508181036000830152611b908161197b565b9050919050565b60006020820190508181036000830152611bb08161199e565b9050919050565b6000602082019050611bcc60008301846119c1565b92915050565b6000602082019050611be760008301846119d0565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611c1482611cd1565b9150611c1f83611cd1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611c5457611c53611d83565b5b828201905092915050565b6000611c6a82611cd1565b9150611c7583611cd1565b925082821015611c8857611c87611d83565b5b828203905092915050565b6000611c9e82611cb1565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b6000611cf382611cfa565b9050919050565b6000611d0582611d0c565b9050919050565b6000611d1782611cb1565b9050919050565b60005b83811015611d3c578082015181840152602081019050611d21565b83811115611d4b576000848401525b50505050565b60006002820490506001821680611d6957607f821691505b60208210811415611d7d57611d7c611db2565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b7f6e6f7420616c6c6f776564000000000000000000000000000000000000000000600082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f6f6e6c7920466163746f72790000000000000000000000000000000000000000600082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b7f45524332305061757361626c653a20746f6b656e207472616e7366657220776860008201527f696c652070617573656400000000000000000000000000000000000000000000602082015250565b6120cb81611c93565b81146120d657600080fd5b50565b6120e281611cd1565b81146120ed57600080fd5b5056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122050720249c11bf2bf6da8b1770af05168068be0eee81154cac03b74b0ab3b6a3f64736f6c63430008040033", + "structLogs": [ + { + "pc": 0, + "op": "PUSH1", + "gas": 3000364, + "gasCost": 3, + "depth": 1 + }, + { + "pc": 2, + "op": "PUSH1", + "gas": 3000361, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80" + ] + }, + { + "pc": 4, + "op": "MSTORE", + "gas": 3000358, + "gasCost": 12, + "depth": 1, + "stack": [ + "0x80", + "0x40" + ] + }, + { + "pc": 5, + "op": "CALLVALUE", + "gas": 3000346, + "gasCost": 2, + "depth": 1 + }, + { + "pc": 6, + "op": "DUP1", + "gas": 3000344, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 7, + "op": "ISZERO", + "gas": 3000341, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0", + "0x0" + ] + }, + { + "pc": 8, + "op": "PUSH2", + "gas": 3000338, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0", + "0x1" + ] + }, + { + "pc": 11, + "op": "JUMPI", + "gas": 3000335, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x0", + "0x1", + "0x10" + ] + }, + { + "pc": 16, + "op": "JUMPDEST", + "gas": 3000325, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 17, + "op": "POP", + "gas": 3000324, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 18, + "op": "PUSH1", + "gas": 3000322, + "gasCost": 3, + "depth": 1 + }, + { + "pc": 20, + "op": "CALLDATASIZE", + "gas": 3000319, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x4" + ] + }, + { + "pc": 21, + "op": "LT", + "gas": 3000317, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4", + "0x44" + ] + }, + { + "pc": 22, + "op": "PUSH2", + "gas": 3000314, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 25, + "op": "JUMPI", + "gas": 3000311, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x0", + "0x10b" + ] + }, + { + "pc": 26, + "op": "PUSH1", + "gas": 3000301, + "gasCost": 3, + "depth": 1 + }, + { + "pc": 28, + "op": "CALLDATALOAD", + "gas": 3000298, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 29, + "op": "PUSH1", + "gas": 3000295, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb00000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 31, + "op": "SHR", + "gas": 3000292, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb00000000000000000000000000000000000000000000000000000000", + "0xe0" + ] + }, + { + "pc": 32, + "op": "DUP1", + "gas": 3000289, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb" + ] + }, + { + "pc": 33, + "op": "PUSH4", + "gas": 3000286, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0xa9059cbb" + ] + }, + { + "pc": 38, + "op": "GT", + "gas": 3000283, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0xa9059cbb", + "0x5c975abb" + ] + }, + { + "pc": 39, + "op": "PUSH2", + "gas": 3000280, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x0" + ] + }, + { + "pc": 42, + "op": "JUMPI", + "gas": 3000277, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x0", + "0xa2" + ] + }, + { + "pc": 43, + "op": "DUP1", + "gas": 3000267, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb" + ] + }, + { + "pc": 44, + "op": "PUSH4", + "gas": 3000264, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0xa9059cbb" + ] + }, + { + "pc": 49, + "op": "GT", + "gas": 3000261, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0xa9059cbb", + "0x95d89b41" + ] + }, + { + "pc": 50, + "op": "PUSH2", + "gas": 3000258, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x0" + ] + }, + { + "pc": 53, + "op": "JUMPI", + "gas": 3000255, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x0", + "0x71" + ] + }, + { + "pc": 54, + "op": "DUP1", + "gas": 3000245, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb" + ] + }, + { + "pc": 55, + "op": "PUSH4", + "gas": 3000242, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0xa9059cbb" + ] + }, + { + "pc": 60, + "op": "EQ", + "gas": 3000239, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0xa9059cbb", + "0x95d89b41" + ] + }, + { + "pc": 61, + "op": "PUSH2", + "gas": 3000236, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x0" + ] + }, + { + "pc": 64, + "op": "JUMPI", + "gas": 3000233, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x0", + "0x294" + ] + }, + { + "pc": 65, + "op": "DUP1", + "gas": 3000223, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb" + ] + }, + { + "pc": 66, + "op": "PUSH4", + "gas": 3000220, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0xa9059cbb" + ] + }, + { + "pc": 71, + "op": "EQ", + "gas": 3000217, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0xa9059cbb", + "0x9dc29fac" + ] + }, + { + "pc": 72, + "op": "PUSH2", + "gas": 3000214, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x0" + ] + }, + { + "pc": 75, + "op": "JUMPI", + "gas": 3000211, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x0", + "0x2b2" + ] + }, + { + "pc": 76, + "op": "DUP1", + "gas": 3000201, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb" + ] + }, + { + "pc": 77, + "op": "PUSH4", + "gas": 3000198, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0xa9059cbb" + ] + }, + { + "pc": 82, + "op": "EQ", + "gas": 3000195, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0xa9059cbb", + "0xa457c2d7" + ] + }, + { + "pc": 83, + "op": "PUSH2", + "gas": 3000192, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x0" + ] + }, + { + "pc": 86, + "op": "JUMPI", + "gas": 3000189, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x0", + "0x2ce" + ] + }, + { + "pc": 87, + "op": "DUP1", + "gas": 3000179, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb" + ] + }, + { + "pc": 88, + "op": "PUSH4", + "gas": 3000176, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0xa9059cbb" + ] + }, + { + "pc": 93, + "op": "EQ", + "gas": 3000173, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0xa9059cbb", + "0xa9059cbb" + ] + }, + { + "pc": 94, + "op": "PUSH2", + "gas": 3000170, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x1" + ] + }, + { + "pc": 97, + "op": "JUMPI", + "gas": 3000167, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x1", + "0x2fe" + ] + }, + { + "pc": 766, + "op": "JUMPDEST", + "gas": 3000157, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb" + ] + }, + { + "pc": 767, + "op": "PUSH2", + "gas": 3000156, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb" + ] + }, + { + "pc": 770, + "op": "PUSH1", + "gas": 3000153, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318" + ] + }, + { + "pc": 772, + "op": "DUP1", + "gas": 3000150, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4" + ] + }, + { + "pc": 773, + "op": "CALLDATASIZE", + "gas": 3000147, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x4" + ] + }, + { + "pc": 774, + "op": "SUB", + "gas": 3000145, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x4", + "0x44" + ] + }, + { + "pc": 775, + "op": "DUP2", + "gas": 3000142, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x40" + ] + }, + { + "pc": 776, + "op": "ADD", + "gas": 3000139, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x40", + "0x4" + ] + }, + { + "pc": 777, + "op": "SWAP1", + "gas": 3000136, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x44" + ] + }, + { + "pc": 778, + "op": "PUSH2", + "gas": 3000133, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x44", + "0x4" + ] + }, + { + "pc": 781, + "op": "SWAP2", + "gas": 3000130, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x44", + "0x4", + "0x313" + ] + }, + { + "pc": 782, + "op": "SWAP1", + "gas": 3000127, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x4", + "0x44" + ] + }, + { + "pc": 783, + "op": "PUSH2", + "gas": 3000124, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4" + ] + }, + { + "pc": 786, + "op": "JUMP", + "gas": 3000121, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x178a" + ] + }, + { + "pc": 6026, + "op": "JUMPDEST", + "gas": 3000113, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4" + ] + }, + { + "pc": 6027, + "op": "PUSH1", + "gas": 3000112, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4" + ] + }, + { + "pc": 6029, + "op": "DUP1", + "gas": 3000109, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0" + ] + }, + { + "pc": 6030, + "op": "PUSH1", + "gas": 3000106, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0" + ] + }, + { + "pc": 6032, + "op": "DUP4", + "gas": 3000103, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x40" + ] + }, + { + "pc": 6033, + "op": "DUP6", + "gas": 3000100, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x40", + "0x4" + ] + }, + { + "pc": 6034, + "op": "SUB", + "gas": 3000097, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x40", + "0x4", + "0x44" + ] + }, + { + "pc": 6035, + "op": "SLT", + "gas": 3000094, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x40", + "0x40" + ] + }, + { + "pc": 6036, + "op": "ISZERO", + "gas": 3000091, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 6037, + "op": "PUSH2", + "gas": 3000088, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x1" + ] + }, + { + "pc": 6040, + "op": "JUMPI", + "gas": 3000085, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x1", + "0x179d" + ] + }, + { + "pc": 6045, + "op": "JUMPDEST", + "gas": 3000075, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0" + ] + }, + { + "pc": 6046, + "op": "PUSH1", + "gas": 3000074, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0" + ] + }, + { + "pc": 6048, + "op": "PUSH2", + "gas": 3000071, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 6051, + "op": "DUP6", + "gas": 3000068, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab" + ] + }, + { + "pc": 6052, + "op": "DUP3", + "gas": 3000065, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44" + ] + }, + { + "pc": 6053, + "op": "DUP7", + "gas": 3000062, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x0" + ] + }, + { + "pc": 6054, + "op": "ADD", + "gas": 3000059, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x0", + "0x4" + ] + }, + { + "pc": 6055, + "op": "PUSH2", + "gas": 3000056, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4" + ] + }, + { + "pc": 6058, + "op": "JUMP", + "gas": 3000053, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x16ac" + ] + }, + { + "pc": 5804, + "op": "JUMPDEST", + "gas": 3000045, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4" + ] + }, + { + "pc": 5805, + "op": "PUSH1", + "gas": 3000044, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4" + ] + }, + { + "pc": 5807, + "op": "DUP2", + "gas": 3000041, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x0" + ] + }, + { + "pc": 5808, + "op": "CALLDATALOAD", + "gas": 3000038, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x0", + "0x4" + ] + }, + { + "pc": 5809, + "op": "SWAP1", + "gas": 3000035, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x0", + "0x2" + ] + }, + { + "pc": 5810, + "op": "POP", + "gas": 3000032, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x2", + "0x0" + ] + }, + { + "pc": 5811, + "op": "PUSH2", + "gas": 3000030, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x2" + ] + }, + { + "pc": 5814, + "op": "DUP2", + "gas": 3000027, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x2", + "0x16bb" + ] + }, + { + "pc": 5815, + "op": "PUSH2", + "gas": 3000024, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x2", + "0x16bb", + "0x2" + ] + }, + { + "pc": 5818, + "op": "JUMP", + "gas": 3000021, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x2", + "0x16bb", + "0x2", + "0x20c2" + ] + }, + { + "pc": 8386, + "op": "JUMPDEST", + "gas": 3000013, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x2", + "0x16bb", + "0x2" + ] + }, + { + "pc": 8387, + "op": "PUSH2", + "gas": 3000012, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x2", + "0x16bb", + "0x2" + ] + }, + { + "pc": 8390, + "op": "DUP2", + "gas": 3000009, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x2", + "0x16bb", + "0x2", + "0x20cb" + ] + }, + { + "pc": 8391, + "op": "PUSH2", + "gas": 3000006, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x2", + "0x16bb", + "0x2", + "0x20cb", + "0x2" + ] + }, + { + "pc": 8394, + "op": "JUMP", + "gas": 3000003, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x2", + "0x16bb", + "0x2", + "0x20cb", + "0x2", + "0x1c93" + ] + }, + { + "pc": 7315, + "op": "JUMPDEST", + "gas": 2999995, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x2", + "0x16bb", + "0x2", + "0x20cb", + "0x2" + ] + }, + { + "pc": 7316, + "op": "PUSH1", + "gas": 2999994, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x2", + "0x16bb", + "0x2", + "0x20cb", + "0x2" + ] + }, + { + "pc": 7318, + "op": "PUSH2", + "gas": 2999991, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x2", + "0x16bb", + "0x2", + "0x20cb", + "0x2", + "0x0" + ] + }, + { + "pc": 7321, + "op": "DUP3", + "gas": 2999988, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x2", + "0x16bb", + "0x2", + "0x20cb", + "0x2", + "0x0", + "0x1c9e" + ] + }, + { + "pc": 7322, + "op": "PUSH2", + "gas": 2999985, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x2", + "0x16bb", + "0x2", + "0x20cb", + "0x2", + "0x0", + "0x1c9e", + "0x2" + ] + }, + { + "pc": 7325, + "op": "JUMP", + "gas": 2999982, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x2", + "0x16bb", + "0x2", + "0x20cb", + "0x2", + "0x0", + "0x1c9e", + "0x2", + "0x1cb1" + ] + }, + { + "pc": 7345, + "op": "JUMPDEST", + "gas": 2999974, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x2", + "0x16bb", + "0x2", + "0x20cb", + "0x2", + "0x0", + "0x1c9e", + "0x2" + ] + }, + { + "pc": 7346, + "op": "PUSH1", + "gas": 2999973, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x2", + "0x16bb", + "0x2", + "0x20cb", + "0x2", + "0x0", + "0x1c9e", + "0x2" + ] + }, + { + "pc": 7348, + "op": "PUSH20", + "gas": 2999970, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x2", + "0x16bb", + "0x2", + "0x20cb", + "0x2", + "0x0", + "0x1c9e", + "0x2", + "0x0" + ] + }, + { + "pc": 7369, + "op": "DUP3", + "gas": 2999967, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x2", + "0x16bb", + "0x2", + "0x20cb", + "0x2", + "0x0", + "0x1c9e", + "0x2", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 7370, + "op": "AND", + "gas": 2999964, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x2", + "0x16bb", + "0x2", + "0x20cb", + "0x2", + "0x0", + "0x1c9e", + "0x2", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x2" + ] + }, + { + "pc": 7371, + "op": "SWAP1", + "gas": 2999961, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x2", + "0x16bb", + "0x2", + "0x20cb", + "0x2", + "0x0", + "0x1c9e", + "0x2", + "0x0", + "0x2" + ] + }, + { + "pc": 7372, + "op": "POP", + "gas": 2999958, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x2", + "0x16bb", + "0x2", + "0x20cb", + "0x2", + "0x0", + "0x1c9e", + "0x2", + "0x2", + "0x0" + ] + }, + { + "pc": 7373, + "op": "SWAP2", + "gas": 2999956, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x2", + "0x16bb", + "0x2", + "0x20cb", + "0x2", + "0x0", + "0x1c9e", + "0x2", + "0x2" + ] + }, + { + "pc": 7374, + "op": "SWAP1", + "gas": 2999953, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x2", + "0x16bb", + "0x2", + "0x20cb", + "0x2", + "0x0", + "0x2", + "0x2", + "0x1c9e" + ] + }, + { + "pc": 7375, + "op": "POP", + "gas": 2999950, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x2", + "0x16bb", + "0x2", + "0x20cb", + "0x2", + "0x0", + "0x2", + "0x1c9e", + "0x2" + ] + }, + { + "pc": 7376, + "op": "JUMP", + "gas": 2999948, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x2", + "0x16bb", + "0x2", + "0x20cb", + "0x2", + "0x0", + "0x2", + "0x1c9e" + ] + }, + { + "pc": 7326, + "op": "JUMPDEST", + "gas": 2999940, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x2", + "0x16bb", + "0x2", + "0x20cb", + "0x2", + "0x0", + "0x2" + ] + }, + { + "pc": 7327, + "op": "SWAP1", + "gas": 2999939, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x2", + "0x16bb", + "0x2", + "0x20cb", + "0x2", + "0x0", + "0x2" + ] + }, + { + "pc": 7328, + "op": "POP", + "gas": 2999936, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x2", + "0x16bb", + "0x2", + "0x20cb", + "0x2", + "0x2", + "0x0" + ] + }, + { + "pc": 7329, + "op": "SWAP2", + "gas": 2999934, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x2", + "0x16bb", + "0x2", + "0x20cb", + "0x2", + "0x2" + ] + }, + { + "pc": 7330, + "op": "SWAP1", + "gas": 2999931, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x2", + "0x16bb", + "0x2", + "0x2", + "0x2", + "0x20cb" + ] + }, + { + "pc": 7331, + "op": "POP", + "gas": 2999928, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x2", + "0x16bb", + "0x2", + "0x2", + "0x20cb", + "0x2" + ] + }, + { + "pc": 7332, + "op": "JUMP", + "gas": 2999926, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x2", + "0x16bb", + "0x2", + "0x2", + "0x20cb" + ] + }, + { + "pc": 8395, + "op": "JUMPDEST", + "gas": 2999918, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x2", + "0x16bb", + "0x2", + "0x2" + ] + }, + { + "pc": 8396, + "op": "DUP2", + "gas": 2999917, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x2", + "0x16bb", + "0x2", + "0x2" + ] + }, + { + "pc": 8397, + "op": "EQ", + "gas": 2999914, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x2", + "0x16bb", + "0x2", + "0x2", + "0x2" + ] + }, + { + "pc": 8398, + "op": "PUSH2", + "gas": 2999911, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x2", + "0x16bb", + "0x2", + "0x1" + ] + }, + { + "pc": 8401, + "op": "JUMPI", + "gas": 2999908, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x2", + "0x16bb", + "0x2", + "0x1", + "0x20d6" + ] + }, + { + "pc": 8406, + "op": "JUMPDEST", + "gas": 2999898, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x2", + "0x16bb", + "0x2" + ] + }, + { + "pc": 8407, + "op": "POP", + "gas": 2999897, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x2", + "0x16bb", + "0x2" + ] + }, + { + "pc": 8408, + "op": "JUMP", + "gas": 2999895, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x2", + "0x16bb" + ] + }, + { + "pc": 5819, + "op": "JUMPDEST", + "gas": 2999887, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x2" + ] + }, + { + "pc": 5820, + "op": "SWAP3", + "gas": 2999886, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x2" + ] + }, + { + "pc": 5821, + "op": "SWAP2", + "gas": 2999883, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x2", + "0x44", + "0x4", + "0x17ab" + ] + }, + { + "pc": 5822, + "op": "POP", + "gas": 2999880, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x2", + "0x17ab", + "0x4", + "0x44" + ] + }, + { + "pc": 5823, + "op": "POP", + "gas": 2999878, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x2", + "0x17ab", + "0x4" + ] + }, + { + "pc": 5824, + "op": "JUMP", + "gas": 2999876, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x2", + "0x17ab" + ] + }, + { + "pc": 6059, + "op": "JUMPDEST", + "gas": 2999868, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x2" + ] + }, + { + "pc": 6060, + "op": "SWAP3", + "gas": 2999867, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x2" + ] + }, + { + "pc": 6061, + "op": "POP", + "gas": 2999864, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x2", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 6062, + "op": "POP", + "gas": 2999862, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x2", + "0x0", + "0x0" + ] + }, + { + "pc": 6063, + "op": "PUSH1", + "gas": 2999860, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x2", + "0x0" + ] + }, + { + "pc": 6065, + "op": "PUSH2", + "gas": 2999857, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x2", + "0x0", + "0x20" + ] + }, + { + "pc": 6068, + "op": "DUP6", + "gas": 2999854, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x2", + "0x0", + "0x20", + "0x17bc" + ] + }, + { + "pc": 6069, + "op": "DUP3", + "gas": 2999851, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x2", + "0x0", + "0x20", + "0x17bc", + "0x44" + ] + }, + { + "pc": 6070, + "op": "DUP7", + "gas": 2999848, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x2", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x20" + ] + }, + { + "pc": 6071, + "op": "ADD", + "gas": 2999845, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x2", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x20", + "0x4" + ] + }, + { + "pc": 6072, + "op": "PUSH2", + "gas": 2999842, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x2", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24" + ] + }, + { + "pc": 6075, + "op": "JUMP", + "gas": 2999839, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x2", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x16c1" + ] + }, + { + "pc": 5825, + "op": "JUMPDEST", + "gas": 2999831, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x2", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24" + ] + }, + { + "pc": 5826, + "op": "PUSH1", + "gas": 2999830, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x2", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24" + ] + }, + { + "pc": 5828, + "op": "DUP2", + "gas": 2999827, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x2", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x0" + ] + }, + { + "pc": 5829, + "op": "CALLDATALOAD", + "gas": 2999824, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x2", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x0", + "0x24" + ] + }, + { + "pc": 5830, + "op": "SWAP1", + "gas": 2999821, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x2", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x0", + "0x3e8" + ] + }, + { + "pc": 5831, + "op": "POP", + "gas": 2999818, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x2", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8", + "0x0" + ] + }, + { + "pc": 5832, + "op": "PUSH2", + "gas": 2999816, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x2", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8" + ] + }, + { + "pc": 5835, + "op": "DUP2", + "gas": 2999813, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x2", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8", + "0x16d0" + ] + }, + { + "pc": 5836, + "op": "PUSH2", + "gas": 2999810, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x2", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8", + "0x16d0", + "0x3e8" + ] + }, + { + "pc": 5839, + "op": "JUMP", + "gas": 2999807, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x2", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8", + "0x16d0", + "0x3e8", + "0x20d9" + ] + }, + { + "pc": 8409, + "op": "JUMPDEST", + "gas": 2999799, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x2", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8", + "0x16d0", + "0x3e8" + ] + }, + { + "pc": 8410, + "op": "PUSH2", + "gas": 2999798, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x2", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8", + "0x16d0", + "0x3e8" + ] + }, + { + "pc": 8413, + "op": "DUP2", + "gas": 2999795, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x2", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8", + "0x16d0", + "0x3e8", + "0x20e2" + ] + }, + { + "pc": 8414, + "op": "PUSH2", + "gas": 2999792, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x2", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8", + "0x16d0", + "0x3e8", + "0x20e2", + "0x3e8" + ] + }, + { + "pc": 8417, + "op": "JUMP", + "gas": 2999789, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x2", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8", + "0x16d0", + "0x3e8", + "0x20e2", + "0x3e8", + "0x1cd1" + ] + }, + { + "pc": 7377, + "op": "JUMPDEST", + "gas": 2999781, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x2", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8", + "0x16d0", + "0x3e8", + "0x20e2", + "0x3e8" + ] + }, + { + "pc": 7378, + "op": "PUSH1", + "gas": 2999780, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x2", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8", + "0x16d0", + "0x3e8", + "0x20e2", + "0x3e8" + ] + }, + { + "pc": 7380, + "op": "DUP2", + "gas": 2999777, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x2", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8", + "0x16d0", + "0x3e8", + "0x20e2", + "0x3e8", + "0x0" + ] + }, + { + "pc": 7381, + "op": "SWAP1", + "gas": 2999774, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x2", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8", + "0x16d0", + "0x3e8", + "0x20e2", + "0x3e8", + "0x0", + "0x3e8" + ] + }, + { + "pc": 7382, + "op": "POP", + "gas": 2999771, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x2", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8", + "0x16d0", + "0x3e8", + "0x20e2", + "0x3e8", + "0x3e8", + "0x0" + ] + }, + { + "pc": 7383, + "op": "SWAP2", + "gas": 2999769, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x2", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8", + "0x16d0", + "0x3e8", + "0x20e2", + "0x3e8", + "0x3e8" + ] + }, + { + "pc": 7384, + "op": "SWAP1", + "gas": 2999766, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x2", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8", + "0x16d0", + "0x3e8", + "0x3e8", + "0x3e8", + "0x20e2" + ] + }, + { + "pc": 7385, + "op": "POP", + "gas": 2999763, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x2", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8", + "0x16d0", + "0x3e8", + "0x3e8", + "0x20e2", + "0x3e8" + ] + }, + { + "pc": 7386, + "op": "JUMP", + "gas": 2999761, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x2", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8", + "0x16d0", + "0x3e8", + "0x3e8", + "0x20e2" + ] + }, + { + "pc": 8418, + "op": "JUMPDEST", + "gas": 2999753, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x2", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8", + "0x16d0", + "0x3e8", + "0x3e8" + ] + }, + { + "pc": 8419, + "op": "DUP2", + "gas": 2999752, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x2", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8", + "0x16d0", + "0x3e8", + "0x3e8" + ] + }, + { + "pc": 8420, + "op": "EQ", + "gas": 2999749, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x2", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8", + "0x16d0", + "0x3e8", + "0x3e8", + "0x3e8" + ] + }, + { + "pc": 8421, + "op": "PUSH2", + "gas": 2999746, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x2", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8", + "0x16d0", + "0x3e8", + "0x1" + ] + }, + { + "pc": 8424, + "op": "JUMPI", + "gas": 2999743, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x2", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8", + "0x16d0", + "0x3e8", + "0x1", + "0x20ed" + ] + }, + { + "pc": 8429, + "op": "JUMPDEST", + "gas": 2999733, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x2", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8", + "0x16d0", + "0x3e8" + ] + }, + { + "pc": 8430, + "op": "POP", + "gas": 2999732, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x2", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8", + "0x16d0", + "0x3e8" + ] + }, + { + "pc": 8431, + "op": "JUMP", + "gas": 2999730, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x2", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8", + "0x16d0" + ] + }, + { + "pc": 5840, + "op": "JUMPDEST", + "gas": 2999722, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x2", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8" + ] + }, + { + "pc": 5841, + "op": "SWAP3", + "gas": 2999721, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x2", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8" + ] + }, + { + "pc": 5842, + "op": "SWAP2", + "gas": 2999718, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x2", + "0x0", + "0x20", + "0x3e8", + "0x44", + "0x24", + "0x17bc" + ] + }, + { + "pc": 5843, + "op": "POP", + "gas": 2999715, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x2", + "0x0", + "0x20", + "0x3e8", + "0x17bc", + "0x24", + "0x44" + ] + }, + { + "pc": 5844, + "op": "POP", + "gas": 2999713, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x2", + "0x0", + "0x20", + "0x3e8", + "0x17bc", + "0x24" + ] + }, + { + "pc": 5845, + "op": "JUMP", + "gas": 2999711, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x2", + "0x0", + "0x20", + "0x3e8", + "0x17bc" + ] + }, + { + "pc": 6076, + "op": "JUMPDEST", + "gas": 2999703, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x2", + "0x0", + "0x20", + "0x3e8" + ] + }, + { + "pc": 6077, + "op": "SWAP2", + "gas": 2999702, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x2", + "0x0", + "0x20", + "0x3e8" + ] + }, + { + "pc": 6078, + "op": "POP", + "gas": 2999699, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x2", + "0x3e8", + "0x20", + "0x0" + ] + }, + { + "pc": 6079, + "op": "POP", + "gas": 2999697, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x2", + "0x3e8", + "0x20" + ] + }, + { + "pc": 6080, + "op": "SWAP3", + "gas": 2999695, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x2", + "0x3e8" + ] + }, + { + "pc": 6081, + "op": "POP", + "gas": 2999692, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x3e8", + "0x4", + "0x2", + "0x44" + ] + }, + { + "pc": 6082, + "op": "SWAP3", + "gas": 2999690, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x3e8", + "0x4", + "0x2" + ] + }, + { + "pc": 6083, + "op": "SWAP1", + "gas": 2999687, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x4", + "0x313" + ] + }, + { + "pc": 6084, + "op": "POP", + "gas": 2999684, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x313", + "0x4" + ] + }, + { + "pc": 6085, + "op": "JUMP", + "gas": 2999682, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x313" + ] + }, + { + "pc": 787, + "op": "JUMPDEST", + "gas": 2999674, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8" + ] + }, + { + "pc": 788, + "op": "PUSH2", + "gas": 2999673, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8" + ] + }, + { + "pc": 791, + "op": "JUMP", + "gas": 2999670, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0xb9f" + ] + }, + { + "pc": 2975, + "op": "JUMPDEST", + "gas": 2999662, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8" + ] + }, + { + "pc": 2976, + "op": "PUSH1", + "gas": 2999661, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8" + ] + }, + { + "pc": 2978, + "op": "PUSH2", + "gas": 2999658, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0" + ] + }, + { + "pc": 2981, + "op": "PUSH2", + "gas": 2999655, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3" + ] + }, + { + "pc": 2984, + "op": "PUSH2", + "gas": 2999652, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0xbac" + ] + }, + { + "pc": 2987, + "op": "JUMP", + "gas": 2999649, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0xbac", + "0xc44" + ] + }, + { + "pc": 3140, + "op": "JUMPDEST", + "gas": 2999641, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0xbac" + ] + }, + { + "pc": 3141, + "op": "PUSH1", + "gas": 2999640, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0xbac" + ] + }, + { + "pc": 3143, + "op": "CALLER", + "gas": 2999637, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0xbac", + "0x0" + ] + }, + { + "pc": 3144, + "op": "SWAP1", + "gas": 2999635, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0xbac", + "0x0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 3145, + "op": "POP", + "gas": 2999632, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0xbac", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0" + ] + }, + { + "pc": 3146, + "op": "SWAP1", + "gas": 2999630, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0xbac", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 3147, + "op": "JUMP", + "gas": 2999627, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xbac" + ] + }, + { + "pc": 2988, + "op": "JUMPDEST", + "gas": 2999619, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 2989, + "op": "DUP5", + "gas": 2999618, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 2990, + "op": "DUP5", + "gas": 2999615, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2" + ] + }, + { + "pc": 2991, + "op": "PUSH2", + "gas": 2999612, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8" + ] + }, + { + "pc": 2994, + "op": "JUMP", + "gas": 2999609, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xe17" + ] + }, + { + "pc": 3607, + "op": "JUMPDEST", + "gas": 2999601, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8" + ] + }, + { + "pc": 3608, + "op": "PUSH1", + "gas": 2999600, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8" + ] + }, + { + "pc": 3610, + "op": "PUSH20", + "gas": 2999597, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x0" + ] + }, + { + "pc": 3631, + "op": "AND", + "gas": 2999594, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 3632, + "op": "DUP4", + "gas": 2999591, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x0" + ] + }, + { + "pc": 3633, + "op": "PUSH20", + "gas": 2999588, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 3654, + "op": "AND", + "gas": 2999585, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 3655, + "op": "EQ", + "gas": 2999582, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 3656, + "op": "ISZERO", + "gas": 2999579, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x0" + ] + }, + { + "pc": 3657, + "op": "PUSH2", + "gas": 2999576, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1" + ] + }, + { + "pc": 3660, + "op": "JUMPI", + "gas": 2999573, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1", + "0xe87" + ] + }, + { + "pc": 3719, + "op": "JUMPDEST", + "gas": 2999563, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8" + ] + }, + { + "pc": 3720, + "op": "PUSH1", + "gas": 2999562, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8" + ] + }, + { + "pc": 3722, + "op": "PUSH20", + "gas": 2999559, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x0" + ] + }, + { + "pc": 3743, + "op": "AND", + "gas": 2999556, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 3744, + "op": "DUP3", + "gas": 2999553, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x0" + ] + }, + { + "pc": 3745, + "op": "PUSH20", + "gas": 2999550, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x0", + "0x2" + ] + }, + { + "pc": 3766, + "op": "AND", + "gas": 2999547, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x0", + "0x2", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 3767, + "op": "EQ", + "gas": 2999544, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x0", + "0x2" + ] + }, + { + "pc": 3768, + "op": "ISZERO", + "gas": 2999541, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x0" + ] + }, + { + "pc": 3769, + "op": "PUSH2", + "gas": 2999538, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1" + ] + }, + { + "pc": 3772, + "op": "JUMPI", + "gas": 2999535, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1", + "0xef7" + ] + }, + { + "pc": 3831, + "op": "JUMPDEST", + "gas": 2999525, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8" + ] + }, + { + "pc": 3832, + "op": "PUSH2", + "gas": 2999524, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8" + ] + }, + { + "pc": 3835, + "op": "DUP4", + "gas": 2999521, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf02" + ] + }, + { + "pc": 3836, + "op": "DUP4", + "gas": 2999518, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 3837, + "op": "DUP4", + "gas": 2999515, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2" + ] + }, + { + "pc": 3838, + "op": "PUSH2", + "gas": 2999512, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8" + ] + }, + { + "pc": 3841, + "op": "JUMP", + "gas": 2999509, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1605" + ] + }, + { + "pc": 5637, + "op": "JUMPDEST", + "gas": 2999501, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8" + ] + }, + { + "pc": 5638, + "op": "PUSH2", + "gas": 2999500, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8" + ] + }, + { + "pc": 5641, + "op": "DUP4", + "gas": 2999497, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1610" + ] + }, + { + "pc": 5642, + "op": "DUP4", + "gas": 2999494, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1610", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 5643, + "op": "DUP4", + "gas": 2999491, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1610", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2" + ] + }, + { + "pc": 5644, + "op": "PUSH2", + "gas": 2999488, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1610", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8" + ] + }, + { + "pc": 5647, + "op": "JUMP", + "gas": 2999485, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1610", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x16a7" + ] + }, + { + "pc": 5799, + "op": "JUMPDEST", + "gas": 2999477, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1610", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8" + ] + }, + { + "pc": 5800, + "op": "POP", + "gas": 2999476, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1610", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8" + ] + }, + { + "pc": 5801, + "op": "POP", + "gas": 2999474, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1610", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2" + ] + }, + { + "pc": 5802, + "op": "POP", + "gas": 2999472, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1610", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 5803, + "op": "JUMP", + "gas": 2999470, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1610" + ] + }, + { + "pc": 5648, + "op": "JUMPDEST", + "gas": 2999462, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8" + ] + }, + { + "pc": 5649, + "op": "PUSH2", + "gas": 2999461, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8" + ] + }, + { + "pc": 5652, + "op": "PUSH2", + "gas": 2999458, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1618" + ] + }, + { + "pc": 5655, + "op": "JUMP", + "gas": 2999455, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1618", + "0x743" + ] + }, + { + "pc": 1859, + "op": "JUMPDEST", + "gas": 2999447, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1618" + ] + }, + { + "pc": 1860, + "op": "PUSH1", + "gas": 2999446, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1618" + ] + }, + { + "pc": 1862, + "op": "PUSH1", + "gas": 2999443, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1618", + "0x0" + ] + }, + { + "pc": 1864, + "op": "PUSH1", + "gas": 2999440, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1618", + "0x0", + "0x5" + ] + }, + { + "pc": 1866, + "op": "SWAP1", + "gas": 2999437, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1618", + "0x0", + "0x5", + "0x1" + ] + }, + { + "pc": 1867, + "op": "SLOAD", + "gas": 2999434, + "gasCost": 2100, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1618", + "0x0", + "0x1", + "0x5" + ], + "storage": { + "0x0000000000000000000000000000000000000000000000000000000000000005": "0x000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd65710012" + }, + "extraData": { + "proofList": [ + { + "address": "0x34041eff1f32989bdaa95875e0f41afd6294dcd4", + "nonce": 1, + "balance": "0x0", + "codeHash": "0x9b5ea0519f6e20c36338989b6accc7cf3384eac2f0a083e82730bca177544409", + "storage": { + "key": "0x0000000000000000000000000000000000000000000000000000000000000005", + "value": "0x000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd65710012" + } + } + ] + } + }, + { + "pc": 1868, + "op": "SWAP1", + "gas": 2997334, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1618", + "0x0", + "0x1", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd65710012" + ] + }, + { + "pc": 1869, + "op": "PUSH2", + "gas": 2997331, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1618", + "0x0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd65710012", + "0x1" + ] + }, + { + "pc": 1872, + "op": "EXP", + "gas": 2997328, + "gasCost": 60, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1618", + "0x0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd65710012", + "0x1", + "0x100" + ] + }, + { + "pc": 1873, + "op": "SWAP1", + "gas": 2997268, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1618", + "0x0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd65710012", + "0x100" + ] + }, + { + "pc": 1874, + "op": "DIV", + "gas": 2997265, + "gasCost": 5, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1618", + "0x0", + "0x100", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd65710012" + ] + }, + { + "pc": 1875, + "op": "PUSH1", + "gas": 2997260, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1618", + "0x0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd657100" + ] + }, + { + "pc": 1877, + "op": "AND", + "gas": 2997257, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1618", + "0x0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd657100", + "0xff" + ] + }, + { + "pc": 1878, + "op": "SWAP1", + "gas": 2997254, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1618", + "0x0", + "0x0" + ] + }, + { + "pc": 1879, + "op": "POP", + "gas": 2997251, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1618", + "0x0", + "0x0" + ] + }, + { + "pc": 1880, + "op": "SWAP1", + "gas": 2997249, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1618", + "0x0" + ] + }, + { + "pc": 1881, + "op": "JUMP", + "gas": 2997246, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x0", + "0x1618" + ] + }, + { + "pc": 5656, + "op": "JUMPDEST", + "gas": 2997238, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x0" + ] + }, + { + "pc": 5657, + "op": "ISZERO", + "gas": 2997237, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x0" + ] + }, + { + "pc": 5658, + "op": "PUSH2", + "gas": 2997234, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1" + ] + }, + { + "pc": 5661, + "op": "JUMPI", + "gas": 2997231, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1", + "0x1658" + ] + }, + { + "pc": 5720, + "op": "JUMPDEST", + "gas": 2997221, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8" + ] + }, + { + "pc": 5721, + "op": "POP", + "gas": 2997220, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8" + ] + }, + { + "pc": 5722, + "op": "POP", + "gas": 2997218, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2" + ] + }, + { + "pc": 5723, + "op": "POP", + "gas": 2997216, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 5724, + "op": "JUMP", + "gas": 2997214, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf02" + ] + }, + { + "pc": 3842, + "op": "JUMPDEST", + "gas": 2997206, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8" + ] + }, + { + "pc": 3843, + "op": "PUSH2", + "gas": 2997205, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8" + ] + }, + { + "pc": 3846, + "op": "DUP2", + "gas": 2997202, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf6d" + ] + }, + { + "pc": 3847, + "op": "PUSH1", + "gas": 2997199, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf6d", + "0x3e8" + ] + }, + { + "pc": 3849, + "op": "MLOAD", + "gas": 2997196, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf6d", + "0x3e8", + "0x40" + ] + }, + { + "pc": 3850, + "op": "DUP1", + "gas": 2997193, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80" + ] + }, + { + "pc": 3851, + "op": "PUSH1", + "gas": 2997190, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x80" + ] + }, + { + "pc": 3853, + "op": "ADD", + "gas": 2997187, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x80", + "0x60" + ] + }, + { + "pc": 3854, + "op": "PUSH1", + "gas": 2997184, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0xe0" + ] + }, + { + "pc": 3856, + "op": "MSTORE", + "gas": 2997181, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0xe0", + "0x40" + ] + }, + { + "pc": 3857, + "op": "DUP1", + "gas": 2997178, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80" + ] + }, + { + "pc": 3858, + "op": "PUSH1", + "gas": 2997175, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x80" + ] + }, + { + "pc": 3860, + "op": "DUP2", + "gas": 2997172, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x80", + "0x26" + ] + }, + { + "pc": 3861, + "op": "MSTORE", + "gas": 2997169, + "gasCost": 9, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x80", + "0x26", + "0x80" + ] + }, + { + "pc": 3862, + "op": "PUSH1", + "gas": 2997160, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x80" + ] + }, + { + "pc": 3864, + "op": "ADD", + "gas": 2997157, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x80", + "0x20" + ] + }, + { + "pc": 3865, + "op": "PUSH2", + "gas": 2997154, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0xa0" + ] + }, + { + "pc": 3868, + "op": "PUSH1", + "gas": 2997151, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0xa0", + "0x2113" + ] + }, + { + "pc": 3870, + "op": "SWAP2", + "gas": 2997148, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0xa0", + "0x2113", + "0x26" + ] + }, + { + "pc": 3871, + "op": "CODECOPY", + "gas": 2997145, + "gasCost": 15, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x26", + "0x2113", + "0xa0" + ], + "extraData": { + "codeList": [ + "0x608060405234801561001057600080fd5b506004361061010b5760003560e01c80635c975abb116100a257806395d89b411161007157806395d89b41146102945780639dc29fac146102b2578063a457c2d7146102ce578063a9059cbb146102fe578063dd62ed3e1461032e5761010b565b80635c975abb1461022057806370a082311461023e5780638456cb591461026e5780638e50817a146102785761010b565b8063313ce567116100de578063313ce567146101ac57806339509351146101ca5780633f4ba83a146101fa57806340c10f19146102045761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015e57806323b872dd1461017c575b600080fd5b61011861035e565b6040516101259190611a15565b60405180910390f35b6101486004803603810190610143919061178a565b6103f0565b60405161015591906119fa565b60405180910390f35b61016661040e565b6040516101739190611bb7565b60405180910390f35b6101966004803603810190610191919061173b565b610418565b6040516101a391906119fa565b60405180910390f35b6101b46104f1565b6040516101c19190611bd2565b60405180910390f35b6101e460048036038101906101df919061178a565b610508565b6040516101f191906119fa565b60405180910390f35b6102026105bb565b005b61021e6004803603810190610219919061178a565b610655565b005b610228610743565b60405161023591906119fa565b60405180910390f35b610258600480360381019061025391906116d6565b61075a565b6040516102659190611bb7565b60405180910390f35b6102766107a2565b005b610292600480360381019061028d91906116ff565b61083c565b005b61029c610952565b6040516102a99190611a15565b60405180910390f35b6102cc60048036038101906102c7919061178a565b6109e4565b005b6102e860048036038101906102e3919061178a565b610ad2565b6040516102f591906119fa565b60405180910390f35b6103186004803603810190610313919061178a565b610b9f565b60405161032591906119fa565b60405180910390f35b610348600480360381019061034391906116ff565b610bbd565b6040516103559190611bb7565b60405180910390f35b60606003805461036d90611d51565b80601f016020809104026020016040519081016040528092919081815260200182805461039990611d51565b80156103e65780601f106103bb576101008083540402835291602001916103e6565b820191906000526020600020905b8154815290600101906020018083116103c957829003601f168201915b5050505050905090565b60006104046103fd610c44565b8484610c4c565b6001905092915050565b6000600254905090565b6000610425848484610e17565b6104e684610431610c44565b6104e18560405180606001604052806028815260200161213960289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610497610c44565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110ac9092919063ffffffff16565b610c4c565b600190509392505050565b6000600560009054906101000a900460ff16905090565b60006105b1610515610c44565b846105ac8560016000610526610c44565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461111090919063ffffffff16565b610c4c565b6001905092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461064b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161064290611ab7565b60405180910390fd5b61065361116e565b565b600560019054906101000a900460ff16156106a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161069c90611ad7565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610735576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161072c90611ab7565b60405180910390fd5b61073f8282611218565b5050565b6000600560019054906101000a900460ff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610832576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082990611ab7565b60405180910390fd5b61083a6113ac565b565b600560029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146108cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c390611b37565b60405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b60606004805461096190611d51565b80601f016020809104026020016040519081016040528092919081815260200182805461098d90611d51565b80156109da5780601f106109af576101008083540402835291602001916109da565b820191906000526020600020905b8154815290600101906020018083116109bd57829003601f168201915b5050505050905090565b600560019054906101000a900460ff1615610a34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2b90611ad7565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610ac4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abb90611ab7565b60405180910390fd5b610ace8282611457565b5050565b6000610b95610adf610c44565b84610b90856040518060600160405280602581526020016121616025913960016000610b09610c44565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110ac9092919063ffffffff16565b610c4c565b6001905092915050565b6000610bb3610bac610c44565b8484610e17565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb390611b57565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2390611a77565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e0a9190611bb7565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7e90611b17565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ef7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eee90611a37565b60405180910390fd5b610f02838383611605565b610f6d81604051806060016040528060268152602001612113602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110ac9092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611000816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461111090919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161109f9190611bb7565b60405180910390a3505050565b60008383111582906110f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110eb9190611a15565b60405180910390fd5b50600083856111039190611c5f565b9050809150509392505050565b600080828461111f9190611c09565b905083811015611164576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115b90611a97565b60405180910390fd5b8091505092915050565b600560019054906101000a900460ff166111bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b490611a57565b60405180910390fd5b6000600560016101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611201610c44565b60405161120e91906119df565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611288576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127f90611b77565b60405180910390fd5b61129460008383611605565b6112a98160025461111090919063ffffffff16565b600281905550611300816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461111090919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516113a09190611bb7565b60405180910390a35050565b600560019054906101000a900460ff16156113fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f390611ad7565b60405180910390fd5b6001600560016101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611440610c44565b60405161144d91906119df565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114be90611af7565b60405180910390fd5b6114d382600083611605565b61153e816040518060600160405280602281526020016120f1602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110ac9092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506115958160025461165d90919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516115f99190611bb7565b60405180910390a35050565b6116108383836116a7565b611618610743565b15611658576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164f90611b97565b60405180910390fd5b505050565b600061169f83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506110ac565b905092915050565b505050565b6000813590506116bb816120c2565b92915050565b6000813590506116d0816120d9565b92915050565b6000602082840312156116e857600080fd5b60006116f6848285016116ac565b91505092915050565b6000806040838503121561171257600080fd5b6000611720858286016116ac565b9250506020611731858286016116ac565b9150509250929050565b60008060006060848603121561175057600080fd5b600061175e868287016116ac565b935050602061176f868287016116ac565b9250506040611780868287016116c1565b9150509250925092565b6000806040838503121561179d57600080fd5b60006117ab858286016116ac565b92505060206117bc858286016116c1565b9150509250929050565b6117cf81611ce8565b82525050565b6117de81611ca5565b82525050565b60006117ef82611bed565b6117f98185611bf8565b9350611809818560208601611d1e565b61181281611de1565b840191505092915050565b600061182a602383611bf8565b915061183582611df2565b604082019050919050565b600061184d601483611bf8565b915061185882611e41565b602082019050919050565b6000611870602283611bf8565b915061187b82611e6a565b604082019050919050565b6000611893601b83611bf8565b915061189e82611eb9565b602082019050919050565b60006118b6600b83611bf8565b91506118c182611ee2565b602082019050919050565b60006118d9601083611bf8565b91506118e482611f0b565b602082019050919050565b60006118fc602183611bf8565b915061190782611f34565b604082019050919050565b600061191f602583611bf8565b915061192a82611f83565b604082019050919050565b6000611942600c83611bf8565b915061194d82611fd2565b602082019050919050565b6000611965602483611bf8565b915061197082611ffb565b604082019050919050565b6000611988601f83611bf8565b91506119938261204a565b602082019050919050565b60006119ab602a83611bf8565b91506119b682612073565b604082019050919050565b6119ca81611cd1565b82525050565b6119d981611cdb565b82525050565b60006020820190506119f460008301846117c6565b92915050565b6000602082019050611a0f60008301846117d5565b92915050565b60006020820190508181036000830152611a2f81846117e4565b905092915050565b60006020820190508181036000830152611a508161181d565b9050919050565b60006020820190508181036000830152611a7081611840565b9050919050565b60006020820190508181036000830152611a9081611863565b9050919050565b60006020820190508181036000830152611ab081611886565b9050919050565b60006020820190508181036000830152611ad0816118a9565b9050919050565b60006020820190508181036000830152611af0816118cc565b9050919050565b60006020820190508181036000830152611b10816118ef565b9050919050565b60006020820190508181036000830152611b3081611912565b9050919050565b60006020820190508181036000830152611b5081611935565b9050919050565b60006020820190508181036000830152611b7081611958565b9050919050565b60006020820190508181036000830152611b908161197b565b9050919050565b60006020820190508181036000830152611bb08161199e565b9050919050565b6000602082019050611bcc60008301846119c1565b92915050565b6000602082019050611be760008301846119d0565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611c1482611cd1565b9150611c1f83611cd1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611c5457611c53611d83565b5b828201905092915050565b6000611c6a82611cd1565b9150611c7583611cd1565b925082821015611c8857611c87611d83565b5b828203905092915050565b6000611c9e82611cb1565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b6000611cf382611cfa565b9050919050565b6000611d0582611d0c565b9050919050565b6000611d1782611cb1565b9050919050565b60005b83811015611d3c578082015181840152602081019050611d21565b83811115611d4b576000848401525b50505050565b60006002820490506001821680611d6957607f821691505b60208210811415611d7d57611d7c611db2565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b7f6e6f7420616c6c6f776564000000000000000000000000000000000000000000600082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f6f6e6c7920466163746f72790000000000000000000000000000000000000000600082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b7f45524332305061757361626c653a20746f6b656e207472616e7366657220776860008201527f696c652070617573656400000000000000000000000000000000000000000000602082015250565b6120cb81611c93565b81146120d657600080fd5b50565b6120e281611cd1565b81146120ed57600080fd5b5056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122050720249c11bf2bf6da8b1770af05168068be0eee81154cac03b74b0ab3b6a3f64736f6c63430008040033" + ] + } + }, + { + "pc": 3872, + "op": "PUSH1", + "gas": 2997130, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80" + ] + }, + { + "pc": 3874, + "op": "DUP1", + "gas": 2997127, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x0" + ] + }, + { + "pc": 3875, + "op": "DUP8", + "gas": 2997124, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x0", + "0x0" + ] + }, + { + "pc": 3876, + "op": "PUSH20", + "gas": 2997121, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 3897, + "op": "AND", + "gas": 2997118, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 3898, + "op": "PUSH20", + "gas": 2997115, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 3919, + "op": "AND", + "gas": 2997112, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 3920, + "op": "DUP2", + "gas": 2997109, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 3921, + "op": "MSTORE", + "gas": 2997106, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0" + ] + }, + { + "pc": 3922, + "op": "PUSH1", + "gas": 2997103, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x0", + "0x0" + ] + }, + { + "pc": 3924, + "op": "ADD", + "gas": 2997100, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x20" + ] + }, + { + "pc": 3925, + "op": "SWAP1", + "gas": 2997097, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x0", + "0x20" + ] + }, + { + "pc": 3926, + "op": "DUP2", + "gas": 2997094, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x20", + "0x0" + ] + }, + { + "pc": 3927, + "op": "MSTORE", + "gas": 2997091, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x20", + "0x0", + "0x20" + ] + }, + { + "pc": 3928, + "op": "PUSH1", + "gas": 2997088, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x20" + ] + }, + { + "pc": 3930, + "op": "ADD", + "gas": 2997085, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x20", + "0x20" + ] + }, + { + "pc": 3931, + "op": "PUSH1", + "gas": 2997082, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x40" + ] + }, + { + "pc": 3933, + "op": "SHA3", + "gas": 2997079, + "gasCost": 42, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x40", + "0x0" + ] + }, + { + "pc": 3934, + "op": "SLOAD", + "gas": 2997037, + "gasCost": 2100, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x5a158573daab1c353835da34297290f5f813859e4bb52de641691b875502523f" + ], + "storage": { + "0x0000000000000000000000000000000000000000000000000000000000000005": "0x000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd65710012", + "0x5a158573daab1c353835da34297290f5f813859e4bb52de641691b875502523f": "0x00000000000000000000000000000000000000000000000000038d7ea4c67830" + }, + "extraData": { + "proofList": [ + { + "address": "0x34041eff1f32989bdaa95875e0f41afd6294dcd4", + "nonce": 1, + "balance": "0x0", + "codeHash": "0x9b5ea0519f6e20c36338989b6accc7cf3384eac2f0a083e82730bca177544409", + "storage": { + "key": "0x5a158573daab1c353835da34297290f5f813859e4bb52de641691b875502523f", + "value": "0x00000000000000000000000000000000000000000000000000038d7ea4c67830" + } + } + ] + } + }, + { + "pc": 3935, + "op": "PUSH2", + "gas": 2994937, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x38d7ea4c67830" + ] + }, + { + "pc": 3938, + "op": "SWAP1", + "gas": 2994934, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x38d7ea4c67830", + "0x10ac" + ] + }, + { + "pc": 3939, + "op": "SWAP3", + "gas": 2994931, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x10ac", + "0x38d7ea4c67830" + ] + }, + { + "pc": 3940, + "op": "SWAP2", + "gas": 2994928, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf6d", + "0x38d7ea4c67830", + "0x80", + "0x10ac", + "0x3e8" + ] + }, + { + "pc": 3941, + "op": "SWAP1", + "gas": 2994925, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf6d", + "0x38d7ea4c67830", + "0x3e8", + "0x10ac", + "0x80" + ] + }, + { + "pc": 3942, + "op": "PUSH4", + "gas": 2994922, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf6d", + "0x38d7ea4c67830", + "0x3e8", + "0x80", + "0x10ac" + ] + }, + { + "pc": 3947, + "op": "AND", + "gas": 2994919, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf6d", + "0x38d7ea4c67830", + "0x3e8", + "0x80", + "0x10ac", + "0xffffffff" + ] + }, + { + "pc": 3948, + "op": "JUMP", + "gas": 2994916, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf6d", + "0x38d7ea4c67830", + "0x3e8", + "0x80", + "0x10ac" + ] + }, + { + "pc": 4268, + "op": "JUMPDEST", + "gas": 2994908, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf6d", + "0x38d7ea4c67830", + "0x3e8", + "0x80" + ] + }, + { + "pc": 4269, + "op": "PUSH1", + "gas": 2994907, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf6d", + "0x38d7ea4c67830", + "0x3e8", + "0x80" + ] + }, + { + "pc": 4271, + "op": "DUP4", + "gas": 2994904, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf6d", + "0x38d7ea4c67830", + "0x3e8", + "0x80", + "0x0" + ] + }, + { + "pc": 4272, + "op": "DUP4", + "gas": 2994901, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf6d", + "0x38d7ea4c67830", + "0x3e8", + "0x80", + "0x0", + "0x38d7ea4c67830" + ] + }, + { + "pc": 4273, + "op": "GT", + "gas": 2994898, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf6d", + "0x38d7ea4c67830", + "0x3e8", + "0x80", + "0x0", + "0x38d7ea4c67830", + "0x3e8" + ] + }, + { + "pc": 4274, + "op": "ISZERO", + "gas": 2994895, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf6d", + "0x38d7ea4c67830", + "0x3e8", + "0x80", + "0x0", + "0x0" + ] + }, + { + "pc": 4275, + "op": "DUP3", + "gas": 2994892, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf6d", + "0x38d7ea4c67830", + "0x3e8", + "0x80", + "0x0", + "0x1" + ] + }, + { + "pc": 4276, + "op": "SWAP1", + "gas": 2994889, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf6d", + "0x38d7ea4c67830", + "0x3e8", + "0x80", + "0x0", + "0x1", + "0x80" + ] + }, + { + "pc": 4277, + "op": "PUSH2", + "gas": 2994886, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf6d", + "0x38d7ea4c67830", + "0x3e8", + "0x80", + "0x0", + "0x80", + "0x1" + ] + }, + { + "pc": 4280, + "op": "JUMPI", + "gas": 2994883, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf6d", + "0x38d7ea4c67830", + "0x3e8", + "0x80", + "0x0", + "0x80", + "0x1", + "0x10f4" + ] + }, + { + "pc": 4340, + "op": "JUMPDEST", + "gas": 2994873, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf6d", + "0x38d7ea4c67830", + "0x3e8", + "0x80", + "0x0", + "0x80" + ] + }, + { + "pc": 4341, + "op": "POP", + "gas": 2994872, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf6d", + "0x38d7ea4c67830", + "0x3e8", + "0x80", + "0x0", + "0x80" + ] + }, + { + "pc": 4342, + "op": "PUSH1", + "gas": 2994870, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf6d", + "0x38d7ea4c67830", + "0x3e8", + "0x80", + "0x0" + ] + }, + { + "pc": 4344, + "op": "DUP4", + "gas": 2994867, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf6d", + "0x38d7ea4c67830", + "0x3e8", + "0x80", + "0x0", + "0x0" + ] + }, + { + "pc": 4345, + "op": "DUP6", + "gas": 2994864, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf6d", + "0x38d7ea4c67830", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x3e8" + ] + }, + { + "pc": 4346, + "op": "PUSH2", + "gas": 2994861, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf6d", + "0x38d7ea4c67830", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x3e8", + "0x38d7ea4c67830" + ] + }, + { + "pc": 4349, + "op": "SWAP2", + "gas": 2994858, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf6d", + "0x38d7ea4c67830", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x3e8", + "0x38d7ea4c67830", + "0x1103" + ] + }, + { + "pc": 4350, + "op": "SWAP1", + "gas": 2994855, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf6d", + "0x38d7ea4c67830", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x38d7ea4c67830", + "0x3e8" + ] + }, + { + "pc": 4351, + "op": "PUSH2", + "gas": 2994852, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf6d", + "0x38d7ea4c67830", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67830" + ] + }, + { + "pc": 4354, + "op": "JUMP", + "gas": 2994849, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf6d", + "0x38d7ea4c67830", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67830", + "0x1c5f" + ] + }, + { + "pc": 7263, + "op": "JUMPDEST", + "gas": 2994841, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf6d", + "0x38d7ea4c67830", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67830" + ] + }, + { + "pc": 7264, + "op": "PUSH1", + "gas": 2994840, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf6d", + "0x38d7ea4c67830", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67830" + ] + }, + { + "pc": 7266, + "op": "PUSH2", + "gas": 2994837, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf6d", + "0x38d7ea4c67830", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67830", + "0x0" + ] + }, + { + "pc": 7269, + "op": "DUP3", + "gas": 2994834, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf6d", + "0x38d7ea4c67830", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67830", + "0x0", + "0x1c6a" + ] + }, + { + "pc": 7270, + "op": "PUSH2", + "gas": 2994831, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf6d", + "0x38d7ea4c67830", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67830", + "0x0", + "0x1c6a", + "0x38d7ea4c67830" + ] + }, + { + "pc": 7273, + "op": "JUMP", + "gas": 2994828, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf6d", + "0x38d7ea4c67830", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67830", + "0x0", + "0x1c6a", + "0x38d7ea4c67830", + "0x1cd1" + ] + }, + { + "pc": 7377, + "op": "JUMPDEST", + "gas": 2994820, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf6d", + "0x38d7ea4c67830", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67830", + "0x0", + "0x1c6a", + "0x38d7ea4c67830" + ] + }, + { + "pc": 7378, + "op": "PUSH1", + "gas": 2994819, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf6d", + "0x38d7ea4c67830", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67830", + "0x0", + "0x1c6a", + "0x38d7ea4c67830" + ] + }, + { + "pc": 7380, + "op": "DUP2", + "gas": 2994816, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf6d", + "0x38d7ea4c67830", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67830", + "0x0", + "0x1c6a", + "0x38d7ea4c67830", + "0x0" + ] + }, + { + "pc": 7381, + "op": "SWAP1", + "gas": 2994813, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf6d", + "0x38d7ea4c67830", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67830", + "0x0", + "0x1c6a", + "0x38d7ea4c67830", + "0x0", + "0x38d7ea4c67830" + ] + }, + { + "pc": 7382, + "op": "POP", + "gas": 2994810, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf6d", + "0x38d7ea4c67830", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67830", + "0x0", + "0x1c6a", + "0x38d7ea4c67830", + "0x38d7ea4c67830", + "0x0" + ] + }, + { + "pc": 7383, + "op": "SWAP2", + "gas": 2994808, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf6d", + "0x38d7ea4c67830", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67830", + "0x0", + "0x1c6a", + "0x38d7ea4c67830", + "0x38d7ea4c67830" + ] + }, + { + "pc": 7384, + "op": "SWAP1", + "gas": 2994805, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf6d", + "0x38d7ea4c67830", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67830", + "0x0", + "0x38d7ea4c67830", + "0x38d7ea4c67830", + "0x1c6a" + ] + }, + { + "pc": 7385, + "op": "POP", + "gas": 2994802, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf6d", + "0x38d7ea4c67830", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67830", + "0x0", + "0x38d7ea4c67830", + "0x1c6a", + "0x38d7ea4c67830" + ] + }, + { + "pc": 7386, + "op": "JUMP", + "gas": 2994800, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf6d", + "0x38d7ea4c67830", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67830", + "0x0", + "0x38d7ea4c67830", + "0x1c6a" + ] + }, + { + "pc": 7274, + "op": "JUMPDEST", + "gas": 2994792, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf6d", + "0x38d7ea4c67830", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67830", + "0x0", + "0x38d7ea4c67830" + ] + }, + { + "pc": 7275, + "op": "SWAP2", + "gas": 2994791, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf6d", + "0x38d7ea4c67830", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67830", + "0x0", + "0x38d7ea4c67830" + ] + }, + { + "pc": 7276, + "op": "POP", + "gas": 2994788, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf6d", + "0x38d7ea4c67830", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67830", + "0x0", + "0x38d7ea4c67830" + ] + }, + { + "pc": 7277, + "op": "PUSH2", + "gas": 2994786, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf6d", + "0x38d7ea4c67830", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67830", + "0x0" + ] + }, + { + "pc": 7280, + "op": "DUP4", + "gas": 2994783, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf6d", + "0x38d7ea4c67830", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67830", + "0x0", + "0x1c75" + ] + }, + { + "pc": 7281, + "op": "PUSH2", + "gas": 2994780, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf6d", + "0x38d7ea4c67830", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67830", + "0x0", + "0x1c75", + "0x3e8" + ] + }, + { + "pc": 7284, + "op": "JUMP", + "gas": 2994777, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf6d", + "0x38d7ea4c67830", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67830", + "0x0", + "0x1c75", + "0x3e8", + "0x1cd1" + ] + }, + { + "pc": 7377, + "op": "JUMPDEST", + "gas": 2994769, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf6d", + "0x38d7ea4c67830", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67830", + "0x0", + "0x1c75", + "0x3e8" + ] + }, + { + "pc": 7378, + "op": "PUSH1", + "gas": 2994768, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf6d", + "0x38d7ea4c67830", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67830", + "0x0", + "0x1c75", + "0x3e8" + ] + }, + { + "pc": 7380, + "op": "DUP2", + "gas": 2994765, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf6d", + "0x38d7ea4c67830", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67830", + "0x0", + "0x1c75", + "0x3e8", + "0x0" + ] + }, + { + "pc": 7381, + "op": "SWAP1", + "gas": 2994762, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf6d", + "0x38d7ea4c67830", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67830", + "0x0", + "0x1c75", + "0x3e8", + "0x0", + "0x3e8" + ] + }, + { + "pc": 7382, + "op": "POP", + "gas": 2994759, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf6d", + "0x38d7ea4c67830", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67830", + "0x0", + "0x1c75", + "0x3e8", + "0x3e8", + "0x0" + ] + }, + { + "pc": 7383, + "op": "SWAP2", + "gas": 2994757, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf6d", + "0x38d7ea4c67830", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67830", + "0x0", + "0x1c75", + "0x3e8", + "0x3e8" + ] + }, + { + "pc": 7384, + "op": "SWAP1", + "gas": 2994754, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf6d", + "0x38d7ea4c67830", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67830", + "0x0", + "0x3e8", + "0x3e8", + "0x1c75" + ] + }, + { + "pc": 7385, + "op": "POP", + "gas": 2994751, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf6d", + "0x38d7ea4c67830", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67830", + "0x0", + "0x3e8", + "0x1c75", + "0x3e8" + ] + }, + { + "pc": 7386, + "op": "JUMP", + "gas": 2994749, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf6d", + "0x38d7ea4c67830", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67830", + "0x0", + "0x3e8", + "0x1c75" + ] + }, + { + "pc": 7285, + "op": "JUMPDEST", + "gas": 2994741, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf6d", + "0x38d7ea4c67830", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67830", + "0x0", + "0x3e8" + ] + }, + { + "pc": 7286, + "op": "SWAP3", + "gas": 2994740, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf6d", + "0x38d7ea4c67830", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67830", + "0x0", + "0x3e8" + ] + }, + { + "pc": 7287, + "op": "POP", + "gas": 2994737, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf6d", + "0x38d7ea4c67830", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67830", + "0x0", + "0x3e8" + ] + }, + { + "pc": 7288, + "op": "DUP3", + "gas": 2994735, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf6d", + "0x38d7ea4c67830", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67830", + "0x0" + ] + }, + { + "pc": 7289, + "op": "DUP3", + "gas": 2994732, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf6d", + "0x38d7ea4c67830", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67830", + "0x0", + "0x3e8" + ] + }, + { + "pc": 7290, + "op": "LT", + "gas": 2994729, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf6d", + "0x38d7ea4c67830", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67830", + "0x0", + "0x3e8", + "0x38d7ea4c67830" + ] + }, + { + "pc": 7291, + "op": "ISZERO", + "gas": 2994726, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf6d", + "0x38d7ea4c67830", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67830", + "0x0", + "0x0" + ] + }, + { + "pc": 7292, + "op": "PUSH2", + "gas": 2994723, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf6d", + "0x38d7ea4c67830", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67830", + "0x0", + "0x1" + ] + }, + { + "pc": 7295, + "op": "JUMPI", + "gas": 2994720, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf6d", + "0x38d7ea4c67830", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67830", + "0x0", + "0x1", + "0x1c88" + ] + }, + { + "pc": 7304, + "op": "JUMPDEST", + "gas": 2994710, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf6d", + "0x38d7ea4c67830", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67830", + "0x0" + ] + }, + { + "pc": 7305, + "op": "DUP3", + "gas": 2994709, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf6d", + "0x38d7ea4c67830", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67830", + "0x0" + ] + }, + { + "pc": 7306, + "op": "DUP3", + "gas": 2994706, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf6d", + "0x38d7ea4c67830", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67830", + "0x0", + "0x3e8" + ] + }, + { + "pc": 7307, + "op": "SUB", + "gas": 2994703, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf6d", + "0x38d7ea4c67830", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67830", + "0x0", + "0x3e8", + "0x38d7ea4c67830" + ] + }, + { + "pc": 7308, + "op": "SWAP1", + "gas": 2994700, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf6d", + "0x38d7ea4c67830", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67830", + "0x0", + "0x38d7ea4c67448" + ] + }, + { + "pc": 7309, + "op": "POP", + "gas": 2994697, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf6d", + "0x38d7ea4c67830", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67830", + "0x38d7ea4c67448", + "0x0" + ] + }, + { + "pc": 7310, + "op": "SWAP3", + "gas": 2994695, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf6d", + "0x38d7ea4c67830", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67830", + "0x38d7ea4c67448" + ] + }, + { + "pc": 7311, + "op": "SWAP2", + "gas": 2994692, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf6d", + "0x38d7ea4c67830", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x38d7ea4c67448", + "0x3e8", + "0x38d7ea4c67830", + "0x1103" + ] + }, + { + "pc": 7312, + "op": "POP", + "gas": 2994689, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf6d", + "0x38d7ea4c67830", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x38d7ea4c67448", + "0x1103", + "0x38d7ea4c67830", + "0x3e8" + ] + }, + { + "pc": 7313, + "op": "POP", + "gas": 2994687, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf6d", + "0x38d7ea4c67830", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x38d7ea4c67448", + "0x1103", + "0x38d7ea4c67830" + ] + }, + { + "pc": 7314, + "op": "JUMP", + "gas": 2994685, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf6d", + "0x38d7ea4c67830", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x38d7ea4c67448", + "0x1103" + ] + }, + { + "pc": 4355, + "op": "JUMPDEST", + "gas": 2994677, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf6d", + "0x38d7ea4c67830", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x38d7ea4c67448" + ] + }, + { + "pc": 4356, + "op": "SWAP1", + "gas": 2994676, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf6d", + "0x38d7ea4c67830", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x38d7ea4c67448" + ] + }, + { + "pc": 4357, + "op": "POP", + "gas": 2994673, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf6d", + "0x38d7ea4c67830", + "0x3e8", + "0x80", + "0x0", + "0x38d7ea4c67448", + "0x0" + ] + }, + { + "pc": 4358, + "op": "DUP1", + "gas": 2994671, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf6d", + "0x38d7ea4c67830", + "0x3e8", + "0x80", + "0x0", + "0x38d7ea4c67448" + ] + }, + { + "pc": 4359, + "op": "SWAP2", + "gas": 2994668, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf6d", + "0x38d7ea4c67830", + "0x3e8", + "0x80", + "0x0", + "0x38d7ea4c67448", + "0x38d7ea4c67448" + ] + }, + { + "pc": 4360, + "op": "POP", + "gas": 2994665, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf6d", + "0x38d7ea4c67830", + "0x3e8", + "0x80", + "0x38d7ea4c67448", + "0x38d7ea4c67448", + "0x0" + ] + }, + { + "pc": 4361, + "op": "POP", + "gas": 2994663, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf6d", + "0x38d7ea4c67830", + "0x3e8", + "0x80", + "0x38d7ea4c67448", + "0x38d7ea4c67448" + ] + }, + { + "pc": 4362, + "op": "SWAP4", + "gas": 2994661, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0xf6d", + "0x38d7ea4c67830", + "0x3e8", + "0x80", + "0x38d7ea4c67448" + ] + }, + { + "pc": 4363, + "op": "SWAP3", + "gas": 2994658, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x38d7ea4c67448", + "0x38d7ea4c67830", + "0x3e8", + "0x80", + "0xf6d" + ] + }, + { + "pc": 4364, + "op": "POP", + "gas": 2994655, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x38d7ea4c67448", + "0xf6d", + "0x3e8", + "0x80", + "0x38d7ea4c67830" + ] + }, + { + "pc": 4365, + "op": "POP", + "gas": 2994653, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x38d7ea4c67448", + "0xf6d", + "0x3e8", + "0x80" + ] + }, + { + "pc": 4366, + "op": "POP", + "gas": 2994651, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x38d7ea4c67448", + "0xf6d", + "0x3e8" + ] + }, + { + "pc": 4367, + "op": "JUMP", + "gas": 2994649, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x38d7ea4c67448", + "0xf6d" + ] + }, + { + "pc": 3949, + "op": "JUMPDEST", + "gas": 2994641, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x38d7ea4c67448" + ] + }, + { + "pc": 3950, + "op": "PUSH1", + "gas": 2994640, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x38d7ea4c67448" + ] + }, + { + "pc": 3952, + "op": "DUP1", + "gas": 2994637, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x38d7ea4c67448", + "0x0" + ] + }, + { + "pc": 3953, + "op": "DUP6", + "gas": 2994634, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x38d7ea4c67448", + "0x0", + "0x0" + ] + }, + { + "pc": 3954, + "op": "PUSH20", + "gas": 2994631, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x38d7ea4c67448", + "0x0", + "0x0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 3975, + "op": "AND", + "gas": 2994628, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x38d7ea4c67448", + "0x0", + "0x0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 3976, + "op": "PUSH20", + "gas": 2994625, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x38d7ea4c67448", + "0x0", + "0x0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 3997, + "op": "AND", + "gas": 2994622, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x38d7ea4c67448", + "0x0", + "0x0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 3998, + "op": "DUP2", + "gas": 2994619, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x38d7ea4c67448", + "0x0", + "0x0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 3999, + "op": "MSTORE", + "gas": 2994616, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x38d7ea4c67448", + "0x0", + "0x0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0" + ] + }, + { + "pc": 4000, + "op": "PUSH1", + "gas": 2994613, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x38d7ea4c67448", + "0x0", + "0x0" + ] + }, + { + "pc": 4002, + "op": "ADD", + "gas": 2994610, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x38d7ea4c67448", + "0x0", + "0x0", + "0x20" + ] + }, + { + "pc": 4003, + "op": "SWAP1", + "gas": 2994607, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x38d7ea4c67448", + "0x0", + "0x20" + ] + }, + { + "pc": 4004, + "op": "DUP2", + "gas": 2994604, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x38d7ea4c67448", + "0x20", + "0x0" + ] + }, + { + "pc": 4005, + "op": "MSTORE", + "gas": 2994601, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x38d7ea4c67448", + "0x20", + "0x0", + "0x20" + ] + }, + { + "pc": 4006, + "op": "PUSH1", + "gas": 2994598, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x38d7ea4c67448", + "0x20" + ] + }, + { + "pc": 4008, + "op": "ADD", + "gas": 2994595, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x38d7ea4c67448", + "0x20", + "0x20" + ] + }, + { + "pc": 4009, + "op": "PUSH1", + "gas": 2994592, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x38d7ea4c67448", + "0x40" + ] + }, + { + "pc": 4011, + "op": "SHA3", + "gas": 2994589, + "gasCost": 42, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x38d7ea4c67448", + "0x40", + "0x0" + ] + }, + { + "pc": 4012, + "op": "DUP2", + "gas": 2994547, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x38d7ea4c67448", + "0x5a158573daab1c353835da34297290f5f813859e4bb52de641691b875502523f" + ] + }, + { + "pc": 4013, + "op": "SWAP1", + "gas": 2994544, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x38d7ea4c67448", + "0x5a158573daab1c353835da34297290f5f813859e4bb52de641691b875502523f", + "0x38d7ea4c67448" + ] + }, + { + "pc": 4014, + "op": "SSTORE", + "gas": 2994541, + "gasCost": 2900, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x38d7ea4c67448", + "0x38d7ea4c67448", + "0x5a158573daab1c353835da34297290f5f813859e4bb52de641691b875502523f" + ], + "storage": { + "0x0000000000000000000000000000000000000000000000000000000000000005": "0x000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd65710012", + "0x5a158573daab1c353835da34297290f5f813859e4bb52de641691b875502523f": "0x00000000000000000000000000000000000000000000000000038d7ea4c67448" + }, + "extraData": { + "proofList": [ + { + "address": "0x34041eff1f32989bdaa95875e0f41afd6294dcd4", + "nonce": 1, + "balance": "0x0", + "codeHash": "0x9b5ea0519f6e20c36338989b6accc7cf3384eac2f0a083e82730bca177544409", + "storage": { + "key": "0x5a158573daab1c353835da34297290f5f813859e4bb52de641691b875502523f", + "value": "0x00000000000000000000000000000000000000000000000000038d7ea4c67830" + } + } + ] + } + }, + { + "pc": 4015, + "op": "POP", + "gas": 2991641, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x38d7ea4c67448" + ] + }, + { + "pc": 4016, + "op": "PUSH2", + "gas": 2991639, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8" + ] + }, + { + "pc": 4019, + "op": "DUP2", + "gas": 2991636, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1000" + ] + }, + { + "pc": 4020, + "op": "PUSH1", + "gas": 2991633, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1000", + "0x3e8" + ] + }, + { + "pc": 4022, + "op": "DUP1", + "gas": 2991630, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1000", + "0x3e8", + "0x0" + ] + }, + { + "pc": 4023, + "op": "DUP6", + "gas": 2991627, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1000", + "0x3e8", + "0x0", + "0x0" + ] + }, + { + "pc": 4024, + "op": "PUSH20", + "gas": 2991624, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1000", + "0x3e8", + "0x0", + "0x0", + "0x2" + ] + }, + { + "pc": 4045, + "op": "AND", + "gas": 2991621, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1000", + "0x3e8", + "0x0", + "0x0", + "0x2", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 4046, + "op": "PUSH20", + "gas": 2991618, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1000", + "0x3e8", + "0x0", + "0x0", + "0x2" + ] + }, + { + "pc": 4067, + "op": "AND", + "gas": 2991615, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1000", + "0x3e8", + "0x0", + "0x0", + "0x2", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 4068, + "op": "DUP2", + "gas": 2991612, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1000", + "0x3e8", + "0x0", + "0x0", + "0x2" + ] + }, + { + "pc": 4069, + "op": "MSTORE", + "gas": 2991609, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1000", + "0x3e8", + "0x0", + "0x0", + "0x2", + "0x0" + ] + }, + { + "pc": 4070, + "op": "PUSH1", + "gas": 2991606, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1000", + "0x3e8", + "0x0", + "0x0" + ] + }, + { + "pc": 4072, + "op": "ADD", + "gas": 2991603, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1000", + "0x3e8", + "0x0", + "0x0", + "0x20" + ] + }, + { + "pc": 4073, + "op": "SWAP1", + "gas": 2991600, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1000", + "0x3e8", + "0x0", + "0x20" + ] + }, + { + "pc": 4074, + "op": "DUP2", + "gas": 2991597, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1000", + "0x3e8", + "0x20", + "0x0" + ] + }, + { + "pc": 4075, + "op": "MSTORE", + "gas": 2991594, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1000", + "0x3e8", + "0x20", + "0x0", + "0x20" + ] + }, + { + "pc": 4076, + "op": "PUSH1", + "gas": 2991591, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1000", + "0x3e8", + "0x20" + ] + }, + { + "pc": 4078, + "op": "ADD", + "gas": 2991588, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1000", + "0x3e8", + "0x20", + "0x20" + ] + }, + { + "pc": 4079, + "op": "PUSH1", + "gas": 2991585, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1000", + "0x3e8", + "0x40" + ] + }, + { + "pc": 4081, + "op": "SHA3", + "gas": 2991582, + "gasCost": 42, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1000", + "0x3e8", + "0x40", + "0x0" + ] + }, + { + "pc": 4082, + "op": "SLOAD", + "gas": 2991540, + "gasCost": 2100, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1000", + "0x3e8", + "0xabbb5caa7dda850e60932de0934eb1f9d0f59695050f761dc64e443e5030a569" + ], + "storage": { + "0x0000000000000000000000000000000000000000000000000000000000000005": "0x000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd65710012", + "0x5a158573daab1c353835da34297290f5f813859e4bb52de641691b875502523f": "0x00000000000000000000000000000000000000000000000000038d7ea4c67448", + "0xabbb5caa7dda850e60932de0934eb1f9d0f59695050f761dc64e443e5030a569": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "extraData": { + "proofList": [ + { + "address": "0x34041eff1f32989bdaa95875e0f41afd6294dcd4", + "nonce": 1, + "balance": "0x0", + "codeHash": "0x9b5ea0519f6e20c36338989b6accc7cf3384eac2f0a083e82730bca177544409", + "storage": { + "key": "0xabbb5caa7dda850e60932de0934eb1f9d0f59695050f761dc64e443e5030a569", + "value": "0x0000000000000000000000000000000000000000000000000000000000000000" + } + } + ] + } + }, + { + "pc": 4083, + "op": "PUSH2", + "gas": 2989440, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1000", + "0x3e8", + "0x0" + ] + }, + { + "pc": 4086, + "op": "SWAP1", + "gas": 2989437, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1000", + "0x3e8", + "0x0", + "0x1110" + ] + }, + { + "pc": 4087, + "op": "SWAP2", + "gas": 2989434, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1000", + "0x3e8", + "0x1110", + "0x0" + ] + }, + { + "pc": 4088, + "op": "SWAP1", + "gas": 2989431, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1000", + "0x0", + "0x1110", + "0x3e8" + ] + }, + { + "pc": 4089, + "op": "PUSH4", + "gas": 2989428, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x1110" + ] + }, + { + "pc": 4094, + "op": "AND", + "gas": 2989425, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x1110", + "0xffffffff" + ] + }, + { + "pc": 4095, + "op": "JUMP", + "gas": 2989422, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x1110" + ] + }, + { + "pc": 4368, + "op": "JUMPDEST", + "gas": 2989414, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1000", + "0x0", + "0x3e8" + ] + }, + { + "pc": 4369, + "op": "PUSH1", + "gas": 2989413, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1000", + "0x0", + "0x3e8" + ] + }, + { + "pc": 4371, + "op": "DUP1", + "gas": 2989410, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0" + ] + }, + { + "pc": 4372, + "op": "DUP3", + "gas": 2989407, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0" + ] + }, + { + "pc": 4373, + "op": "DUP5", + "gas": 2989404, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x3e8" + ] + }, + { + "pc": 4374, + "op": "PUSH2", + "gas": 2989401, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x3e8", + "0x0" + ] + }, + { + "pc": 4377, + "op": "SWAP2", + "gas": 2989398, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x3e8", + "0x0", + "0x111f" + ] + }, + { + "pc": 4378, + "op": "SWAP1", + "gas": 2989395, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x0", + "0x3e8" + ] + }, + { + "pc": 4379, + "op": "PUSH2", + "gas": 2989392, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0" + ] + }, + { + "pc": 4382, + "op": "JUMP", + "gas": 2989389, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x1c09" + ] + }, + { + "pc": 7177, + "op": "JUMPDEST", + "gas": 2989381, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0" + ] + }, + { + "pc": 7178, + "op": "PUSH1", + "gas": 2989380, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0" + ] + }, + { + "pc": 7180, + "op": "PUSH2", + "gas": 2989377, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0" + ] + }, + { + "pc": 7183, + "op": "DUP3", + "gas": 2989374, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x1c14" + ] + }, + { + "pc": 7184, + "op": "PUSH2", + "gas": 2989371, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x1c14", + "0x0" + ] + }, + { + "pc": 7187, + "op": "JUMP", + "gas": 2989368, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x1c14", + "0x0", + "0x1cd1" + ] + }, + { + "pc": 7377, + "op": "JUMPDEST", + "gas": 2989360, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x1c14", + "0x0" + ] + }, + { + "pc": 7378, + "op": "PUSH1", + "gas": 2989359, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x1c14", + "0x0" + ] + }, + { + "pc": 7380, + "op": "DUP2", + "gas": 2989356, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x1c14", + "0x0", + "0x0" + ] + }, + { + "pc": 7381, + "op": "SWAP1", + "gas": 2989353, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x1c14", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 7382, + "op": "POP", + "gas": 2989350, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x1c14", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 7383, + "op": "SWAP2", + "gas": 2989348, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x1c14", + "0x0", + "0x0" + ] + }, + { + "pc": 7384, + "op": "SWAP1", + "gas": 2989345, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x0", + "0x0", + "0x1c14" + ] + }, + { + "pc": 7385, + "op": "POP", + "gas": 2989342, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x0", + "0x1c14", + "0x0" + ] + }, + { + "pc": 7386, + "op": "JUMP", + "gas": 2989340, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x0", + "0x1c14" + ] + }, + { + "pc": 7188, + "op": "JUMPDEST", + "gas": 2989332, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 7189, + "op": "SWAP2", + "gas": 2989331, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 7190, + "op": "POP", + "gas": 2989328, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 7191, + "op": "PUSH2", + "gas": 2989326, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0" + ] + }, + { + "pc": 7194, + "op": "DUP4", + "gas": 2989323, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x1c1f" + ] + }, + { + "pc": 7195, + "op": "PUSH2", + "gas": 2989320, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x1c1f", + "0x3e8" + ] + }, + { + "pc": 7198, + "op": "JUMP", + "gas": 2989317, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x1c1f", + "0x3e8", + "0x1cd1" + ] + }, + { + "pc": 7377, + "op": "JUMPDEST", + "gas": 2989309, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x1c1f", + "0x3e8" + ] + }, + { + "pc": 7378, + "op": "PUSH1", + "gas": 2989308, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x1c1f", + "0x3e8" + ] + }, + { + "pc": 7380, + "op": "DUP2", + "gas": 2989305, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x1c1f", + "0x3e8", + "0x0" + ] + }, + { + "pc": 7381, + "op": "SWAP1", + "gas": 2989302, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x1c1f", + "0x3e8", + "0x0", + "0x3e8" + ] + }, + { + "pc": 7382, + "op": "POP", + "gas": 2989299, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x1c1f", + "0x3e8", + "0x3e8", + "0x0" + ] + }, + { + "pc": 7383, + "op": "SWAP2", + "gas": 2989297, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x1c1f", + "0x3e8", + "0x3e8" + ] + }, + { + "pc": 7384, + "op": "SWAP1", + "gas": 2989294, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x3e8", + "0x3e8", + "0x1c1f" + ] + }, + { + "pc": 7385, + "op": "POP", + "gas": 2989291, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x3e8", + "0x1c1f", + "0x3e8" + ] + }, + { + "pc": 7386, + "op": "JUMP", + "gas": 2989289, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x3e8", + "0x1c1f" + ] + }, + { + "pc": 7199, + "op": "JUMPDEST", + "gas": 2989281, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x3e8" + ] + }, + { + "pc": 7200, + "op": "SWAP3", + "gas": 2989280, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x3e8" + ] + }, + { + "pc": 7201, + "op": "POP", + "gas": 2989277, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x3e8" + ] + }, + { + "pc": 7202, + "op": "DUP3", + "gas": 2989275, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0" + ] + }, + { + "pc": 7203, + "op": "PUSH32", + "gas": 2989272, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x3e8" + ] + }, + { + "pc": 7236, + "op": "SUB", + "gas": 2989269, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x3e8", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 7237, + "op": "DUP3", + "gas": 2989266, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc17" + ] + }, + { + "pc": 7238, + "op": "GT", + "gas": 2989263, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc17", + "0x0" + ] + }, + { + "pc": 7239, + "op": "ISZERO", + "gas": 2989260, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 7240, + "op": "PUSH2", + "gas": 2989257, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x1" + ] + }, + { + "pc": 7243, + "op": "JUMPI", + "gas": 2989254, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x1", + "0x1c54" + ] + }, + { + "pc": 7252, + "op": "JUMPDEST", + "gas": 2989244, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0" + ] + }, + { + "pc": 7253, + "op": "DUP3", + "gas": 2989243, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0" + ] + }, + { + "pc": 7254, + "op": "DUP3", + "gas": 2989240, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x3e8" + ] + }, + { + "pc": 7255, + "op": "ADD", + "gas": 2989237, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x3e8", + "0x0" + ] + }, + { + "pc": 7256, + "op": "SWAP1", + "gas": 2989234, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x3e8" + ] + }, + { + "pc": 7257, + "op": "POP", + "gas": 2989231, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x3e8", + "0x0" + ] + }, + { + "pc": 7258, + "op": "SWAP3", + "gas": 2989229, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x3e8" + ] + }, + { + "pc": 7259, + "op": "SWAP2", + "gas": 2989226, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x3e8", + "0x3e8", + "0x0", + "0x111f" + ] + }, + { + "pc": 7260, + "op": "POP", + "gas": 2989223, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x3e8", + "0x111f", + "0x0", + "0x3e8" + ] + }, + { + "pc": 7261, + "op": "POP", + "gas": 2989221, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x3e8", + "0x111f", + "0x0" + ] + }, + { + "pc": 7262, + "op": "JUMP", + "gas": 2989219, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x3e8", + "0x111f" + ] + }, + { + "pc": 4383, + "op": "JUMPDEST", + "gas": 2989211, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x3e8" + ] + }, + { + "pc": 4384, + "op": "SWAP1", + "gas": 2989210, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x3e8" + ] + }, + { + "pc": 4385, + "op": "POP", + "gas": 2989207, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x3e8", + "0x0" + ] + }, + { + "pc": 4386, + "op": "DUP4", + "gas": 2989205, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x3e8" + ] + }, + { + "pc": 4387, + "op": "DUP2", + "gas": 2989202, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x3e8", + "0x0" + ] + }, + { + "pc": 4388, + "op": "LT", + "gas": 2989199, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x3e8", + "0x0", + "0x3e8" + ] + }, + { + "pc": 4389, + "op": "ISZERO", + "gas": 2989196, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x3e8", + "0x0" + ] + }, + { + "pc": 4390, + "op": "PUSH2", + "gas": 2989193, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x3e8", + "0x1" + ] + }, + { + "pc": 4393, + "op": "JUMPI", + "gas": 2989190, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x3e8", + "0x1", + "0x1164" + ] + }, + { + "pc": 4452, + "op": "JUMPDEST", + "gas": 2989180, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x3e8" + ] + }, + { + "pc": 4453, + "op": "DUP1", + "gas": 2989179, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x3e8" + ] + }, + { + "pc": 4454, + "op": "SWAP2", + "gas": 2989176, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x3e8", + "0x3e8" + ] + }, + { + "pc": 4455, + "op": "POP", + "gas": 2989173, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x3e8", + "0x3e8", + "0x0" + ] + }, + { + "pc": 4456, + "op": "POP", + "gas": 2989171, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x3e8", + "0x3e8" + ] + }, + { + "pc": 4457, + "op": "SWAP3", + "gas": 2989169, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x3e8" + ] + }, + { + "pc": 4458, + "op": "SWAP2", + "gas": 2989166, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x3e8", + "0x0", + "0x3e8", + "0x1000" + ] + }, + { + "pc": 4459, + "op": "POP", + "gas": 2989163, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x3e8", + "0x1000", + "0x3e8", + "0x0" + ] + }, + { + "pc": 4460, + "op": "POP", + "gas": 2989161, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x3e8", + "0x1000", + "0x3e8" + ] + }, + { + "pc": 4461, + "op": "JUMP", + "gas": 2989159, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x3e8", + "0x1000" + ] + }, + { + "pc": 4096, + "op": "JUMPDEST", + "gas": 2989151, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x3e8" + ] + }, + { + "pc": 4097, + "op": "PUSH1", + "gas": 2989150, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x3e8" + ] + }, + { + "pc": 4099, + "op": "DUP1", + "gas": 2989147, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x3e8", + "0x0" + ] + }, + { + "pc": 4100, + "op": "DUP5", + "gas": 2989144, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x3e8", + "0x0", + "0x0" + ] + }, + { + "pc": 4101, + "op": "PUSH20", + "gas": 2989141, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x3e8", + "0x0", + "0x0", + "0x2" + ] + }, + { + "pc": 4122, + "op": "AND", + "gas": 2989138, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x3e8", + "0x0", + "0x0", + "0x2", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 4123, + "op": "PUSH20", + "gas": 2989135, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x3e8", + "0x0", + "0x0", + "0x2" + ] + }, + { + "pc": 4144, + "op": "AND", + "gas": 2989132, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x3e8", + "0x0", + "0x0", + "0x2", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 4145, + "op": "DUP2", + "gas": 2989129, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x3e8", + "0x0", + "0x0", + "0x2" + ] + }, + { + "pc": 4146, + "op": "MSTORE", + "gas": 2989126, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x3e8", + "0x0", + "0x0", + "0x2", + "0x0" + ] + }, + { + "pc": 4147, + "op": "PUSH1", + "gas": 2989123, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x3e8", + "0x0", + "0x0" + ] + }, + { + "pc": 4149, + "op": "ADD", + "gas": 2989120, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x3e8", + "0x0", + "0x0", + "0x20" + ] + }, + { + "pc": 4150, + "op": "SWAP1", + "gas": 2989117, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x3e8", + "0x0", + "0x20" + ] + }, + { + "pc": 4151, + "op": "DUP2", + "gas": 2989114, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x3e8", + "0x20", + "0x0" + ] + }, + { + "pc": 4152, + "op": "MSTORE", + "gas": 2989111, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x3e8", + "0x20", + "0x0", + "0x20" + ] + }, + { + "pc": 4153, + "op": "PUSH1", + "gas": 2989108, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x3e8", + "0x20" + ] + }, + { + "pc": 4155, + "op": "ADD", + "gas": 2989105, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x3e8", + "0x20", + "0x20" + ] + }, + { + "pc": 4156, + "op": "PUSH1", + "gas": 2989102, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x3e8", + "0x40" + ] + }, + { + "pc": 4158, + "op": "SHA3", + "gas": 2989099, + "gasCost": 42, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x3e8", + "0x40", + "0x0" + ] + }, + { + "pc": 4159, + "op": "DUP2", + "gas": 2989057, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x3e8", + "0xabbb5caa7dda850e60932de0934eb1f9d0f59695050f761dc64e443e5030a569" + ] + }, + { + "pc": 4160, + "op": "SWAP1", + "gas": 2989054, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x3e8", + "0xabbb5caa7dda850e60932de0934eb1f9d0f59695050f761dc64e443e5030a569", + "0x3e8" + ] + }, + { + "pc": 4161, + "op": "SSTORE", + "gas": 2989051, + "gasCost": 20000, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x3e8", + "0x3e8", + "0xabbb5caa7dda850e60932de0934eb1f9d0f59695050f761dc64e443e5030a569" + ], + "storage": { + "0x0000000000000000000000000000000000000000000000000000000000000005": "0x000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd65710012", + "0x5a158573daab1c353835da34297290f5f813859e4bb52de641691b875502523f": "0x00000000000000000000000000000000000000000000000000038d7ea4c67448", + "0xabbb5caa7dda850e60932de0934eb1f9d0f59695050f761dc64e443e5030a569": "0x00000000000000000000000000000000000000000000000000000000000003e8" + }, + "extraData": { + "proofList": [ + { + "address": "0x34041eff1f32989bdaa95875e0f41afd6294dcd4", + "nonce": 1, + "balance": "0x0", + "codeHash": "0x9b5ea0519f6e20c36338989b6accc7cf3384eac2f0a083e82730bca177544409", + "storage": { + "key": "0xabbb5caa7dda850e60932de0934eb1f9d0f59695050f761dc64e443e5030a569", + "value": "0x0000000000000000000000000000000000000000000000000000000000000000" + } + } + ] + } + }, + { + "pc": 4162, + "op": "POP", + "gas": 2969051, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x3e8" + ] + }, + { + "pc": 4163, + "op": "DUP2", + "gas": 2969049, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8" + ] + }, + { + "pc": 4164, + "op": "PUSH20", + "gas": 2969046, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x2" + ] + }, + { + "pc": 4185, + "op": "AND", + "gas": 2969043, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x2", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 4186, + "op": "DUP4", + "gas": 2969040, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x2" + ] + }, + { + "pc": 4187, + "op": "PUSH20", + "gas": 2969037, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x2", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 4208, + "op": "AND", + "gas": 2969034, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x2", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 4209, + "op": "PUSH32", + "gas": 2969031, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x2", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 4242, + "op": "DUP4", + "gas": 2969028, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x2", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef" + ] + }, + { + "pc": 4243, + "op": "PUSH1", + "gas": 2969025, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x2", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x3e8" + ] + }, + { + "pc": 4245, + "op": "MLOAD", + "gas": 2969022, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x2", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x3e8", + "0x40" + ] + }, + { + "pc": 4246, + "op": "PUSH2", + "gas": 2969019, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x2", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x3e8", + "0xe0" + ] + }, + { + "pc": 4249, + "op": "SWAP2", + "gas": 2969016, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x2", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x3e8", + "0xe0", + "0x109f" + ] + }, + { + "pc": 4250, + "op": "SWAP1", + "gas": 2969013, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x2", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0xe0", + "0x3e8" + ] + }, + { + "pc": 4251, + "op": "PUSH2", + "gas": 2969010, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x2", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0" + ] + }, + { + "pc": 4254, + "op": "JUMP", + "gas": 2969007, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x2", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x1bb7" + ] + }, + { + "pc": 7095, + "op": "JUMPDEST", + "gas": 2968999, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x2", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0" + ] + }, + { + "pc": 7096, + "op": "PUSH1", + "gas": 2968998, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x2", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0" + ] + }, + { + "pc": 7098, + "op": "PUSH1", + "gas": 2968995, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x2", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x0" + ] + }, + { + "pc": 7100, + "op": "DUP3", + "gas": 2968992, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x2", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x0", + "0x20" + ] + }, + { + "pc": 7101, + "op": "ADD", + "gas": 2968989, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x2", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x0", + "0x20", + "0xe0" + ] + }, + { + "pc": 7102, + "op": "SWAP1", + "gas": 2968986, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x2", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x0", + "0x100" + ] + }, + { + "pc": 7103, + "op": "POP", + "gas": 2968983, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x2", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x100", + "0x0" + ] + }, + { + "pc": 7104, + "op": "PUSH2", + "gas": 2968981, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x2", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x100" + ] + }, + { + "pc": 7107, + "op": "PUSH1", + "gas": 2968978, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x2", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x100", + "0x1bcc" + ] + }, + { + "pc": 7109, + "op": "DUP4", + "gas": 2968975, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x2", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x100", + "0x1bcc", + "0x0" + ] + }, + { + "pc": 7110, + "op": "ADD", + "gas": 2968972, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x2", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x100", + "0x1bcc", + "0x0", + "0xe0" + ] + }, + { + "pc": 7111, + "op": "DUP5", + "gas": 2968969, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x2", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x100", + "0x1bcc", + "0xe0" + ] + }, + { + "pc": 7112, + "op": "PUSH2", + "gas": 2968966, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x2", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x100", + "0x1bcc", + "0xe0", + "0x3e8" + ] + }, + { + "pc": 7115, + "op": "JUMP", + "gas": 2968963, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x2", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x100", + "0x1bcc", + "0xe0", + "0x3e8", + "0x19c1" + ] + }, + { + "pc": 6593, + "op": "JUMPDEST", + "gas": 2968955, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x2", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x100", + "0x1bcc", + "0xe0", + "0x3e8" + ] + }, + { + "pc": 6594, + "op": "PUSH2", + "gas": 2968954, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x2", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x100", + "0x1bcc", + "0xe0", + "0x3e8" + ] + }, + { + "pc": 6597, + "op": "DUP2", + "gas": 2968951, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x2", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x100", + "0x1bcc", + "0xe0", + "0x3e8", + "0x19ca" + ] + }, + { + "pc": 6598, + "op": "PUSH2", + "gas": 2968948, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x2", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x100", + "0x1bcc", + "0xe0", + "0x3e8", + "0x19ca", + "0x3e8" + ] + }, + { + "pc": 6601, + "op": "JUMP", + "gas": 2968945, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x2", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x100", + "0x1bcc", + "0xe0", + "0x3e8", + "0x19ca", + "0x3e8", + "0x1cd1" + ] + }, + { + "pc": 7377, + "op": "JUMPDEST", + "gas": 2968937, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x2", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x100", + "0x1bcc", + "0xe0", + "0x3e8", + "0x19ca", + "0x3e8" + ] + }, + { + "pc": 7378, + "op": "PUSH1", + "gas": 2968936, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x2", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x100", + "0x1bcc", + "0xe0", + "0x3e8", + "0x19ca", + "0x3e8" + ] + }, + { + "pc": 7380, + "op": "DUP2", + "gas": 2968933, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x2", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x100", + "0x1bcc", + "0xe0", + "0x3e8", + "0x19ca", + "0x3e8", + "0x0" + ] + }, + { + "pc": 7381, + "op": "SWAP1", + "gas": 2968930, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x2", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x100", + "0x1bcc", + "0xe0", + "0x3e8", + "0x19ca", + "0x3e8", + "0x0", + "0x3e8" + ] + }, + { + "pc": 7382, + "op": "POP", + "gas": 2968927, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x2", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x100", + "0x1bcc", + "0xe0", + "0x3e8", + "0x19ca", + "0x3e8", + "0x3e8", + "0x0" + ] + }, + { + "pc": 7383, + "op": "SWAP2", + "gas": 2968925, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x2", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x100", + "0x1bcc", + "0xe0", + "0x3e8", + "0x19ca", + "0x3e8", + "0x3e8" + ] + }, + { + "pc": 7384, + "op": "SWAP1", + "gas": 2968922, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x2", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x100", + "0x1bcc", + "0xe0", + "0x3e8", + "0x3e8", + "0x3e8", + "0x19ca" + ] + }, + { + "pc": 7385, + "op": "POP", + "gas": 2968919, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x2", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x100", + "0x1bcc", + "0xe0", + "0x3e8", + "0x3e8", + "0x19ca", + "0x3e8" + ] + }, + { + "pc": 7386, + "op": "JUMP", + "gas": 2968917, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x2", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x100", + "0x1bcc", + "0xe0", + "0x3e8", + "0x3e8", + "0x19ca" + ] + }, + { + "pc": 6602, + "op": "JUMPDEST", + "gas": 2968909, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x2", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x100", + "0x1bcc", + "0xe0", + "0x3e8", + "0x3e8" + ] + }, + { + "pc": 6603, + "op": "DUP3", + "gas": 2968908, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x2", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x100", + "0x1bcc", + "0xe0", + "0x3e8", + "0x3e8" + ] + }, + { + "pc": 6604, + "op": "MSTORE", + "gas": 2968905, + "gasCost": 6, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x2", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x100", + "0x1bcc", + "0xe0", + "0x3e8", + "0x3e8", + "0xe0" + ] + }, + { + "pc": 6605, + "op": "POP", + "gas": 2968899, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x2", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x100", + "0x1bcc", + "0xe0", + "0x3e8" + ] + }, + { + "pc": 6606, + "op": "POP", + "gas": 2968897, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x2", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x100", + "0x1bcc", + "0xe0" + ] + }, + { + "pc": 6607, + "op": "JUMP", + "gas": 2968895, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x2", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x100", + "0x1bcc" + ] + }, + { + "pc": 7116, + "op": "JUMPDEST", + "gas": 2968887, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x2", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x100" + ] + }, + { + "pc": 7117, + "op": "SWAP3", + "gas": 2968886, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x2", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x100" + ] + }, + { + "pc": 7118, + "op": "SWAP2", + "gas": 2968883, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x2", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x100", + "0x3e8", + "0xe0", + "0x109f" + ] + }, + { + "pc": 7119, + "op": "POP", + "gas": 2968880, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x2", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x100", + "0x109f", + "0xe0", + "0x3e8" + ] + }, + { + "pc": 7120, + "op": "POP", + "gas": 2968878, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x2", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x100", + "0x109f", + "0xe0" + ] + }, + { + "pc": 7121, + "op": "JUMP", + "gas": 2968876, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x2", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x100", + "0x109f" + ] + }, + { + "pc": 4255, + "op": "JUMPDEST", + "gas": 2968868, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x2", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x100" + ] + }, + { + "pc": 4256, + "op": "PUSH1", + "gas": 2968867, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x2", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x100" + ] + }, + { + "pc": 4258, + "op": "MLOAD", + "gas": 2968864, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x2", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x100", + "0x40" + ] + }, + { + "pc": 4259, + "op": "DUP1", + "gas": 2968861, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x2", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x100", + "0xe0" + ] + }, + { + "pc": 4260, + "op": "SWAP2", + "gas": 2968858, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x2", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x100", + "0xe0", + "0xe0" + ] + }, + { + "pc": 4261, + "op": "SUB", + "gas": 2968855, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x2", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0xe0", + "0xe0", + "0x100" + ] + }, + { + "pc": 4262, + "op": "SWAP1", + "gas": 2968852, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x2", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0xe0", + "0x20" + ] + }, + { + "pc": 4263, + "op": "LOG3", + "gas": 2968849, + "gasCost": 1756, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8", + "0x2", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x20", + "0xe0" + ] + }, + { + "pc": 4264, + "op": "POP", + "gas": 2967093, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2", + "0x3e8" + ] + }, + { + "pc": 4265, + "op": "POP", + "gas": 2967091, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x2" + ] + }, + { + "pc": 4266, + "op": "POP", + "gas": 2967089, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 4267, + "op": "JUMP", + "gas": 2967087, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0xbb3" + ] + }, + { + "pc": 2995, + "op": "JUMPDEST", + "gas": 2967079, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0" + ] + }, + { + "pc": 2996, + "op": "PUSH1", + "gas": 2967078, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0" + ] + }, + { + "pc": 2998, + "op": "SWAP1", + "gas": 2967075, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x0", + "0x1" + ] + }, + { + "pc": 2999, + "op": "POP", + "gas": 2967072, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x1", + "0x0" + ] + }, + { + "pc": 3000, + "op": "SWAP3", + "gas": 2967070, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x2", + "0x3e8", + "0x1" + ] + }, + { + "pc": 3001, + "op": "SWAP2", + "gas": 2967067, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x1", + "0x2", + "0x3e8", + "0x318" + ] + }, + { + "pc": 3002, + "op": "POP", + "gas": 2967064, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x1", + "0x318", + "0x3e8", + "0x2" + ] + }, + { + "pc": 3003, + "op": "POP", + "gas": 2967062, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x1", + "0x318", + "0x3e8" + ] + }, + { + "pc": 3004, + "op": "JUMP", + "gas": 2967060, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x1", + "0x318" + ] + }, + { + "pc": 792, + "op": "JUMPDEST", + "gas": 2967052, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x1" + ] + }, + { + "pc": 793, + "op": "PUSH1", + "gas": 2967051, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x1" + ] + }, + { + "pc": 795, + "op": "MLOAD", + "gas": 2967048, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x1", + "0x40" + ] + }, + { + "pc": 796, + "op": "PUSH2", + "gas": 2967045, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x1", + "0xe0" + ] + }, + { + "pc": 799, + "op": "SWAP2", + "gas": 2967042, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x1", + "0xe0", + "0x325" + ] + }, + { + "pc": 800, + "op": "SWAP1", + "gas": 2967039, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0xe0", + "0x1" + ] + }, + { + "pc": 801, + "op": "PUSH2", + "gas": 2967036, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0" + ] + }, + { + "pc": 804, + "op": "JUMP", + "gas": 2967033, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x19fa" + ] + }, + { + "pc": 6650, + "op": "JUMPDEST", + "gas": 2967025, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0" + ] + }, + { + "pc": 6651, + "op": "PUSH1", + "gas": 2967024, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0" + ] + }, + { + "pc": 6653, + "op": "PUSH1", + "gas": 2967021, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x0" + ] + }, + { + "pc": 6655, + "op": "DUP3", + "gas": 2967018, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x0", + "0x20" + ] + }, + { + "pc": 6656, + "op": "ADD", + "gas": 2967015, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x0", + "0x20", + "0xe0" + ] + }, + { + "pc": 6657, + "op": "SWAP1", + "gas": 2967012, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x0", + "0x100" + ] + }, + { + "pc": 6658, + "op": "POP", + "gas": 2967009, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x100", + "0x0" + ] + }, + { + "pc": 6659, + "op": "PUSH2", + "gas": 2967007, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x100" + ] + }, + { + "pc": 6662, + "op": "PUSH1", + "gas": 2967004, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x100", + "0x1a0f" + ] + }, + { + "pc": 6664, + "op": "DUP4", + "gas": 2967001, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x100", + "0x1a0f", + "0x0" + ] + }, + { + "pc": 6665, + "op": "ADD", + "gas": 2966998, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x100", + "0x1a0f", + "0x0", + "0xe0" + ] + }, + { + "pc": 6666, + "op": "DUP5", + "gas": 2966995, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x100", + "0x1a0f", + "0xe0" + ] + }, + { + "pc": 6667, + "op": "PUSH2", + "gas": 2966992, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x100", + "0x1a0f", + "0xe0", + "0x1" + ] + }, + { + "pc": 6670, + "op": "JUMP", + "gas": 2966989, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x100", + "0x1a0f", + "0xe0", + "0x1", + "0x17d5" + ] + }, + { + "pc": 6101, + "op": "JUMPDEST", + "gas": 2966981, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x100", + "0x1a0f", + "0xe0", + "0x1" + ] + }, + { + "pc": 6102, + "op": "PUSH2", + "gas": 2966980, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x100", + "0x1a0f", + "0xe0", + "0x1" + ] + }, + { + "pc": 6105, + "op": "DUP2", + "gas": 2966977, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x100", + "0x1a0f", + "0xe0", + "0x1", + "0x17de" + ] + }, + { + "pc": 6106, + "op": "PUSH2", + "gas": 2966974, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x100", + "0x1a0f", + "0xe0", + "0x1", + "0x17de", + "0x1" + ] + }, + { + "pc": 6109, + "op": "JUMP", + "gas": 2966971, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x100", + "0x1a0f", + "0xe0", + "0x1", + "0x17de", + "0x1", + "0x1ca5" + ] + }, + { + "pc": 7333, + "op": "JUMPDEST", + "gas": 2966963, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x100", + "0x1a0f", + "0xe0", + "0x1", + "0x17de", + "0x1" + ] + }, + { + "pc": 7334, + "op": "PUSH1", + "gas": 2966962, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x100", + "0x1a0f", + "0xe0", + "0x1", + "0x17de", + "0x1" + ] + }, + { + "pc": 7336, + "op": "DUP2", + "gas": 2966959, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x100", + "0x1a0f", + "0xe0", + "0x1", + "0x17de", + "0x1", + "0x0" + ] + }, + { + "pc": 7337, + "op": "ISZERO", + "gas": 2966956, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x100", + "0x1a0f", + "0xe0", + "0x1", + "0x17de", + "0x1", + "0x0", + "0x1" + ] + }, + { + "pc": 7338, + "op": "ISZERO", + "gas": 2966953, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x100", + "0x1a0f", + "0xe0", + "0x1", + "0x17de", + "0x1", + "0x0", + "0x0" + ] + }, + { + "pc": 7339, + "op": "SWAP1", + "gas": 2966950, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x100", + "0x1a0f", + "0xe0", + "0x1", + "0x17de", + "0x1", + "0x0", + "0x1" + ] + }, + { + "pc": 7340, + "op": "POP", + "gas": 2966947, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x100", + "0x1a0f", + "0xe0", + "0x1", + "0x17de", + "0x1", + "0x1", + "0x0" + ] + }, + { + "pc": 7341, + "op": "SWAP2", + "gas": 2966945, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x100", + "0x1a0f", + "0xe0", + "0x1", + "0x17de", + "0x1", + "0x1" + ] + }, + { + "pc": 7342, + "op": "SWAP1", + "gas": 2966942, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x100", + "0x1a0f", + "0xe0", + "0x1", + "0x1", + "0x1", + "0x17de" + ] + }, + { + "pc": 7343, + "op": "POP", + "gas": 2966939, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x100", + "0x1a0f", + "0xe0", + "0x1", + "0x1", + "0x17de", + "0x1" + ] + }, + { + "pc": 7344, + "op": "JUMP", + "gas": 2966937, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x100", + "0x1a0f", + "0xe0", + "0x1", + "0x1", + "0x17de" + ] + }, + { + "pc": 6110, + "op": "JUMPDEST", + "gas": 2966929, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x100", + "0x1a0f", + "0xe0", + "0x1", + "0x1" + ] + }, + { + "pc": 6111, + "op": "DUP3", + "gas": 2966928, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x100", + "0x1a0f", + "0xe0", + "0x1", + "0x1" + ] + }, + { + "pc": 6112, + "op": "MSTORE", + "gas": 2966925, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x100", + "0x1a0f", + "0xe0", + "0x1", + "0x1", + "0xe0" + ] + }, + { + "pc": 6113, + "op": "POP", + "gas": 2966922, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x100", + "0x1a0f", + "0xe0", + "0x1" + ] + }, + { + "pc": 6114, + "op": "POP", + "gas": 2966920, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x100", + "0x1a0f", + "0xe0" + ] + }, + { + "pc": 6115, + "op": "JUMP", + "gas": 2966918, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x100", + "0x1a0f" + ] + }, + { + "pc": 6671, + "op": "JUMPDEST", + "gas": 2966910, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x100" + ] + }, + { + "pc": 6672, + "op": "SWAP3", + "gas": 2966909, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x100" + ] + }, + { + "pc": 6673, + "op": "SWAP2", + "gas": 2966906, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x100", + "0x1", + "0xe0", + "0x325" + ] + }, + { + "pc": 6674, + "op": "POP", + "gas": 2966903, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x100", + "0x325", + "0xe0", + "0x1" + ] + }, + { + "pc": 6675, + "op": "POP", + "gas": 2966901, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x100", + "0x325", + "0xe0" + ] + }, + { + "pc": 6676, + "op": "JUMP", + "gas": 2966899, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x100", + "0x325" + ] + }, + { + "pc": 805, + "op": "JUMPDEST", + "gas": 2966891, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x100" + ] + }, + { + "pc": 806, + "op": "PUSH1", + "gas": 2966890, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x100" + ] + }, + { + "pc": 808, + "op": "MLOAD", + "gas": 2966887, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x100", + "0x40" + ] + }, + { + "pc": 809, + "op": "DUP1", + "gas": 2966884, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x100", + "0xe0" + ] + }, + { + "pc": 810, + "op": "SWAP2", + "gas": 2966881, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x100", + "0xe0", + "0xe0" + ] + }, + { + "pc": 811, + "op": "SUB", + "gas": 2966878, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0xe0", + "0xe0", + "0x100" + ] + }, + { + "pc": 812, + "op": "SWAP1", + "gas": 2966875, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0xe0", + "0x20" + ] + }, + { + "pc": 813, + "op": "RETURN", + "gas": 2966872, + "gasCost": 0, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x20", + "0xe0" + ] + } + ] + }, + { + "gas": 54848, + "failed": false, + "returnValue": "0000000000000000000000000000000000000000000000000000000000000001", + "from": { + "address": "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "nonce": 78, + "balance": "0x56bc75e2d630ffffffffffffffffffffffffffffffffffff4b255c813f18e8", + "codeHash": "0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470" + }, + "to": { + "address": "0x34041eff1f32989bdaa95875e0f41afd6294dcd4", + "nonce": 1, + "balance": "0x0", + "codeHash": "0x9b5ea0519f6e20c36338989b6accc7cf3384eac2f0a083e82730bca177544409" + }, + "accountAfter": [ + { + "address": "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "nonce": 79, + "balance": "0x56bc75e2d630ffffffffffffffffffffffffffffffffffff4b254eaf9829a8", + "codeHash": "0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470" + }, + { + "address": "0x34041eff1f32989bdaa95875e0f41afd6294dcd4", + "nonce": 1, + "balance": "0x0", + "codeHash": "0x9b5ea0519f6e20c36338989b6accc7cf3384eac2f0a083e82730bca177544409" + } + ], + "codeHash": "0x9b5ea0519f6e20c36338989b6accc7cf3384eac2f0a083e82730bca177544409", + "byteCode": "0x608060405234801561001057600080fd5b506004361061010b5760003560e01c80635c975abb116100a257806395d89b411161007157806395d89b41146102945780639dc29fac146102b2578063a457c2d7146102ce578063a9059cbb146102fe578063dd62ed3e1461032e5761010b565b80635c975abb1461022057806370a082311461023e5780638456cb591461026e5780638e50817a146102785761010b565b8063313ce567116100de578063313ce567146101ac57806339509351146101ca5780633f4ba83a146101fa57806340c10f19146102045761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015e57806323b872dd1461017c575b600080fd5b61011861035e565b6040516101259190611a15565b60405180910390f35b6101486004803603810190610143919061178a565b6103f0565b60405161015591906119fa565b60405180910390f35b61016661040e565b6040516101739190611bb7565b60405180910390f35b6101966004803603810190610191919061173b565b610418565b6040516101a391906119fa565b60405180910390f35b6101b46104f1565b6040516101c19190611bd2565b60405180910390f35b6101e460048036038101906101df919061178a565b610508565b6040516101f191906119fa565b60405180910390f35b6102026105bb565b005b61021e6004803603810190610219919061178a565b610655565b005b610228610743565b60405161023591906119fa565b60405180910390f35b610258600480360381019061025391906116d6565b61075a565b6040516102659190611bb7565b60405180910390f35b6102766107a2565b005b610292600480360381019061028d91906116ff565b61083c565b005b61029c610952565b6040516102a99190611a15565b60405180910390f35b6102cc60048036038101906102c7919061178a565b6109e4565b005b6102e860048036038101906102e3919061178a565b610ad2565b6040516102f591906119fa565b60405180910390f35b6103186004803603810190610313919061178a565b610b9f565b60405161032591906119fa565b60405180910390f35b610348600480360381019061034391906116ff565b610bbd565b6040516103559190611bb7565b60405180910390f35b60606003805461036d90611d51565b80601f016020809104026020016040519081016040528092919081815260200182805461039990611d51565b80156103e65780601f106103bb576101008083540402835291602001916103e6565b820191906000526020600020905b8154815290600101906020018083116103c957829003601f168201915b5050505050905090565b60006104046103fd610c44565b8484610c4c565b6001905092915050565b6000600254905090565b6000610425848484610e17565b6104e684610431610c44565b6104e18560405180606001604052806028815260200161213960289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610497610c44565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110ac9092919063ffffffff16565b610c4c565b600190509392505050565b6000600560009054906101000a900460ff16905090565b60006105b1610515610c44565b846105ac8560016000610526610c44565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461111090919063ffffffff16565b610c4c565b6001905092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461064b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161064290611ab7565b60405180910390fd5b61065361116e565b565b600560019054906101000a900460ff16156106a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161069c90611ad7565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610735576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161072c90611ab7565b60405180910390fd5b61073f8282611218565b5050565b6000600560019054906101000a900460ff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610832576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082990611ab7565b60405180910390fd5b61083a6113ac565b565b600560029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146108cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c390611b37565b60405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b60606004805461096190611d51565b80601f016020809104026020016040519081016040528092919081815260200182805461098d90611d51565b80156109da5780601f106109af576101008083540402835291602001916109da565b820191906000526020600020905b8154815290600101906020018083116109bd57829003601f168201915b5050505050905090565b600560019054906101000a900460ff1615610a34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2b90611ad7565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610ac4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abb90611ab7565b60405180910390fd5b610ace8282611457565b5050565b6000610b95610adf610c44565b84610b90856040518060600160405280602581526020016121616025913960016000610b09610c44565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110ac9092919063ffffffff16565b610c4c565b6001905092915050565b6000610bb3610bac610c44565b8484610e17565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb390611b57565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2390611a77565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e0a9190611bb7565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7e90611b17565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ef7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eee90611a37565b60405180910390fd5b610f02838383611605565b610f6d81604051806060016040528060268152602001612113602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110ac9092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611000816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461111090919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161109f9190611bb7565b60405180910390a3505050565b60008383111582906110f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110eb9190611a15565b60405180910390fd5b50600083856111039190611c5f565b9050809150509392505050565b600080828461111f9190611c09565b905083811015611164576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115b90611a97565b60405180910390fd5b8091505092915050565b600560019054906101000a900460ff166111bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b490611a57565b60405180910390fd5b6000600560016101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611201610c44565b60405161120e91906119df565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611288576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127f90611b77565b60405180910390fd5b61129460008383611605565b6112a98160025461111090919063ffffffff16565b600281905550611300816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461111090919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516113a09190611bb7565b60405180910390a35050565b600560019054906101000a900460ff16156113fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f390611ad7565b60405180910390fd5b6001600560016101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611440610c44565b60405161144d91906119df565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114be90611af7565b60405180910390fd5b6114d382600083611605565b61153e816040518060600160405280602281526020016120f1602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110ac9092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506115958160025461165d90919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516115f99190611bb7565b60405180910390a35050565b6116108383836116a7565b611618610743565b15611658576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164f90611b97565b60405180910390fd5b505050565b600061169f83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506110ac565b905092915050565b505050565b6000813590506116bb816120c2565b92915050565b6000813590506116d0816120d9565b92915050565b6000602082840312156116e857600080fd5b60006116f6848285016116ac565b91505092915050565b6000806040838503121561171257600080fd5b6000611720858286016116ac565b9250506020611731858286016116ac565b9150509250929050565b60008060006060848603121561175057600080fd5b600061175e868287016116ac565b935050602061176f868287016116ac565b9250506040611780868287016116c1565b9150509250925092565b6000806040838503121561179d57600080fd5b60006117ab858286016116ac565b92505060206117bc858286016116c1565b9150509250929050565b6117cf81611ce8565b82525050565b6117de81611ca5565b82525050565b60006117ef82611bed565b6117f98185611bf8565b9350611809818560208601611d1e565b61181281611de1565b840191505092915050565b600061182a602383611bf8565b915061183582611df2565b604082019050919050565b600061184d601483611bf8565b915061185882611e41565b602082019050919050565b6000611870602283611bf8565b915061187b82611e6a565b604082019050919050565b6000611893601b83611bf8565b915061189e82611eb9565b602082019050919050565b60006118b6600b83611bf8565b91506118c182611ee2565b602082019050919050565b60006118d9601083611bf8565b91506118e482611f0b565b602082019050919050565b60006118fc602183611bf8565b915061190782611f34565b604082019050919050565b600061191f602583611bf8565b915061192a82611f83565b604082019050919050565b6000611942600c83611bf8565b915061194d82611fd2565b602082019050919050565b6000611965602483611bf8565b915061197082611ffb565b604082019050919050565b6000611988601f83611bf8565b91506119938261204a565b602082019050919050565b60006119ab602a83611bf8565b91506119b682612073565b604082019050919050565b6119ca81611cd1565b82525050565b6119d981611cdb565b82525050565b60006020820190506119f460008301846117c6565b92915050565b6000602082019050611a0f60008301846117d5565b92915050565b60006020820190508181036000830152611a2f81846117e4565b905092915050565b60006020820190508181036000830152611a508161181d565b9050919050565b60006020820190508181036000830152611a7081611840565b9050919050565b60006020820190508181036000830152611a9081611863565b9050919050565b60006020820190508181036000830152611ab081611886565b9050919050565b60006020820190508181036000830152611ad0816118a9565b9050919050565b60006020820190508181036000830152611af0816118cc565b9050919050565b60006020820190508181036000830152611b10816118ef565b9050919050565b60006020820190508181036000830152611b3081611912565b9050919050565b60006020820190508181036000830152611b5081611935565b9050919050565b60006020820190508181036000830152611b7081611958565b9050919050565b60006020820190508181036000830152611b908161197b565b9050919050565b60006020820190508181036000830152611bb08161199e565b9050919050565b6000602082019050611bcc60008301846119c1565b92915050565b6000602082019050611be760008301846119d0565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611c1482611cd1565b9150611c1f83611cd1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611c5457611c53611d83565b5b828201905092915050565b6000611c6a82611cd1565b9150611c7583611cd1565b925082821015611c8857611c87611d83565b5b828203905092915050565b6000611c9e82611cb1565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b6000611cf382611cfa565b9050919050565b6000611d0582611d0c565b9050919050565b6000611d1782611cb1565b9050919050565b60005b83811015611d3c578082015181840152602081019050611d21565b83811115611d4b576000848401525b50505050565b60006002820490506001821680611d6957607f821691505b60208210811415611d7d57611d7c611db2565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b7f6e6f7420616c6c6f776564000000000000000000000000000000000000000000600082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f6f6e6c7920466163746f72790000000000000000000000000000000000000000600082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b7f45524332305061757361626c653a20746f6b656e207472616e7366657220776860008201527f696c652070617573656400000000000000000000000000000000000000000000602082015250565b6120cb81611c93565b81146120d657600080fd5b50565b6120e281611cd1565b81146120ed57600080fd5b5056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122050720249c11bf2bf6da8b1770af05168068be0eee81154cac03b74b0ab3b6a3f64736f6c63430008040033", + "structLogs": [ + { + "pc": 0, + "op": "PUSH1", + "gas": 3000364, + "gasCost": 3, + "depth": 1 + }, + { + "pc": 2, + "op": "PUSH1", + "gas": 3000361, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80" + ] + }, + { + "pc": 4, + "op": "MSTORE", + "gas": 3000358, + "gasCost": 12, + "depth": 1, + "stack": [ + "0x80", + "0x40" + ] + }, + { + "pc": 5, + "op": "CALLVALUE", + "gas": 3000346, + "gasCost": 2, + "depth": 1 + }, + { + "pc": 6, + "op": "DUP1", + "gas": 3000344, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 7, + "op": "ISZERO", + "gas": 3000341, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0", + "0x0" + ] + }, + { + "pc": 8, + "op": "PUSH2", + "gas": 3000338, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0", + "0x1" + ] + }, + { + "pc": 11, + "op": "JUMPI", + "gas": 3000335, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x0", + "0x1", + "0x10" + ] + }, + { + "pc": 16, + "op": "JUMPDEST", + "gas": 3000325, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 17, + "op": "POP", + "gas": 3000324, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 18, + "op": "PUSH1", + "gas": 3000322, + "gasCost": 3, + "depth": 1 + }, + { + "pc": 20, + "op": "CALLDATASIZE", + "gas": 3000319, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x4" + ] + }, + { + "pc": 21, + "op": "LT", + "gas": 3000317, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4", + "0x44" + ] + }, + { + "pc": 22, + "op": "PUSH2", + "gas": 3000314, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 25, + "op": "JUMPI", + "gas": 3000311, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x0", + "0x10b" + ] + }, + { + "pc": 26, + "op": "PUSH1", + "gas": 3000301, + "gasCost": 3, + "depth": 1 + }, + { + "pc": 28, + "op": "CALLDATALOAD", + "gas": 3000298, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 29, + "op": "PUSH1", + "gas": 3000295, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb00000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 31, + "op": "SHR", + "gas": 3000292, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb00000000000000000000000000000000000000000000000000000000", + "0xe0" + ] + }, + { + "pc": 32, + "op": "DUP1", + "gas": 3000289, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb" + ] + }, + { + "pc": 33, + "op": "PUSH4", + "gas": 3000286, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0xa9059cbb" + ] + }, + { + "pc": 38, + "op": "GT", + "gas": 3000283, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0xa9059cbb", + "0x5c975abb" + ] + }, + { + "pc": 39, + "op": "PUSH2", + "gas": 3000280, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x0" + ] + }, + { + "pc": 42, + "op": "JUMPI", + "gas": 3000277, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x0", + "0xa2" + ] + }, + { + "pc": 43, + "op": "DUP1", + "gas": 3000267, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb" + ] + }, + { + "pc": 44, + "op": "PUSH4", + "gas": 3000264, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0xa9059cbb" + ] + }, + { + "pc": 49, + "op": "GT", + "gas": 3000261, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0xa9059cbb", + "0x95d89b41" + ] + }, + { + "pc": 50, + "op": "PUSH2", + "gas": 3000258, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x0" + ] + }, + { + "pc": 53, + "op": "JUMPI", + "gas": 3000255, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x0", + "0x71" + ] + }, + { + "pc": 54, + "op": "DUP1", + "gas": 3000245, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb" + ] + }, + { + "pc": 55, + "op": "PUSH4", + "gas": 3000242, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0xa9059cbb" + ] + }, + { + "pc": 60, + "op": "EQ", + "gas": 3000239, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0xa9059cbb", + "0x95d89b41" + ] + }, + { + "pc": 61, + "op": "PUSH2", + "gas": 3000236, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x0" + ] + }, + { + "pc": 64, + "op": "JUMPI", + "gas": 3000233, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x0", + "0x294" + ] + }, + { + "pc": 65, + "op": "DUP1", + "gas": 3000223, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb" + ] + }, + { + "pc": 66, + "op": "PUSH4", + "gas": 3000220, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0xa9059cbb" + ] + }, + { + "pc": 71, + "op": "EQ", + "gas": 3000217, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0xa9059cbb", + "0x9dc29fac" + ] + }, + { + "pc": 72, + "op": "PUSH2", + "gas": 3000214, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x0" + ] + }, + { + "pc": 75, + "op": "JUMPI", + "gas": 3000211, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x0", + "0x2b2" + ] + }, + { + "pc": 76, + "op": "DUP1", + "gas": 3000201, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb" + ] + }, + { + "pc": 77, + "op": "PUSH4", + "gas": 3000198, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0xa9059cbb" + ] + }, + { + "pc": 82, + "op": "EQ", + "gas": 3000195, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0xa9059cbb", + "0xa457c2d7" + ] + }, + { + "pc": 83, + "op": "PUSH2", + "gas": 3000192, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x0" + ] + }, + { + "pc": 86, + "op": "JUMPI", + "gas": 3000189, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x0", + "0x2ce" + ] + }, + { + "pc": 87, + "op": "DUP1", + "gas": 3000179, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb" + ] + }, + { + "pc": 88, + "op": "PUSH4", + "gas": 3000176, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0xa9059cbb" + ] + }, + { + "pc": 93, + "op": "EQ", + "gas": 3000173, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0xa9059cbb", + "0xa9059cbb" + ] + }, + { + "pc": 94, + "op": "PUSH2", + "gas": 3000170, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x1" + ] + }, + { + "pc": 97, + "op": "JUMPI", + "gas": 3000167, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x1", + "0x2fe" + ] + }, + { + "pc": 766, + "op": "JUMPDEST", + "gas": 3000157, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb" + ] + }, + { + "pc": 767, + "op": "PUSH2", + "gas": 3000156, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb" + ] + }, + { + "pc": 770, + "op": "PUSH1", + "gas": 3000153, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318" + ] + }, + { + "pc": 772, + "op": "DUP1", + "gas": 3000150, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4" + ] + }, + { + "pc": 773, + "op": "CALLDATASIZE", + "gas": 3000147, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x4" + ] + }, + { + "pc": 774, + "op": "SUB", + "gas": 3000145, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x4", + "0x44" + ] + }, + { + "pc": 775, + "op": "DUP2", + "gas": 3000142, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x40" + ] + }, + { + "pc": 776, + "op": "ADD", + "gas": 3000139, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x40", + "0x4" + ] + }, + { + "pc": 777, + "op": "SWAP1", + "gas": 3000136, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x44" + ] + }, + { + "pc": 778, + "op": "PUSH2", + "gas": 3000133, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x44", + "0x4" + ] + }, + { + "pc": 781, + "op": "SWAP2", + "gas": 3000130, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x44", + "0x4", + "0x313" + ] + }, + { + "pc": 782, + "op": "SWAP1", + "gas": 3000127, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x4", + "0x44" + ] + }, + { + "pc": 783, + "op": "PUSH2", + "gas": 3000124, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4" + ] + }, + { + "pc": 786, + "op": "JUMP", + "gas": 3000121, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x178a" + ] + }, + { + "pc": 6026, + "op": "JUMPDEST", + "gas": 3000113, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4" + ] + }, + { + "pc": 6027, + "op": "PUSH1", + "gas": 3000112, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4" + ] + }, + { + "pc": 6029, + "op": "DUP1", + "gas": 3000109, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0" + ] + }, + { + "pc": 6030, + "op": "PUSH1", + "gas": 3000106, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0" + ] + }, + { + "pc": 6032, + "op": "DUP4", + "gas": 3000103, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x40" + ] + }, + { + "pc": 6033, + "op": "DUP6", + "gas": 3000100, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x40", + "0x4" + ] + }, + { + "pc": 6034, + "op": "SUB", + "gas": 3000097, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x40", + "0x4", + "0x44" + ] + }, + { + "pc": 6035, + "op": "SLT", + "gas": 3000094, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x40", + "0x40" + ] + }, + { + "pc": 6036, + "op": "ISZERO", + "gas": 3000091, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 6037, + "op": "PUSH2", + "gas": 3000088, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x1" + ] + }, + { + "pc": 6040, + "op": "JUMPI", + "gas": 3000085, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x1", + "0x179d" + ] + }, + { + "pc": 6045, + "op": "JUMPDEST", + "gas": 3000075, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0" + ] + }, + { + "pc": 6046, + "op": "PUSH1", + "gas": 3000074, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0" + ] + }, + { + "pc": 6048, + "op": "PUSH2", + "gas": 3000071, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 6051, + "op": "DUP6", + "gas": 3000068, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab" + ] + }, + { + "pc": 6052, + "op": "DUP3", + "gas": 3000065, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44" + ] + }, + { + "pc": 6053, + "op": "DUP7", + "gas": 3000062, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x0" + ] + }, + { + "pc": 6054, + "op": "ADD", + "gas": 3000059, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x0", + "0x4" + ] + }, + { + "pc": 6055, + "op": "PUSH2", + "gas": 3000056, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4" + ] + }, + { + "pc": 6058, + "op": "JUMP", + "gas": 3000053, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x16ac" + ] + }, + { + "pc": 5804, + "op": "JUMPDEST", + "gas": 3000045, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4" + ] + }, + { + "pc": 5805, + "op": "PUSH1", + "gas": 3000044, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4" + ] + }, + { + "pc": 5807, + "op": "DUP2", + "gas": 3000041, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x0" + ] + }, + { + "pc": 5808, + "op": "CALLDATALOAD", + "gas": 3000038, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x0", + "0x4" + ] + }, + { + "pc": 5809, + "op": "SWAP1", + "gas": 3000035, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x0", + "0x3" + ] + }, + { + "pc": 5810, + "op": "POP", + "gas": 3000032, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x3", + "0x0" + ] + }, + { + "pc": 5811, + "op": "PUSH2", + "gas": 3000030, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x3" + ] + }, + { + "pc": 5814, + "op": "DUP2", + "gas": 3000027, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x3", + "0x16bb" + ] + }, + { + "pc": 5815, + "op": "PUSH2", + "gas": 3000024, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x3", + "0x16bb", + "0x3" + ] + }, + { + "pc": 5818, + "op": "JUMP", + "gas": 3000021, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x3", + "0x16bb", + "0x3", + "0x20c2" + ] + }, + { + "pc": 8386, + "op": "JUMPDEST", + "gas": 3000013, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x3", + "0x16bb", + "0x3" + ] + }, + { + "pc": 8387, + "op": "PUSH2", + "gas": 3000012, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x3", + "0x16bb", + "0x3" + ] + }, + { + "pc": 8390, + "op": "DUP2", + "gas": 3000009, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x3", + "0x16bb", + "0x3", + "0x20cb" + ] + }, + { + "pc": 8391, + "op": "PUSH2", + "gas": 3000006, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x3", + "0x16bb", + "0x3", + "0x20cb", + "0x3" + ] + }, + { + "pc": 8394, + "op": "JUMP", + "gas": 3000003, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x3", + "0x16bb", + "0x3", + "0x20cb", + "0x3", + "0x1c93" + ] + }, + { + "pc": 7315, + "op": "JUMPDEST", + "gas": 2999995, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x3", + "0x16bb", + "0x3", + "0x20cb", + "0x3" + ] + }, + { + "pc": 7316, + "op": "PUSH1", + "gas": 2999994, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x3", + "0x16bb", + "0x3", + "0x20cb", + "0x3" + ] + }, + { + "pc": 7318, + "op": "PUSH2", + "gas": 2999991, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x3", + "0x16bb", + "0x3", + "0x20cb", + "0x3", + "0x0" + ] + }, + { + "pc": 7321, + "op": "DUP3", + "gas": 2999988, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x3", + "0x16bb", + "0x3", + "0x20cb", + "0x3", + "0x0", + "0x1c9e" + ] + }, + { + "pc": 7322, + "op": "PUSH2", + "gas": 2999985, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x3", + "0x16bb", + "0x3", + "0x20cb", + "0x3", + "0x0", + "0x1c9e", + "0x3" + ] + }, + { + "pc": 7325, + "op": "JUMP", + "gas": 2999982, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x3", + "0x16bb", + "0x3", + "0x20cb", + "0x3", + "0x0", + "0x1c9e", + "0x3", + "0x1cb1" + ] + }, + { + "pc": 7345, + "op": "JUMPDEST", + "gas": 2999974, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x3", + "0x16bb", + "0x3", + "0x20cb", + "0x3", + "0x0", + "0x1c9e", + "0x3" + ] + }, + { + "pc": 7346, + "op": "PUSH1", + "gas": 2999973, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x3", + "0x16bb", + "0x3", + "0x20cb", + "0x3", + "0x0", + "0x1c9e", + "0x3" + ] + }, + { + "pc": 7348, + "op": "PUSH20", + "gas": 2999970, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x3", + "0x16bb", + "0x3", + "0x20cb", + "0x3", + "0x0", + "0x1c9e", + "0x3", + "0x0" + ] + }, + { + "pc": 7369, + "op": "DUP3", + "gas": 2999967, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x3", + "0x16bb", + "0x3", + "0x20cb", + "0x3", + "0x0", + "0x1c9e", + "0x3", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 7370, + "op": "AND", + "gas": 2999964, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x3", + "0x16bb", + "0x3", + "0x20cb", + "0x3", + "0x0", + "0x1c9e", + "0x3", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x3" + ] + }, + { + "pc": 7371, + "op": "SWAP1", + "gas": 2999961, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x3", + "0x16bb", + "0x3", + "0x20cb", + "0x3", + "0x0", + "0x1c9e", + "0x3", + "0x0", + "0x3" + ] + }, + { + "pc": 7372, + "op": "POP", + "gas": 2999958, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x3", + "0x16bb", + "0x3", + "0x20cb", + "0x3", + "0x0", + "0x1c9e", + "0x3", + "0x3", + "0x0" + ] + }, + { + "pc": 7373, + "op": "SWAP2", + "gas": 2999956, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x3", + "0x16bb", + "0x3", + "0x20cb", + "0x3", + "0x0", + "0x1c9e", + "0x3", + "0x3" + ] + }, + { + "pc": 7374, + "op": "SWAP1", + "gas": 2999953, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x3", + "0x16bb", + "0x3", + "0x20cb", + "0x3", + "0x0", + "0x3", + "0x3", + "0x1c9e" + ] + }, + { + "pc": 7375, + "op": "POP", + "gas": 2999950, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x3", + "0x16bb", + "0x3", + "0x20cb", + "0x3", + "0x0", + "0x3", + "0x1c9e", + "0x3" + ] + }, + { + "pc": 7376, + "op": "JUMP", + "gas": 2999948, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x3", + "0x16bb", + "0x3", + "0x20cb", + "0x3", + "0x0", + "0x3", + "0x1c9e" + ] + }, + { + "pc": 7326, + "op": "JUMPDEST", + "gas": 2999940, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x3", + "0x16bb", + "0x3", + "0x20cb", + "0x3", + "0x0", + "0x3" + ] + }, + { + "pc": 7327, + "op": "SWAP1", + "gas": 2999939, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x3", + "0x16bb", + "0x3", + "0x20cb", + "0x3", + "0x0", + "0x3" + ] + }, + { + "pc": 7328, + "op": "POP", + "gas": 2999936, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x3", + "0x16bb", + "0x3", + "0x20cb", + "0x3", + "0x3", + "0x0" + ] + }, + { + "pc": 7329, + "op": "SWAP2", + "gas": 2999934, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x3", + "0x16bb", + "0x3", + "0x20cb", + "0x3", + "0x3" + ] + }, + { + "pc": 7330, + "op": "SWAP1", + "gas": 2999931, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x3", + "0x16bb", + "0x3", + "0x3", + "0x3", + "0x20cb" + ] + }, + { + "pc": 7331, + "op": "POP", + "gas": 2999928, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x3", + "0x16bb", + "0x3", + "0x3", + "0x20cb", + "0x3" + ] + }, + { + "pc": 7332, + "op": "JUMP", + "gas": 2999926, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x3", + "0x16bb", + "0x3", + "0x3", + "0x20cb" + ] + }, + { + "pc": 8395, + "op": "JUMPDEST", + "gas": 2999918, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x3", + "0x16bb", + "0x3", + "0x3" + ] + }, + { + "pc": 8396, + "op": "DUP2", + "gas": 2999917, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x3", + "0x16bb", + "0x3", + "0x3" + ] + }, + { + "pc": 8397, + "op": "EQ", + "gas": 2999914, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x3", + "0x16bb", + "0x3", + "0x3", + "0x3" + ] + }, + { + "pc": 8398, + "op": "PUSH2", + "gas": 2999911, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x3", + "0x16bb", + "0x3", + "0x1" + ] + }, + { + "pc": 8401, + "op": "JUMPI", + "gas": 2999908, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x3", + "0x16bb", + "0x3", + "0x1", + "0x20d6" + ] + }, + { + "pc": 8406, + "op": "JUMPDEST", + "gas": 2999898, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x3", + "0x16bb", + "0x3" + ] + }, + { + "pc": 8407, + "op": "POP", + "gas": 2999897, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x3", + "0x16bb", + "0x3" + ] + }, + { + "pc": 8408, + "op": "JUMP", + "gas": 2999895, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x3", + "0x16bb" + ] + }, + { + "pc": 5819, + "op": "JUMPDEST", + "gas": 2999887, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x3" + ] + }, + { + "pc": 5820, + "op": "SWAP3", + "gas": 2999886, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x3" + ] + }, + { + "pc": 5821, + "op": "SWAP2", + "gas": 2999883, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x3", + "0x44", + "0x4", + "0x17ab" + ] + }, + { + "pc": 5822, + "op": "POP", + "gas": 2999880, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x3", + "0x17ab", + "0x4", + "0x44" + ] + }, + { + "pc": 5823, + "op": "POP", + "gas": 2999878, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x3", + "0x17ab", + "0x4" + ] + }, + { + "pc": 5824, + "op": "JUMP", + "gas": 2999876, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x3", + "0x17ab" + ] + }, + { + "pc": 6059, + "op": "JUMPDEST", + "gas": 2999868, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x3" + ] + }, + { + "pc": 6060, + "op": "SWAP3", + "gas": 2999867, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x3" + ] + }, + { + "pc": 6061, + "op": "POP", + "gas": 2999864, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x3", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 6062, + "op": "POP", + "gas": 2999862, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x3", + "0x0", + "0x0" + ] + }, + { + "pc": 6063, + "op": "PUSH1", + "gas": 2999860, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x3", + "0x0" + ] + }, + { + "pc": 6065, + "op": "PUSH2", + "gas": 2999857, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x3", + "0x0", + "0x20" + ] + }, + { + "pc": 6068, + "op": "DUP6", + "gas": 2999854, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x3", + "0x0", + "0x20", + "0x17bc" + ] + }, + { + "pc": 6069, + "op": "DUP3", + "gas": 2999851, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x3", + "0x0", + "0x20", + "0x17bc", + "0x44" + ] + }, + { + "pc": 6070, + "op": "DUP7", + "gas": 2999848, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x3", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x20" + ] + }, + { + "pc": 6071, + "op": "ADD", + "gas": 2999845, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x3", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x20", + "0x4" + ] + }, + { + "pc": 6072, + "op": "PUSH2", + "gas": 2999842, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x3", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24" + ] + }, + { + "pc": 6075, + "op": "JUMP", + "gas": 2999839, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x3", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x16c1" + ] + }, + { + "pc": 5825, + "op": "JUMPDEST", + "gas": 2999831, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x3", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24" + ] + }, + { + "pc": 5826, + "op": "PUSH1", + "gas": 2999830, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x3", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24" + ] + }, + { + "pc": 5828, + "op": "DUP2", + "gas": 2999827, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x3", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x0" + ] + }, + { + "pc": 5829, + "op": "CALLDATALOAD", + "gas": 2999824, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x3", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x0", + "0x24" + ] + }, + { + "pc": 5830, + "op": "SWAP1", + "gas": 2999821, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x3", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x0", + "0x3e8" + ] + }, + { + "pc": 5831, + "op": "POP", + "gas": 2999818, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x3", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8", + "0x0" + ] + }, + { + "pc": 5832, + "op": "PUSH2", + "gas": 2999816, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x3", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8" + ] + }, + { + "pc": 5835, + "op": "DUP2", + "gas": 2999813, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x3", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8", + "0x16d0" + ] + }, + { + "pc": 5836, + "op": "PUSH2", + "gas": 2999810, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x3", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8", + "0x16d0", + "0x3e8" + ] + }, + { + "pc": 5839, + "op": "JUMP", + "gas": 2999807, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x3", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8", + "0x16d0", + "0x3e8", + "0x20d9" + ] + }, + { + "pc": 8409, + "op": "JUMPDEST", + "gas": 2999799, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x3", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8", + "0x16d0", + "0x3e8" + ] + }, + { + "pc": 8410, + "op": "PUSH2", + "gas": 2999798, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x3", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8", + "0x16d0", + "0x3e8" + ] + }, + { + "pc": 8413, + "op": "DUP2", + "gas": 2999795, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x3", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8", + "0x16d0", + "0x3e8", + "0x20e2" + ] + }, + { + "pc": 8414, + "op": "PUSH2", + "gas": 2999792, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x3", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8", + "0x16d0", + "0x3e8", + "0x20e2", + "0x3e8" + ] + }, + { + "pc": 8417, + "op": "JUMP", + "gas": 2999789, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x3", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8", + "0x16d0", + "0x3e8", + "0x20e2", + "0x3e8", + "0x1cd1" + ] + }, + { + "pc": 7377, + "op": "JUMPDEST", + "gas": 2999781, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x3", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8", + "0x16d0", + "0x3e8", + "0x20e2", + "0x3e8" + ] + }, + { + "pc": 7378, + "op": "PUSH1", + "gas": 2999780, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x3", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8", + "0x16d0", + "0x3e8", + "0x20e2", + "0x3e8" + ] + }, + { + "pc": 7380, + "op": "DUP2", + "gas": 2999777, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x3", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8", + "0x16d0", + "0x3e8", + "0x20e2", + "0x3e8", + "0x0" + ] + }, + { + "pc": 7381, + "op": "SWAP1", + "gas": 2999774, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x3", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8", + "0x16d0", + "0x3e8", + "0x20e2", + "0x3e8", + "0x0", + "0x3e8" + ] + }, + { + "pc": 7382, + "op": "POP", + "gas": 2999771, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x3", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8", + "0x16d0", + "0x3e8", + "0x20e2", + "0x3e8", + "0x3e8", + "0x0" + ] + }, + { + "pc": 7383, + "op": "SWAP2", + "gas": 2999769, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x3", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8", + "0x16d0", + "0x3e8", + "0x20e2", + "0x3e8", + "0x3e8" + ] + }, + { + "pc": 7384, + "op": "SWAP1", + "gas": 2999766, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x3", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8", + "0x16d0", + "0x3e8", + "0x3e8", + "0x3e8", + "0x20e2" + ] + }, + { + "pc": 7385, + "op": "POP", + "gas": 2999763, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x3", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8", + "0x16d0", + "0x3e8", + "0x3e8", + "0x20e2", + "0x3e8" + ] + }, + { + "pc": 7386, + "op": "JUMP", + "gas": 2999761, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x3", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8", + "0x16d0", + "0x3e8", + "0x3e8", + "0x20e2" + ] + }, + { + "pc": 8418, + "op": "JUMPDEST", + "gas": 2999753, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x3", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8", + "0x16d0", + "0x3e8", + "0x3e8" + ] + }, + { + "pc": 8419, + "op": "DUP2", + "gas": 2999752, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x3", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8", + "0x16d0", + "0x3e8", + "0x3e8" + ] + }, + { + "pc": 8420, + "op": "EQ", + "gas": 2999749, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x3", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8", + "0x16d0", + "0x3e8", + "0x3e8", + "0x3e8" + ] + }, + { + "pc": 8421, + "op": "PUSH2", + "gas": 2999746, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x3", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8", + "0x16d0", + "0x3e8", + "0x1" + ] + }, + { + "pc": 8424, + "op": "JUMPI", + "gas": 2999743, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x3", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8", + "0x16d0", + "0x3e8", + "0x1", + "0x20ed" + ] + }, + { + "pc": 8429, + "op": "JUMPDEST", + "gas": 2999733, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x3", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8", + "0x16d0", + "0x3e8" + ] + }, + { + "pc": 8430, + "op": "POP", + "gas": 2999732, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x3", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8", + "0x16d0", + "0x3e8" + ] + }, + { + "pc": 8431, + "op": "JUMP", + "gas": 2999730, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x3", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8", + "0x16d0" + ] + }, + { + "pc": 5840, + "op": "JUMPDEST", + "gas": 2999722, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x3", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8" + ] + }, + { + "pc": 5841, + "op": "SWAP3", + "gas": 2999721, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x3", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8" + ] + }, + { + "pc": 5842, + "op": "SWAP2", + "gas": 2999718, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x3", + "0x0", + "0x20", + "0x3e8", + "0x44", + "0x24", + "0x17bc" + ] + }, + { + "pc": 5843, + "op": "POP", + "gas": 2999715, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x3", + "0x0", + "0x20", + "0x3e8", + "0x17bc", + "0x24", + "0x44" + ] + }, + { + "pc": 5844, + "op": "POP", + "gas": 2999713, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x3", + "0x0", + "0x20", + "0x3e8", + "0x17bc", + "0x24" + ] + }, + { + "pc": 5845, + "op": "JUMP", + "gas": 2999711, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x3", + "0x0", + "0x20", + "0x3e8", + "0x17bc" + ] + }, + { + "pc": 6076, + "op": "JUMPDEST", + "gas": 2999703, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x3", + "0x0", + "0x20", + "0x3e8" + ] + }, + { + "pc": 6077, + "op": "SWAP2", + "gas": 2999702, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x3", + "0x0", + "0x20", + "0x3e8" + ] + }, + { + "pc": 6078, + "op": "POP", + "gas": 2999699, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x3", + "0x3e8", + "0x20", + "0x0" + ] + }, + { + "pc": 6079, + "op": "POP", + "gas": 2999697, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x3", + "0x3e8", + "0x20" + ] + }, + { + "pc": 6080, + "op": "SWAP3", + "gas": 2999695, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x3", + "0x3e8" + ] + }, + { + "pc": 6081, + "op": "POP", + "gas": 2999692, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x3e8", + "0x4", + "0x3", + "0x44" + ] + }, + { + "pc": 6082, + "op": "SWAP3", + "gas": 2999690, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x3e8", + "0x4", + "0x3" + ] + }, + { + "pc": 6083, + "op": "SWAP1", + "gas": 2999687, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x4", + "0x313" + ] + }, + { + "pc": 6084, + "op": "POP", + "gas": 2999684, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x313", + "0x4" + ] + }, + { + "pc": 6085, + "op": "JUMP", + "gas": 2999682, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x313" + ] + }, + { + "pc": 787, + "op": "JUMPDEST", + "gas": 2999674, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8" + ] + }, + { + "pc": 788, + "op": "PUSH2", + "gas": 2999673, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8" + ] + }, + { + "pc": 791, + "op": "JUMP", + "gas": 2999670, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0xb9f" + ] + }, + { + "pc": 2975, + "op": "JUMPDEST", + "gas": 2999662, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8" + ] + }, + { + "pc": 2976, + "op": "PUSH1", + "gas": 2999661, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8" + ] + }, + { + "pc": 2978, + "op": "PUSH2", + "gas": 2999658, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0" + ] + }, + { + "pc": 2981, + "op": "PUSH2", + "gas": 2999655, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3" + ] + }, + { + "pc": 2984, + "op": "PUSH2", + "gas": 2999652, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0xbac" + ] + }, + { + "pc": 2987, + "op": "JUMP", + "gas": 2999649, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0xbac", + "0xc44" + ] + }, + { + "pc": 3140, + "op": "JUMPDEST", + "gas": 2999641, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0xbac" + ] + }, + { + "pc": 3141, + "op": "PUSH1", + "gas": 2999640, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0xbac" + ] + }, + { + "pc": 3143, + "op": "CALLER", + "gas": 2999637, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0xbac", + "0x0" + ] + }, + { + "pc": 3144, + "op": "SWAP1", + "gas": 2999635, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0xbac", + "0x0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 3145, + "op": "POP", + "gas": 2999632, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0xbac", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0" + ] + }, + { + "pc": 3146, + "op": "SWAP1", + "gas": 2999630, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0xbac", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 3147, + "op": "JUMP", + "gas": 2999627, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xbac" + ] + }, + { + "pc": 2988, + "op": "JUMPDEST", + "gas": 2999619, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 2989, + "op": "DUP5", + "gas": 2999618, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 2990, + "op": "DUP5", + "gas": 2999615, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3" + ] + }, + { + "pc": 2991, + "op": "PUSH2", + "gas": 2999612, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8" + ] + }, + { + "pc": 2994, + "op": "JUMP", + "gas": 2999609, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xe17" + ] + }, + { + "pc": 3607, + "op": "JUMPDEST", + "gas": 2999601, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8" + ] + }, + { + "pc": 3608, + "op": "PUSH1", + "gas": 2999600, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8" + ] + }, + { + "pc": 3610, + "op": "PUSH20", + "gas": 2999597, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x0" + ] + }, + { + "pc": 3631, + "op": "AND", + "gas": 2999594, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 3632, + "op": "DUP4", + "gas": 2999591, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x0" + ] + }, + { + "pc": 3633, + "op": "PUSH20", + "gas": 2999588, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 3654, + "op": "AND", + "gas": 2999585, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 3655, + "op": "EQ", + "gas": 2999582, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 3656, + "op": "ISZERO", + "gas": 2999579, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x0" + ] + }, + { + "pc": 3657, + "op": "PUSH2", + "gas": 2999576, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1" + ] + }, + { + "pc": 3660, + "op": "JUMPI", + "gas": 2999573, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1", + "0xe87" + ] + }, + { + "pc": 3719, + "op": "JUMPDEST", + "gas": 2999563, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8" + ] + }, + { + "pc": 3720, + "op": "PUSH1", + "gas": 2999562, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8" + ] + }, + { + "pc": 3722, + "op": "PUSH20", + "gas": 2999559, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x0" + ] + }, + { + "pc": 3743, + "op": "AND", + "gas": 2999556, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 3744, + "op": "DUP3", + "gas": 2999553, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x0" + ] + }, + { + "pc": 3745, + "op": "PUSH20", + "gas": 2999550, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x0", + "0x3" + ] + }, + { + "pc": 3766, + "op": "AND", + "gas": 2999547, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x0", + "0x3", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 3767, + "op": "EQ", + "gas": 2999544, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x0", + "0x3" + ] + }, + { + "pc": 3768, + "op": "ISZERO", + "gas": 2999541, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x0" + ] + }, + { + "pc": 3769, + "op": "PUSH2", + "gas": 2999538, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1" + ] + }, + { + "pc": 3772, + "op": "JUMPI", + "gas": 2999535, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1", + "0xef7" + ] + }, + { + "pc": 3831, + "op": "JUMPDEST", + "gas": 2999525, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8" + ] + }, + { + "pc": 3832, + "op": "PUSH2", + "gas": 2999524, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8" + ] + }, + { + "pc": 3835, + "op": "DUP4", + "gas": 2999521, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf02" + ] + }, + { + "pc": 3836, + "op": "DUP4", + "gas": 2999518, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 3837, + "op": "DUP4", + "gas": 2999515, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3" + ] + }, + { + "pc": 3838, + "op": "PUSH2", + "gas": 2999512, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8" + ] + }, + { + "pc": 3841, + "op": "JUMP", + "gas": 2999509, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1605" + ] + }, + { + "pc": 5637, + "op": "JUMPDEST", + "gas": 2999501, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8" + ] + }, + { + "pc": 5638, + "op": "PUSH2", + "gas": 2999500, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8" + ] + }, + { + "pc": 5641, + "op": "DUP4", + "gas": 2999497, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1610" + ] + }, + { + "pc": 5642, + "op": "DUP4", + "gas": 2999494, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1610", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 5643, + "op": "DUP4", + "gas": 2999491, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1610", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3" + ] + }, + { + "pc": 5644, + "op": "PUSH2", + "gas": 2999488, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1610", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8" + ] + }, + { + "pc": 5647, + "op": "JUMP", + "gas": 2999485, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1610", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x16a7" + ] + }, + { + "pc": 5799, + "op": "JUMPDEST", + "gas": 2999477, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1610", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8" + ] + }, + { + "pc": 5800, + "op": "POP", + "gas": 2999476, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1610", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8" + ] + }, + { + "pc": 5801, + "op": "POP", + "gas": 2999474, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1610", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3" + ] + }, + { + "pc": 5802, + "op": "POP", + "gas": 2999472, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1610", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 5803, + "op": "JUMP", + "gas": 2999470, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1610" + ] + }, + { + "pc": 5648, + "op": "JUMPDEST", + "gas": 2999462, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8" + ] + }, + { + "pc": 5649, + "op": "PUSH2", + "gas": 2999461, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8" + ] + }, + { + "pc": 5652, + "op": "PUSH2", + "gas": 2999458, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1618" + ] + }, + { + "pc": 5655, + "op": "JUMP", + "gas": 2999455, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1618", + "0x743" + ] + }, + { + "pc": 1859, + "op": "JUMPDEST", + "gas": 2999447, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1618" + ] + }, + { + "pc": 1860, + "op": "PUSH1", + "gas": 2999446, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1618" + ] + }, + { + "pc": 1862, + "op": "PUSH1", + "gas": 2999443, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1618", + "0x0" + ] + }, + { + "pc": 1864, + "op": "PUSH1", + "gas": 2999440, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1618", + "0x0", + "0x5" + ] + }, + { + "pc": 1866, + "op": "SWAP1", + "gas": 2999437, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1618", + "0x0", + "0x5", + "0x1" + ] + }, + { + "pc": 1867, + "op": "SLOAD", + "gas": 2999434, + "gasCost": 2100, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1618", + "0x0", + "0x1", + "0x5" + ], + "storage": { + "0x0000000000000000000000000000000000000000000000000000000000000005": "0x000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd65710012" + }, + "extraData": { + "proofList": [ + { + "address": "0x34041eff1f32989bdaa95875e0f41afd6294dcd4", + "nonce": 1, + "balance": "0x0", + "codeHash": "0x9b5ea0519f6e20c36338989b6accc7cf3384eac2f0a083e82730bca177544409", + "storage": { + "key": "0x0000000000000000000000000000000000000000000000000000000000000005", + "value": "0x000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd65710012" + } + } + ] + } + }, + { + "pc": 1868, + "op": "SWAP1", + "gas": 2997334, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1618", + "0x0", + "0x1", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd65710012" + ] + }, + { + "pc": 1869, + "op": "PUSH2", + "gas": 2997331, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1618", + "0x0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd65710012", + "0x1" + ] + }, + { + "pc": 1872, + "op": "EXP", + "gas": 2997328, + "gasCost": 60, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1618", + "0x0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd65710012", + "0x1", + "0x100" + ] + }, + { + "pc": 1873, + "op": "SWAP1", + "gas": 2997268, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1618", + "0x0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd65710012", + "0x100" + ] + }, + { + "pc": 1874, + "op": "DIV", + "gas": 2997265, + "gasCost": 5, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1618", + "0x0", + "0x100", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd65710012" + ] + }, + { + "pc": 1875, + "op": "PUSH1", + "gas": 2997260, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1618", + "0x0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd657100" + ] + }, + { + "pc": 1877, + "op": "AND", + "gas": 2997257, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1618", + "0x0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd657100", + "0xff" + ] + }, + { + "pc": 1878, + "op": "SWAP1", + "gas": 2997254, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1618", + "0x0", + "0x0" + ] + }, + { + "pc": 1879, + "op": "POP", + "gas": 2997251, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1618", + "0x0", + "0x0" + ] + }, + { + "pc": 1880, + "op": "SWAP1", + "gas": 2997249, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1618", + "0x0" + ] + }, + { + "pc": 1881, + "op": "JUMP", + "gas": 2997246, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x0", + "0x1618" + ] + }, + { + "pc": 5656, + "op": "JUMPDEST", + "gas": 2997238, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x0" + ] + }, + { + "pc": 5657, + "op": "ISZERO", + "gas": 2997237, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x0" + ] + }, + { + "pc": 5658, + "op": "PUSH2", + "gas": 2997234, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1" + ] + }, + { + "pc": 5661, + "op": "JUMPI", + "gas": 2997231, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1", + "0x1658" + ] + }, + { + "pc": 5720, + "op": "JUMPDEST", + "gas": 2997221, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8" + ] + }, + { + "pc": 5721, + "op": "POP", + "gas": 2997220, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8" + ] + }, + { + "pc": 5722, + "op": "POP", + "gas": 2997218, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3" + ] + }, + { + "pc": 5723, + "op": "POP", + "gas": 2997216, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 5724, + "op": "JUMP", + "gas": 2997214, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf02" + ] + }, + { + "pc": 3842, + "op": "JUMPDEST", + "gas": 2997206, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8" + ] + }, + { + "pc": 3843, + "op": "PUSH2", + "gas": 2997205, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8" + ] + }, + { + "pc": 3846, + "op": "DUP2", + "gas": 2997202, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf6d" + ] + }, + { + "pc": 3847, + "op": "PUSH1", + "gas": 2997199, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf6d", + "0x3e8" + ] + }, + { + "pc": 3849, + "op": "MLOAD", + "gas": 2997196, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf6d", + "0x3e8", + "0x40" + ] + }, + { + "pc": 3850, + "op": "DUP1", + "gas": 2997193, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80" + ] + }, + { + "pc": 3851, + "op": "PUSH1", + "gas": 2997190, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x80" + ] + }, + { + "pc": 3853, + "op": "ADD", + "gas": 2997187, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x80", + "0x60" + ] + }, + { + "pc": 3854, + "op": "PUSH1", + "gas": 2997184, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0xe0" + ] + }, + { + "pc": 3856, + "op": "MSTORE", + "gas": 2997181, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0xe0", + "0x40" + ] + }, + { + "pc": 3857, + "op": "DUP1", + "gas": 2997178, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80" + ] + }, + { + "pc": 3858, + "op": "PUSH1", + "gas": 2997175, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x80" + ] + }, + { + "pc": 3860, + "op": "DUP2", + "gas": 2997172, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x80", + "0x26" + ] + }, + { + "pc": 3861, + "op": "MSTORE", + "gas": 2997169, + "gasCost": 9, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x80", + "0x26", + "0x80" + ] + }, + { + "pc": 3862, + "op": "PUSH1", + "gas": 2997160, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x80" + ] + }, + { + "pc": 3864, + "op": "ADD", + "gas": 2997157, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x80", + "0x20" + ] + }, + { + "pc": 3865, + "op": "PUSH2", + "gas": 2997154, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0xa0" + ] + }, + { + "pc": 3868, + "op": "PUSH1", + "gas": 2997151, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0xa0", + "0x2113" + ] + }, + { + "pc": 3870, + "op": "SWAP2", + "gas": 2997148, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0xa0", + "0x2113", + "0x26" + ] + }, + { + "pc": 3871, + "op": "CODECOPY", + "gas": 2997145, + "gasCost": 15, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x26", + "0x2113", + "0xa0" + ], + "extraData": { + "codeList": [ + "0x608060405234801561001057600080fd5b506004361061010b5760003560e01c80635c975abb116100a257806395d89b411161007157806395d89b41146102945780639dc29fac146102b2578063a457c2d7146102ce578063a9059cbb146102fe578063dd62ed3e1461032e5761010b565b80635c975abb1461022057806370a082311461023e5780638456cb591461026e5780638e50817a146102785761010b565b8063313ce567116100de578063313ce567146101ac57806339509351146101ca5780633f4ba83a146101fa57806340c10f19146102045761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015e57806323b872dd1461017c575b600080fd5b61011861035e565b6040516101259190611a15565b60405180910390f35b6101486004803603810190610143919061178a565b6103f0565b60405161015591906119fa565b60405180910390f35b61016661040e565b6040516101739190611bb7565b60405180910390f35b6101966004803603810190610191919061173b565b610418565b6040516101a391906119fa565b60405180910390f35b6101b46104f1565b6040516101c19190611bd2565b60405180910390f35b6101e460048036038101906101df919061178a565b610508565b6040516101f191906119fa565b60405180910390f35b6102026105bb565b005b61021e6004803603810190610219919061178a565b610655565b005b610228610743565b60405161023591906119fa565b60405180910390f35b610258600480360381019061025391906116d6565b61075a565b6040516102659190611bb7565b60405180910390f35b6102766107a2565b005b610292600480360381019061028d91906116ff565b61083c565b005b61029c610952565b6040516102a99190611a15565b60405180910390f35b6102cc60048036038101906102c7919061178a565b6109e4565b005b6102e860048036038101906102e3919061178a565b610ad2565b6040516102f591906119fa565b60405180910390f35b6103186004803603810190610313919061178a565b610b9f565b60405161032591906119fa565b60405180910390f35b610348600480360381019061034391906116ff565b610bbd565b6040516103559190611bb7565b60405180910390f35b60606003805461036d90611d51565b80601f016020809104026020016040519081016040528092919081815260200182805461039990611d51565b80156103e65780601f106103bb576101008083540402835291602001916103e6565b820191906000526020600020905b8154815290600101906020018083116103c957829003601f168201915b5050505050905090565b60006104046103fd610c44565b8484610c4c565b6001905092915050565b6000600254905090565b6000610425848484610e17565b6104e684610431610c44565b6104e18560405180606001604052806028815260200161213960289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610497610c44565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110ac9092919063ffffffff16565b610c4c565b600190509392505050565b6000600560009054906101000a900460ff16905090565b60006105b1610515610c44565b846105ac8560016000610526610c44565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461111090919063ffffffff16565b610c4c565b6001905092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461064b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161064290611ab7565b60405180910390fd5b61065361116e565b565b600560019054906101000a900460ff16156106a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161069c90611ad7565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610735576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161072c90611ab7565b60405180910390fd5b61073f8282611218565b5050565b6000600560019054906101000a900460ff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610832576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082990611ab7565b60405180910390fd5b61083a6113ac565b565b600560029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146108cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c390611b37565b60405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b60606004805461096190611d51565b80601f016020809104026020016040519081016040528092919081815260200182805461098d90611d51565b80156109da5780601f106109af576101008083540402835291602001916109da565b820191906000526020600020905b8154815290600101906020018083116109bd57829003601f168201915b5050505050905090565b600560019054906101000a900460ff1615610a34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2b90611ad7565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610ac4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abb90611ab7565b60405180910390fd5b610ace8282611457565b5050565b6000610b95610adf610c44565b84610b90856040518060600160405280602581526020016121616025913960016000610b09610c44565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110ac9092919063ffffffff16565b610c4c565b6001905092915050565b6000610bb3610bac610c44565b8484610e17565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb390611b57565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2390611a77565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e0a9190611bb7565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7e90611b17565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ef7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eee90611a37565b60405180910390fd5b610f02838383611605565b610f6d81604051806060016040528060268152602001612113602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110ac9092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611000816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461111090919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161109f9190611bb7565b60405180910390a3505050565b60008383111582906110f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110eb9190611a15565b60405180910390fd5b50600083856111039190611c5f565b9050809150509392505050565b600080828461111f9190611c09565b905083811015611164576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115b90611a97565b60405180910390fd5b8091505092915050565b600560019054906101000a900460ff166111bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b490611a57565b60405180910390fd5b6000600560016101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611201610c44565b60405161120e91906119df565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611288576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127f90611b77565b60405180910390fd5b61129460008383611605565b6112a98160025461111090919063ffffffff16565b600281905550611300816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461111090919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516113a09190611bb7565b60405180910390a35050565b600560019054906101000a900460ff16156113fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f390611ad7565b60405180910390fd5b6001600560016101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611440610c44565b60405161144d91906119df565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114be90611af7565b60405180910390fd5b6114d382600083611605565b61153e816040518060600160405280602281526020016120f1602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110ac9092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506115958160025461165d90919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516115f99190611bb7565b60405180910390a35050565b6116108383836116a7565b611618610743565b15611658576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164f90611b97565b60405180910390fd5b505050565b600061169f83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506110ac565b905092915050565b505050565b6000813590506116bb816120c2565b92915050565b6000813590506116d0816120d9565b92915050565b6000602082840312156116e857600080fd5b60006116f6848285016116ac565b91505092915050565b6000806040838503121561171257600080fd5b6000611720858286016116ac565b9250506020611731858286016116ac565b9150509250929050565b60008060006060848603121561175057600080fd5b600061175e868287016116ac565b935050602061176f868287016116ac565b9250506040611780868287016116c1565b9150509250925092565b6000806040838503121561179d57600080fd5b60006117ab858286016116ac565b92505060206117bc858286016116c1565b9150509250929050565b6117cf81611ce8565b82525050565b6117de81611ca5565b82525050565b60006117ef82611bed565b6117f98185611bf8565b9350611809818560208601611d1e565b61181281611de1565b840191505092915050565b600061182a602383611bf8565b915061183582611df2565b604082019050919050565b600061184d601483611bf8565b915061185882611e41565b602082019050919050565b6000611870602283611bf8565b915061187b82611e6a565b604082019050919050565b6000611893601b83611bf8565b915061189e82611eb9565b602082019050919050565b60006118b6600b83611bf8565b91506118c182611ee2565b602082019050919050565b60006118d9601083611bf8565b91506118e482611f0b565b602082019050919050565b60006118fc602183611bf8565b915061190782611f34565b604082019050919050565b600061191f602583611bf8565b915061192a82611f83565b604082019050919050565b6000611942600c83611bf8565b915061194d82611fd2565b602082019050919050565b6000611965602483611bf8565b915061197082611ffb565b604082019050919050565b6000611988601f83611bf8565b91506119938261204a565b602082019050919050565b60006119ab602a83611bf8565b91506119b682612073565b604082019050919050565b6119ca81611cd1565b82525050565b6119d981611cdb565b82525050565b60006020820190506119f460008301846117c6565b92915050565b6000602082019050611a0f60008301846117d5565b92915050565b60006020820190508181036000830152611a2f81846117e4565b905092915050565b60006020820190508181036000830152611a508161181d565b9050919050565b60006020820190508181036000830152611a7081611840565b9050919050565b60006020820190508181036000830152611a9081611863565b9050919050565b60006020820190508181036000830152611ab081611886565b9050919050565b60006020820190508181036000830152611ad0816118a9565b9050919050565b60006020820190508181036000830152611af0816118cc565b9050919050565b60006020820190508181036000830152611b10816118ef565b9050919050565b60006020820190508181036000830152611b3081611912565b9050919050565b60006020820190508181036000830152611b5081611935565b9050919050565b60006020820190508181036000830152611b7081611958565b9050919050565b60006020820190508181036000830152611b908161197b565b9050919050565b60006020820190508181036000830152611bb08161199e565b9050919050565b6000602082019050611bcc60008301846119c1565b92915050565b6000602082019050611be760008301846119d0565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611c1482611cd1565b9150611c1f83611cd1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611c5457611c53611d83565b5b828201905092915050565b6000611c6a82611cd1565b9150611c7583611cd1565b925082821015611c8857611c87611d83565b5b828203905092915050565b6000611c9e82611cb1565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b6000611cf382611cfa565b9050919050565b6000611d0582611d0c565b9050919050565b6000611d1782611cb1565b9050919050565b60005b83811015611d3c578082015181840152602081019050611d21565b83811115611d4b576000848401525b50505050565b60006002820490506001821680611d6957607f821691505b60208210811415611d7d57611d7c611db2565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b7f6e6f7420616c6c6f776564000000000000000000000000000000000000000000600082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f6f6e6c7920466163746f72790000000000000000000000000000000000000000600082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b7f45524332305061757361626c653a20746f6b656e207472616e7366657220776860008201527f696c652070617573656400000000000000000000000000000000000000000000602082015250565b6120cb81611c93565b81146120d657600080fd5b50565b6120e281611cd1565b81146120ed57600080fd5b5056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122050720249c11bf2bf6da8b1770af05168068be0eee81154cac03b74b0ab3b6a3f64736f6c63430008040033" + ] + } + }, + { + "pc": 3872, + "op": "PUSH1", + "gas": 2997130, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80" + ] + }, + { + "pc": 3874, + "op": "DUP1", + "gas": 2997127, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x0" + ] + }, + { + "pc": 3875, + "op": "DUP8", + "gas": 2997124, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x0", + "0x0" + ] + }, + { + "pc": 3876, + "op": "PUSH20", + "gas": 2997121, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 3897, + "op": "AND", + "gas": 2997118, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 3898, + "op": "PUSH20", + "gas": 2997115, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 3919, + "op": "AND", + "gas": 2997112, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 3920, + "op": "DUP2", + "gas": 2997109, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 3921, + "op": "MSTORE", + "gas": 2997106, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0" + ] + }, + { + "pc": 3922, + "op": "PUSH1", + "gas": 2997103, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x0", + "0x0" + ] + }, + { + "pc": 3924, + "op": "ADD", + "gas": 2997100, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x20" + ] + }, + { + "pc": 3925, + "op": "SWAP1", + "gas": 2997097, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x0", + "0x20" + ] + }, + { + "pc": 3926, + "op": "DUP2", + "gas": 2997094, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x20", + "0x0" + ] + }, + { + "pc": 3927, + "op": "MSTORE", + "gas": 2997091, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x20", + "0x0", + "0x20" + ] + }, + { + "pc": 3928, + "op": "PUSH1", + "gas": 2997088, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x20" + ] + }, + { + "pc": 3930, + "op": "ADD", + "gas": 2997085, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x20", + "0x20" + ] + }, + { + "pc": 3931, + "op": "PUSH1", + "gas": 2997082, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x40" + ] + }, + { + "pc": 3933, + "op": "SHA3", + "gas": 2997079, + "gasCost": 42, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x40", + "0x0" + ] + }, + { + "pc": 3934, + "op": "SLOAD", + "gas": 2997037, + "gasCost": 2100, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x5a158573daab1c353835da34297290f5f813859e4bb52de641691b875502523f" + ], + "storage": { + "0x0000000000000000000000000000000000000000000000000000000000000005": "0x000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd65710012", + "0x5a158573daab1c353835da34297290f5f813859e4bb52de641691b875502523f": "0x00000000000000000000000000000000000000000000000000038d7ea4c67448" + }, + "extraData": { + "proofList": [ + { + "address": "0x34041eff1f32989bdaa95875e0f41afd6294dcd4", + "nonce": 1, + "balance": "0x0", + "codeHash": "0x9b5ea0519f6e20c36338989b6accc7cf3384eac2f0a083e82730bca177544409", + "storage": { + "key": "0x5a158573daab1c353835da34297290f5f813859e4bb52de641691b875502523f", + "value": "0x00000000000000000000000000000000000000000000000000038d7ea4c67448" + } + } + ] + } + }, + { + "pc": 3935, + "op": "PUSH2", + "gas": 2994937, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x38d7ea4c67448" + ] + }, + { + "pc": 3938, + "op": "SWAP1", + "gas": 2994934, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x38d7ea4c67448", + "0x10ac" + ] + }, + { + "pc": 3939, + "op": "SWAP3", + "gas": 2994931, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x10ac", + "0x38d7ea4c67448" + ] + }, + { + "pc": 3940, + "op": "SWAP2", + "gas": 2994928, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf6d", + "0x38d7ea4c67448", + "0x80", + "0x10ac", + "0x3e8" + ] + }, + { + "pc": 3941, + "op": "SWAP1", + "gas": 2994925, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf6d", + "0x38d7ea4c67448", + "0x3e8", + "0x10ac", + "0x80" + ] + }, + { + "pc": 3942, + "op": "PUSH4", + "gas": 2994922, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf6d", + "0x38d7ea4c67448", + "0x3e8", + "0x80", + "0x10ac" + ] + }, + { + "pc": 3947, + "op": "AND", + "gas": 2994919, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf6d", + "0x38d7ea4c67448", + "0x3e8", + "0x80", + "0x10ac", + "0xffffffff" + ] + }, + { + "pc": 3948, + "op": "JUMP", + "gas": 2994916, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf6d", + "0x38d7ea4c67448", + "0x3e8", + "0x80", + "0x10ac" + ] + }, + { + "pc": 4268, + "op": "JUMPDEST", + "gas": 2994908, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf6d", + "0x38d7ea4c67448", + "0x3e8", + "0x80" + ] + }, + { + "pc": 4269, + "op": "PUSH1", + "gas": 2994907, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf6d", + "0x38d7ea4c67448", + "0x3e8", + "0x80" + ] + }, + { + "pc": 4271, + "op": "DUP4", + "gas": 2994904, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf6d", + "0x38d7ea4c67448", + "0x3e8", + "0x80", + "0x0" + ] + }, + { + "pc": 4272, + "op": "DUP4", + "gas": 2994901, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf6d", + "0x38d7ea4c67448", + "0x3e8", + "0x80", + "0x0", + "0x38d7ea4c67448" + ] + }, + { + "pc": 4273, + "op": "GT", + "gas": 2994898, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf6d", + "0x38d7ea4c67448", + "0x3e8", + "0x80", + "0x0", + "0x38d7ea4c67448", + "0x3e8" + ] + }, + { + "pc": 4274, + "op": "ISZERO", + "gas": 2994895, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf6d", + "0x38d7ea4c67448", + "0x3e8", + "0x80", + "0x0", + "0x0" + ] + }, + { + "pc": 4275, + "op": "DUP3", + "gas": 2994892, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf6d", + "0x38d7ea4c67448", + "0x3e8", + "0x80", + "0x0", + "0x1" + ] + }, + { + "pc": 4276, + "op": "SWAP1", + "gas": 2994889, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf6d", + "0x38d7ea4c67448", + "0x3e8", + "0x80", + "0x0", + "0x1", + "0x80" + ] + }, + { + "pc": 4277, + "op": "PUSH2", + "gas": 2994886, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf6d", + "0x38d7ea4c67448", + "0x3e8", + "0x80", + "0x0", + "0x80", + "0x1" + ] + }, + { + "pc": 4280, + "op": "JUMPI", + "gas": 2994883, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf6d", + "0x38d7ea4c67448", + "0x3e8", + "0x80", + "0x0", + "0x80", + "0x1", + "0x10f4" + ] + }, + { + "pc": 4340, + "op": "JUMPDEST", + "gas": 2994873, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf6d", + "0x38d7ea4c67448", + "0x3e8", + "0x80", + "0x0", + "0x80" + ] + }, + { + "pc": 4341, + "op": "POP", + "gas": 2994872, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf6d", + "0x38d7ea4c67448", + "0x3e8", + "0x80", + "0x0", + "0x80" + ] + }, + { + "pc": 4342, + "op": "PUSH1", + "gas": 2994870, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf6d", + "0x38d7ea4c67448", + "0x3e8", + "0x80", + "0x0" + ] + }, + { + "pc": 4344, + "op": "DUP4", + "gas": 2994867, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf6d", + "0x38d7ea4c67448", + "0x3e8", + "0x80", + "0x0", + "0x0" + ] + }, + { + "pc": 4345, + "op": "DUP6", + "gas": 2994864, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf6d", + "0x38d7ea4c67448", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x3e8" + ] + }, + { + "pc": 4346, + "op": "PUSH2", + "gas": 2994861, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf6d", + "0x38d7ea4c67448", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x3e8", + "0x38d7ea4c67448" + ] + }, + { + "pc": 4349, + "op": "SWAP2", + "gas": 2994858, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf6d", + "0x38d7ea4c67448", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x3e8", + "0x38d7ea4c67448", + "0x1103" + ] + }, + { + "pc": 4350, + "op": "SWAP1", + "gas": 2994855, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf6d", + "0x38d7ea4c67448", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x38d7ea4c67448", + "0x3e8" + ] + }, + { + "pc": 4351, + "op": "PUSH2", + "gas": 2994852, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf6d", + "0x38d7ea4c67448", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67448" + ] + }, + { + "pc": 4354, + "op": "JUMP", + "gas": 2994849, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf6d", + "0x38d7ea4c67448", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67448", + "0x1c5f" + ] + }, + { + "pc": 7263, + "op": "JUMPDEST", + "gas": 2994841, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf6d", + "0x38d7ea4c67448", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67448" + ] + }, + { + "pc": 7264, + "op": "PUSH1", + "gas": 2994840, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf6d", + "0x38d7ea4c67448", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67448" + ] + }, + { + "pc": 7266, + "op": "PUSH2", + "gas": 2994837, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf6d", + "0x38d7ea4c67448", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67448", + "0x0" + ] + }, + { + "pc": 7269, + "op": "DUP3", + "gas": 2994834, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf6d", + "0x38d7ea4c67448", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67448", + "0x0", + "0x1c6a" + ] + }, + { + "pc": 7270, + "op": "PUSH2", + "gas": 2994831, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf6d", + "0x38d7ea4c67448", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67448", + "0x0", + "0x1c6a", + "0x38d7ea4c67448" + ] + }, + { + "pc": 7273, + "op": "JUMP", + "gas": 2994828, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf6d", + "0x38d7ea4c67448", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67448", + "0x0", + "0x1c6a", + "0x38d7ea4c67448", + "0x1cd1" + ] + }, + { + "pc": 7377, + "op": "JUMPDEST", + "gas": 2994820, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf6d", + "0x38d7ea4c67448", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67448", + "0x0", + "0x1c6a", + "0x38d7ea4c67448" + ] + }, + { + "pc": 7378, + "op": "PUSH1", + "gas": 2994819, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf6d", + "0x38d7ea4c67448", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67448", + "0x0", + "0x1c6a", + "0x38d7ea4c67448" + ] + }, + { + "pc": 7380, + "op": "DUP2", + "gas": 2994816, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf6d", + "0x38d7ea4c67448", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67448", + "0x0", + "0x1c6a", + "0x38d7ea4c67448", + "0x0" + ] + }, + { + "pc": 7381, + "op": "SWAP1", + "gas": 2994813, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf6d", + "0x38d7ea4c67448", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67448", + "0x0", + "0x1c6a", + "0x38d7ea4c67448", + "0x0", + "0x38d7ea4c67448" + ] + }, + { + "pc": 7382, + "op": "POP", + "gas": 2994810, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf6d", + "0x38d7ea4c67448", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67448", + "0x0", + "0x1c6a", + "0x38d7ea4c67448", + "0x38d7ea4c67448", + "0x0" + ] + }, + { + "pc": 7383, + "op": "SWAP2", + "gas": 2994808, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf6d", + "0x38d7ea4c67448", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67448", + "0x0", + "0x1c6a", + "0x38d7ea4c67448", + "0x38d7ea4c67448" + ] + }, + { + "pc": 7384, + "op": "SWAP1", + "gas": 2994805, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf6d", + "0x38d7ea4c67448", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67448", + "0x0", + "0x38d7ea4c67448", + "0x38d7ea4c67448", + "0x1c6a" + ] + }, + { + "pc": 7385, + "op": "POP", + "gas": 2994802, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf6d", + "0x38d7ea4c67448", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67448", + "0x0", + "0x38d7ea4c67448", + "0x1c6a", + "0x38d7ea4c67448" + ] + }, + { + "pc": 7386, + "op": "JUMP", + "gas": 2994800, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf6d", + "0x38d7ea4c67448", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67448", + "0x0", + "0x38d7ea4c67448", + "0x1c6a" + ] + }, + { + "pc": 7274, + "op": "JUMPDEST", + "gas": 2994792, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf6d", + "0x38d7ea4c67448", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67448", + "0x0", + "0x38d7ea4c67448" + ] + }, + { + "pc": 7275, + "op": "SWAP2", + "gas": 2994791, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf6d", + "0x38d7ea4c67448", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67448", + "0x0", + "0x38d7ea4c67448" + ] + }, + { + "pc": 7276, + "op": "POP", + "gas": 2994788, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf6d", + "0x38d7ea4c67448", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67448", + "0x0", + "0x38d7ea4c67448" + ] + }, + { + "pc": 7277, + "op": "PUSH2", + "gas": 2994786, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf6d", + "0x38d7ea4c67448", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67448", + "0x0" + ] + }, + { + "pc": 7280, + "op": "DUP4", + "gas": 2994783, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf6d", + "0x38d7ea4c67448", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67448", + "0x0", + "0x1c75" + ] + }, + { + "pc": 7281, + "op": "PUSH2", + "gas": 2994780, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf6d", + "0x38d7ea4c67448", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67448", + "0x0", + "0x1c75", + "0x3e8" + ] + }, + { + "pc": 7284, + "op": "JUMP", + "gas": 2994777, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf6d", + "0x38d7ea4c67448", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67448", + "0x0", + "0x1c75", + "0x3e8", + "0x1cd1" + ] + }, + { + "pc": 7377, + "op": "JUMPDEST", + "gas": 2994769, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf6d", + "0x38d7ea4c67448", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67448", + "0x0", + "0x1c75", + "0x3e8" + ] + }, + { + "pc": 7378, + "op": "PUSH1", + "gas": 2994768, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf6d", + "0x38d7ea4c67448", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67448", + "0x0", + "0x1c75", + "0x3e8" + ] + }, + { + "pc": 7380, + "op": "DUP2", + "gas": 2994765, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf6d", + "0x38d7ea4c67448", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67448", + "0x0", + "0x1c75", + "0x3e8", + "0x0" + ] + }, + { + "pc": 7381, + "op": "SWAP1", + "gas": 2994762, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf6d", + "0x38d7ea4c67448", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67448", + "0x0", + "0x1c75", + "0x3e8", + "0x0", + "0x3e8" + ] + }, + { + "pc": 7382, + "op": "POP", + "gas": 2994759, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf6d", + "0x38d7ea4c67448", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67448", + "0x0", + "0x1c75", + "0x3e8", + "0x3e8", + "0x0" + ] + }, + { + "pc": 7383, + "op": "SWAP2", + "gas": 2994757, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf6d", + "0x38d7ea4c67448", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67448", + "0x0", + "0x1c75", + "0x3e8", + "0x3e8" + ] + }, + { + "pc": 7384, + "op": "SWAP1", + "gas": 2994754, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf6d", + "0x38d7ea4c67448", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67448", + "0x0", + "0x3e8", + "0x3e8", + "0x1c75" + ] + }, + { + "pc": 7385, + "op": "POP", + "gas": 2994751, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf6d", + "0x38d7ea4c67448", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67448", + "0x0", + "0x3e8", + "0x1c75", + "0x3e8" + ] + }, + { + "pc": 7386, + "op": "JUMP", + "gas": 2994749, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf6d", + "0x38d7ea4c67448", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67448", + "0x0", + "0x3e8", + "0x1c75" + ] + }, + { + "pc": 7285, + "op": "JUMPDEST", + "gas": 2994741, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf6d", + "0x38d7ea4c67448", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67448", + "0x0", + "0x3e8" + ] + }, + { + "pc": 7286, + "op": "SWAP3", + "gas": 2994740, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf6d", + "0x38d7ea4c67448", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67448", + "0x0", + "0x3e8" + ] + }, + { + "pc": 7287, + "op": "POP", + "gas": 2994737, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf6d", + "0x38d7ea4c67448", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67448", + "0x0", + "0x3e8" + ] + }, + { + "pc": 7288, + "op": "DUP3", + "gas": 2994735, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf6d", + "0x38d7ea4c67448", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67448", + "0x0" + ] + }, + { + "pc": 7289, + "op": "DUP3", + "gas": 2994732, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf6d", + "0x38d7ea4c67448", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67448", + "0x0", + "0x3e8" + ] + }, + { + "pc": 7290, + "op": "LT", + "gas": 2994729, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf6d", + "0x38d7ea4c67448", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67448", + "0x0", + "0x3e8", + "0x38d7ea4c67448" + ] + }, + { + "pc": 7291, + "op": "ISZERO", + "gas": 2994726, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf6d", + "0x38d7ea4c67448", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67448", + "0x0", + "0x0" + ] + }, + { + "pc": 7292, + "op": "PUSH2", + "gas": 2994723, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf6d", + "0x38d7ea4c67448", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67448", + "0x0", + "0x1" + ] + }, + { + "pc": 7295, + "op": "JUMPI", + "gas": 2994720, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf6d", + "0x38d7ea4c67448", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67448", + "0x0", + "0x1", + "0x1c88" + ] + }, + { + "pc": 7304, + "op": "JUMPDEST", + "gas": 2994710, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf6d", + "0x38d7ea4c67448", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67448", + "0x0" + ] + }, + { + "pc": 7305, + "op": "DUP3", + "gas": 2994709, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf6d", + "0x38d7ea4c67448", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67448", + "0x0" + ] + }, + { + "pc": 7306, + "op": "DUP3", + "gas": 2994706, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf6d", + "0x38d7ea4c67448", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67448", + "0x0", + "0x3e8" + ] + }, + { + "pc": 7307, + "op": "SUB", + "gas": 2994703, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf6d", + "0x38d7ea4c67448", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67448", + "0x0", + "0x3e8", + "0x38d7ea4c67448" + ] + }, + { + "pc": 7308, + "op": "SWAP1", + "gas": 2994700, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf6d", + "0x38d7ea4c67448", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67448", + "0x0", + "0x38d7ea4c67060" + ] + }, + { + "pc": 7309, + "op": "POP", + "gas": 2994697, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf6d", + "0x38d7ea4c67448", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67448", + "0x38d7ea4c67060", + "0x0" + ] + }, + { + "pc": 7310, + "op": "SWAP3", + "gas": 2994695, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf6d", + "0x38d7ea4c67448", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67448", + "0x38d7ea4c67060" + ] + }, + { + "pc": 7311, + "op": "SWAP2", + "gas": 2994692, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf6d", + "0x38d7ea4c67448", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x38d7ea4c67060", + "0x3e8", + "0x38d7ea4c67448", + "0x1103" + ] + }, + { + "pc": 7312, + "op": "POP", + "gas": 2994689, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf6d", + "0x38d7ea4c67448", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x38d7ea4c67060", + "0x1103", + "0x38d7ea4c67448", + "0x3e8" + ] + }, + { + "pc": 7313, + "op": "POP", + "gas": 2994687, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf6d", + "0x38d7ea4c67448", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x38d7ea4c67060", + "0x1103", + "0x38d7ea4c67448" + ] + }, + { + "pc": 7314, + "op": "JUMP", + "gas": 2994685, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf6d", + "0x38d7ea4c67448", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x38d7ea4c67060", + "0x1103" + ] + }, + { + "pc": 4355, + "op": "JUMPDEST", + "gas": 2994677, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf6d", + "0x38d7ea4c67448", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x38d7ea4c67060" + ] + }, + { + "pc": 4356, + "op": "SWAP1", + "gas": 2994676, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf6d", + "0x38d7ea4c67448", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x38d7ea4c67060" + ] + }, + { + "pc": 4357, + "op": "POP", + "gas": 2994673, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf6d", + "0x38d7ea4c67448", + "0x3e8", + "0x80", + "0x0", + "0x38d7ea4c67060", + "0x0" + ] + }, + { + "pc": 4358, + "op": "DUP1", + "gas": 2994671, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf6d", + "0x38d7ea4c67448", + "0x3e8", + "0x80", + "0x0", + "0x38d7ea4c67060" + ] + }, + { + "pc": 4359, + "op": "SWAP2", + "gas": 2994668, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf6d", + "0x38d7ea4c67448", + "0x3e8", + "0x80", + "0x0", + "0x38d7ea4c67060", + "0x38d7ea4c67060" + ] + }, + { + "pc": 4360, + "op": "POP", + "gas": 2994665, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf6d", + "0x38d7ea4c67448", + "0x3e8", + "0x80", + "0x38d7ea4c67060", + "0x38d7ea4c67060", + "0x0" + ] + }, + { + "pc": 4361, + "op": "POP", + "gas": 2994663, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf6d", + "0x38d7ea4c67448", + "0x3e8", + "0x80", + "0x38d7ea4c67060", + "0x38d7ea4c67060" + ] + }, + { + "pc": 4362, + "op": "SWAP4", + "gas": 2994661, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0xf6d", + "0x38d7ea4c67448", + "0x3e8", + "0x80", + "0x38d7ea4c67060" + ] + }, + { + "pc": 4363, + "op": "SWAP3", + "gas": 2994658, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x38d7ea4c67060", + "0x38d7ea4c67448", + "0x3e8", + "0x80", + "0xf6d" + ] + }, + { + "pc": 4364, + "op": "POP", + "gas": 2994655, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x38d7ea4c67060", + "0xf6d", + "0x3e8", + "0x80", + "0x38d7ea4c67448" + ] + }, + { + "pc": 4365, + "op": "POP", + "gas": 2994653, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x38d7ea4c67060", + "0xf6d", + "0x3e8", + "0x80" + ] + }, + { + "pc": 4366, + "op": "POP", + "gas": 2994651, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x38d7ea4c67060", + "0xf6d", + "0x3e8" + ] + }, + { + "pc": 4367, + "op": "JUMP", + "gas": 2994649, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x38d7ea4c67060", + "0xf6d" + ] + }, + { + "pc": 3949, + "op": "JUMPDEST", + "gas": 2994641, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x38d7ea4c67060" + ] + }, + { + "pc": 3950, + "op": "PUSH1", + "gas": 2994640, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x38d7ea4c67060" + ] + }, + { + "pc": 3952, + "op": "DUP1", + "gas": 2994637, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x38d7ea4c67060", + "0x0" + ] + }, + { + "pc": 3953, + "op": "DUP6", + "gas": 2994634, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x38d7ea4c67060", + "0x0", + "0x0" + ] + }, + { + "pc": 3954, + "op": "PUSH20", + "gas": 2994631, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x38d7ea4c67060", + "0x0", + "0x0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 3975, + "op": "AND", + "gas": 2994628, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x38d7ea4c67060", + "0x0", + "0x0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 3976, + "op": "PUSH20", + "gas": 2994625, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x38d7ea4c67060", + "0x0", + "0x0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 3997, + "op": "AND", + "gas": 2994622, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x38d7ea4c67060", + "0x0", + "0x0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 3998, + "op": "DUP2", + "gas": 2994619, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x38d7ea4c67060", + "0x0", + "0x0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 3999, + "op": "MSTORE", + "gas": 2994616, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x38d7ea4c67060", + "0x0", + "0x0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0" + ] + }, + { + "pc": 4000, + "op": "PUSH1", + "gas": 2994613, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x38d7ea4c67060", + "0x0", + "0x0" + ] + }, + { + "pc": 4002, + "op": "ADD", + "gas": 2994610, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x38d7ea4c67060", + "0x0", + "0x0", + "0x20" + ] + }, + { + "pc": 4003, + "op": "SWAP1", + "gas": 2994607, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x38d7ea4c67060", + "0x0", + "0x20" + ] + }, + { + "pc": 4004, + "op": "DUP2", + "gas": 2994604, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x38d7ea4c67060", + "0x20", + "0x0" + ] + }, + { + "pc": 4005, + "op": "MSTORE", + "gas": 2994601, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x38d7ea4c67060", + "0x20", + "0x0", + "0x20" + ] + }, + { + "pc": 4006, + "op": "PUSH1", + "gas": 2994598, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x38d7ea4c67060", + "0x20" + ] + }, + { + "pc": 4008, + "op": "ADD", + "gas": 2994595, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x38d7ea4c67060", + "0x20", + "0x20" + ] + }, + { + "pc": 4009, + "op": "PUSH1", + "gas": 2994592, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x38d7ea4c67060", + "0x40" + ] + }, + { + "pc": 4011, + "op": "SHA3", + "gas": 2994589, + "gasCost": 42, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x38d7ea4c67060", + "0x40", + "0x0" + ] + }, + { + "pc": 4012, + "op": "DUP2", + "gas": 2994547, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x38d7ea4c67060", + "0x5a158573daab1c353835da34297290f5f813859e4bb52de641691b875502523f" + ] + }, + { + "pc": 4013, + "op": "SWAP1", + "gas": 2994544, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x38d7ea4c67060", + "0x5a158573daab1c353835da34297290f5f813859e4bb52de641691b875502523f", + "0x38d7ea4c67060" + ] + }, + { + "pc": 4014, + "op": "SSTORE", + "gas": 2994541, + "gasCost": 2900, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x38d7ea4c67060", + "0x38d7ea4c67060", + "0x5a158573daab1c353835da34297290f5f813859e4bb52de641691b875502523f" + ], + "storage": { + "0x0000000000000000000000000000000000000000000000000000000000000005": "0x000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd65710012", + "0x5a158573daab1c353835da34297290f5f813859e4bb52de641691b875502523f": "0x00000000000000000000000000000000000000000000000000038d7ea4c67060" + }, + "extraData": { + "proofList": [ + { + "address": "0x34041eff1f32989bdaa95875e0f41afd6294dcd4", + "nonce": 1, + "balance": "0x0", + "codeHash": "0x9b5ea0519f6e20c36338989b6accc7cf3384eac2f0a083e82730bca177544409", + "storage": { + "key": "0x5a158573daab1c353835da34297290f5f813859e4bb52de641691b875502523f", + "value": "0x00000000000000000000000000000000000000000000000000038d7ea4c67448" + } + } + ] + } + }, + { + "pc": 4015, + "op": "POP", + "gas": 2991641, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x38d7ea4c67060" + ] + }, + { + "pc": 4016, + "op": "PUSH2", + "gas": 2991639, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8" + ] + }, + { + "pc": 4019, + "op": "DUP2", + "gas": 2991636, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1000" + ] + }, + { + "pc": 4020, + "op": "PUSH1", + "gas": 2991633, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1000", + "0x3e8" + ] + }, + { + "pc": 4022, + "op": "DUP1", + "gas": 2991630, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1000", + "0x3e8", + "0x0" + ] + }, + { + "pc": 4023, + "op": "DUP6", + "gas": 2991627, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1000", + "0x3e8", + "0x0", + "0x0" + ] + }, + { + "pc": 4024, + "op": "PUSH20", + "gas": 2991624, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1000", + "0x3e8", + "0x0", + "0x0", + "0x3" + ] + }, + { + "pc": 4045, + "op": "AND", + "gas": 2991621, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1000", + "0x3e8", + "0x0", + "0x0", + "0x3", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 4046, + "op": "PUSH20", + "gas": 2991618, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1000", + "0x3e8", + "0x0", + "0x0", + "0x3" + ] + }, + { + "pc": 4067, + "op": "AND", + "gas": 2991615, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1000", + "0x3e8", + "0x0", + "0x0", + "0x3", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 4068, + "op": "DUP2", + "gas": 2991612, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1000", + "0x3e8", + "0x0", + "0x0", + "0x3" + ] + }, + { + "pc": 4069, + "op": "MSTORE", + "gas": 2991609, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1000", + "0x3e8", + "0x0", + "0x0", + "0x3", + "0x0" + ] + }, + { + "pc": 4070, + "op": "PUSH1", + "gas": 2991606, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1000", + "0x3e8", + "0x0", + "0x0" + ] + }, + { + "pc": 4072, + "op": "ADD", + "gas": 2991603, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1000", + "0x3e8", + "0x0", + "0x0", + "0x20" + ] + }, + { + "pc": 4073, + "op": "SWAP1", + "gas": 2991600, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1000", + "0x3e8", + "0x0", + "0x20" + ] + }, + { + "pc": 4074, + "op": "DUP2", + "gas": 2991597, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1000", + "0x3e8", + "0x20", + "0x0" + ] + }, + { + "pc": 4075, + "op": "MSTORE", + "gas": 2991594, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1000", + "0x3e8", + "0x20", + "0x0", + "0x20" + ] + }, + { + "pc": 4076, + "op": "PUSH1", + "gas": 2991591, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1000", + "0x3e8", + "0x20" + ] + }, + { + "pc": 4078, + "op": "ADD", + "gas": 2991588, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1000", + "0x3e8", + "0x20", + "0x20" + ] + }, + { + "pc": 4079, + "op": "PUSH1", + "gas": 2991585, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1000", + "0x3e8", + "0x40" + ] + }, + { + "pc": 4081, + "op": "SHA3", + "gas": 2991582, + "gasCost": 42, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1000", + "0x3e8", + "0x40", + "0x0" + ] + }, + { + "pc": 4082, + "op": "SLOAD", + "gas": 2991540, + "gasCost": 2100, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1000", + "0x3e8", + "0x101e368776582e57ab3d116ffe2517c0a585cd5b23174b01e275c2d8329c3d83" + ], + "storage": { + "0x0000000000000000000000000000000000000000000000000000000000000005": "0x000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd65710012", + "0x101e368776582e57ab3d116ffe2517c0a585cd5b23174b01e275c2d8329c3d83": "0x0000000000000000000000000000000000000000000000000000000000000000", + "0x5a158573daab1c353835da34297290f5f813859e4bb52de641691b875502523f": "0x00000000000000000000000000000000000000000000000000038d7ea4c67060" + }, + "extraData": { + "proofList": [ + { + "address": "0x34041eff1f32989bdaa95875e0f41afd6294dcd4", + "nonce": 1, + "balance": "0x0", + "codeHash": "0x9b5ea0519f6e20c36338989b6accc7cf3384eac2f0a083e82730bca177544409", + "storage": { + "key": "0x101e368776582e57ab3d116ffe2517c0a585cd5b23174b01e275c2d8329c3d83", + "value": "0x0000000000000000000000000000000000000000000000000000000000000000" + } + } + ] + } + }, + { + "pc": 4083, + "op": "PUSH2", + "gas": 2989440, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1000", + "0x3e8", + "0x0" + ] + }, + { + "pc": 4086, + "op": "SWAP1", + "gas": 2989437, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1000", + "0x3e8", + "0x0", + "0x1110" + ] + }, + { + "pc": 4087, + "op": "SWAP2", + "gas": 2989434, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1000", + "0x3e8", + "0x1110", + "0x0" + ] + }, + { + "pc": 4088, + "op": "SWAP1", + "gas": 2989431, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1000", + "0x0", + "0x1110", + "0x3e8" + ] + }, + { + "pc": 4089, + "op": "PUSH4", + "gas": 2989428, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x1110" + ] + }, + { + "pc": 4094, + "op": "AND", + "gas": 2989425, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x1110", + "0xffffffff" + ] + }, + { + "pc": 4095, + "op": "JUMP", + "gas": 2989422, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x1110" + ] + }, + { + "pc": 4368, + "op": "JUMPDEST", + "gas": 2989414, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1000", + "0x0", + "0x3e8" + ] + }, + { + "pc": 4369, + "op": "PUSH1", + "gas": 2989413, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1000", + "0x0", + "0x3e8" + ] + }, + { + "pc": 4371, + "op": "DUP1", + "gas": 2989410, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0" + ] + }, + { + "pc": 4372, + "op": "DUP3", + "gas": 2989407, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0" + ] + }, + { + "pc": 4373, + "op": "DUP5", + "gas": 2989404, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x3e8" + ] + }, + { + "pc": 4374, + "op": "PUSH2", + "gas": 2989401, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x3e8", + "0x0" + ] + }, + { + "pc": 4377, + "op": "SWAP2", + "gas": 2989398, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x3e8", + "0x0", + "0x111f" + ] + }, + { + "pc": 4378, + "op": "SWAP1", + "gas": 2989395, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x0", + "0x3e8" + ] + }, + { + "pc": 4379, + "op": "PUSH2", + "gas": 2989392, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0" + ] + }, + { + "pc": 4382, + "op": "JUMP", + "gas": 2989389, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x1c09" + ] + }, + { + "pc": 7177, + "op": "JUMPDEST", + "gas": 2989381, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0" + ] + }, + { + "pc": 7178, + "op": "PUSH1", + "gas": 2989380, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0" + ] + }, + { + "pc": 7180, + "op": "PUSH2", + "gas": 2989377, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0" + ] + }, + { + "pc": 7183, + "op": "DUP3", + "gas": 2989374, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x1c14" + ] + }, + { + "pc": 7184, + "op": "PUSH2", + "gas": 2989371, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x1c14", + "0x0" + ] + }, + { + "pc": 7187, + "op": "JUMP", + "gas": 2989368, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x1c14", + "0x0", + "0x1cd1" + ] + }, + { + "pc": 7377, + "op": "JUMPDEST", + "gas": 2989360, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x1c14", + "0x0" + ] + }, + { + "pc": 7378, + "op": "PUSH1", + "gas": 2989359, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x1c14", + "0x0" + ] + }, + { + "pc": 7380, + "op": "DUP2", + "gas": 2989356, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x1c14", + "0x0", + "0x0" + ] + }, + { + "pc": 7381, + "op": "SWAP1", + "gas": 2989353, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x1c14", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 7382, + "op": "POP", + "gas": 2989350, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x1c14", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 7383, + "op": "SWAP2", + "gas": 2989348, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x1c14", + "0x0", + "0x0" + ] + }, + { + "pc": 7384, + "op": "SWAP1", + "gas": 2989345, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x0", + "0x0", + "0x1c14" + ] + }, + { + "pc": 7385, + "op": "POP", + "gas": 2989342, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x0", + "0x1c14", + "0x0" + ] + }, + { + "pc": 7386, + "op": "JUMP", + "gas": 2989340, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x0", + "0x1c14" + ] + }, + { + "pc": 7188, + "op": "JUMPDEST", + "gas": 2989332, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 7189, + "op": "SWAP2", + "gas": 2989331, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 7190, + "op": "POP", + "gas": 2989328, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 7191, + "op": "PUSH2", + "gas": 2989326, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0" + ] + }, + { + "pc": 7194, + "op": "DUP4", + "gas": 2989323, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x1c1f" + ] + }, + { + "pc": 7195, + "op": "PUSH2", + "gas": 2989320, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x1c1f", + "0x3e8" + ] + }, + { + "pc": 7198, + "op": "JUMP", + "gas": 2989317, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x1c1f", + "0x3e8", + "0x1cd1" + ] + }, + { + "pc": 7377, + "op": "JUMPDEST", + "gas": 2989309, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x1c1f", + "0x3e8" + ] + }, + { + "pc": 7378, + "op": "PUSH1", + "gas": 2989308, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x1c1f", + "0x3e8" + ] + }, + { + "pc": 7380, + "op": "DUP2", + "gas": 2989305, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x1c1f", + "0x3e8", + "0x0" + ] + }, + { + "pc": 7381, + "op": "SWAP1", + "gas": 2989302, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x1c1f", + "0x3e8", + "0x0", + "0x3e8" + ] + }, + { + "pc": 7382, + "op": "POP", + "gas": 2989299, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x1c1f", + "0x3e8", + "0x3e8", + "0x0" + ] + }, + { + "pc": 7383, + "op": "SWAP2", + "gas": 2989297, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x1c1f", + "0x3e8", + "0x3e8" + ] + }, + { + "pc": 7384, + "op": "SWAP1", + "gas": 2989294, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x3e8", + "0x3e8", + "0x1c1f" + ] + }, + { + "pc": 7385, + "op": "POP", + "gas": 2989291, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x3e8", + "0x1c1f", + "0x3e8" + ] + }, + { + "pc": 7386, + "op": "JUMP", + "gas": 2989289, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x3e8", + "0x1c1f" + ] + }, + { + "pc": 7199, + "op": "JUMPDEST", + "gas": 2989281, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x3e8" + ] + }, + { + "pc": 7200, + "op": "SWAP3", + "gas": 2989280, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x3e8" + ] + }, + { + "pc": 7201, + "op": "POP", + "gas": 2989277, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x3e8" + ] + }, + { + "pc": 7202, + "op": "DUP3", + "gas": 2989275, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0" + ] + }, + { + "pc": 7203, + "op": "PUSH32", + "gas": 2989272, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x3e8" + ] + }, + { + "pc": 7236, + "op": "SUB", + "gas": 2989269, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x3e8", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 7237, + "op": "DUP3", + "gas": 2989266, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc17" + ] + }, + { + "pc": 7238, + "op": "GT", + "gas": 2989263, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc17", + "0x0" + ] + }, + { + "pc": 7239, + "op": "ISZERO", + "gas": 2989260, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 7240, + "op": "PUSH2", + "gas": 2989257, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x1" + ] + }, + { + "pc": 7243, + "op": "JUMPI", + "gas": 2989254, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x1", + "0x1c54" + ] + }, + { + "pc": 7252, + "op": "JUMPDEST", + "gas": 2989244, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0" + ] + }, + { + "pc": 7253, + "op": "DUP3", + "gas": 2989243, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0" + ] + }, + { + "pc": 7254, + "op": "DUP3", + "gas": 2989240, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x3e8" + ] + }, + { + "pc": 7255, + "op": "ADD", + "gas": 2989237, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x3e8", + "0x0" + ] + }, + { + "pc": 7256, + "op": "SWAP1", + "gas": 2989234, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x3e8" + ] + }, + { + "pc": 7257, + "op": "POP", + "gas": 2989231, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x3e8", + "0x0" + ] + }, + { + "pc": 7258, + "op": "SWAP3", + "gas": 2989229, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x3e8" + ] + }, + { + "pc": 7259, + "op": "SWAP2", + "gas": 2989226, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x3e8", + "0x3e8", + "0x0", + "0x111f" + ] + }, + { + "pc": 7260, + "op": "POP", + "gas": 2989223, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x3e8", + "0x111f", + "0x0", + "0x3e8" + ] + }, + { + "pc": 7261, + "op": "POP", + "gas": 2989221, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x3e8", + "0x111f", + "0x0" + ] + }, + { + "pc": 7262, + "op": "JUMP", + "gas": 2989219, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x3e8", + "0x111f" + ] + }, + { + "pc": 4383, + "op": "JUMPDEST", + "gas": 2989211, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x3e8" + ] + }, + { + "pc": 4384, + "op": "SWAP1", + "gas": 2989210, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x3e8" + ] + }, + { + "pc": 4385, + "op": "POP", + "gas": 2989207, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x3e8", + "0x0" + ] + }, + { + "pc": 4386, + "op": "DUP4", + "gas": 2989205, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x3e8" + ] + }, + { + "pc": 4387, + "op": "DUP2", + "gas": 2989202, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x3e8", + "0x0" + ] + }, + { + "pc": 4388, + "op": "LT", + "gas": 2989199, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x3e8", + "0x0", + "0x3e8" + ] + }, + { + "pc": 4389, + "op": "ISZERO", + "gas": 2989196, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x3e8", + "0x0" + ] + }, + { + "pc": 4390, + "op": "PUSH2", + "gas": 2989193, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x3e8", + "0x1" + ] + }, + { + "pc": 4393, + "op": "JUMPI", + "gas": 2989190, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x3e8", + "0x1", + "0x1164" + ] + }, + { + "pc": 4452, + "op": "JUMPDEST", + "gas": 2989180, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x3e8" + ] + }, + { + "pc": 4453, + "op": "DUP1", + "gas": 2989179, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x3e8" + ] + }, + { + "pc": 4454, + "op": "SWAP2", + "gas": 2989176, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x3e8", + "0x3e8" + ] + }, + { + "pc": 4455, + "op": "POP", + "gas": 2989173, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x3e8", + "0x3e8", + "0x0" + ] + }, + { + "pc": 4456, + "op": "POP", + "gas": 2989171, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x3e8", + "0x3e8" + ] + }, + { + "pc": 4457, + "op": "SWAP3", + "gas": 2989169, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x3e8" + ] + }, + { + "pc": 4458, + "op": "SWAP2", + "gas": 2989166, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x3e8", + "0x0", + "0x3e8", + "0x1000" + ] + }, + { + "pc": 4459, + "op": "POP", + "gas": 2989163, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x3e8", + "0x1000", + "0x3e8", + "0x0" + ] + }, + { + "pc": 4460, + "op": "POP", + "gas": 2989161, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x3e8", + "0x1000", + "0x3e8" + ] + }, + { + "pc": 4461, + "op": "JUMP", + "gas": 2989159, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x3e8", + "0x1000" + ] + }, + { + "pc": 4096, + "op": "JUMPDEST", + "gas": 2989151, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x3e8" + ] + }, + { + "pc": 4097, + "op": "PUSH1", + "gas": 2989150, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x3e8" + ] + }, + { + "pc": 4099, + "op": "DUP1", + "gas": 2989147, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x3e8", + "0x0" + ] + }, + { + "pc": 4100, + "op": "DUP5", + "gas": 2989144, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x3e8", + "0x0", + "0x0" + ] + }, + { + "pc": 4101, + "op": "PUSH20", + "gas": 2989141, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x3e8", + "0x0", + "0x0", + "0x3" + ] + }, + { + "pc": 4122, + "op": "AND", + "gas": 2989138, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x3e8", + "0x0", + "0x0", + "0x3", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 4123, + "op": "PUSH20", + "gas": 2989135, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x3e8", + "0x0", + "0x0", + "0x3" + ] + }, + { + "pc": 4144, + "op": "AND", + "gas": 2989132, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x3e8", + "0x0", + "0x0", + "0x3", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 4145, + "op": "DUP2", + "gas": 2989129, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x3e8", + "0x0", + "0x0", + "0x3" + ] + }, + { + "pc": 4146, + "op": "MSTORE", + "gas": 2989126, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x3e8", + "0x0", + "0x0", + "0x3", + "0x0" + ] + }, + { + "pc": 4147, + "op": "PUSH1", + "gas": 2989123, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x3e8", + "0x0", + "0x0" + ] + }, + { + "pc": 4149, + "op": "ADD", + "gas": 2989120, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x3e8", + "0x0", + "0x0", + "0x20" + ] + }, + { + "pc": 4150, + "op": "SWAP1", + "gas": 2989117, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x3e8", + "0x0", + "0x20" + ] + }, + { + "pc": 4151, + "op": "DUP2", + "gas": 2989114, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x3e8", + "0x20", + "0x0" + ] + }, + { + "pc": 4152, + "op": "MSTORE", + "gas": 2989111, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x3e8", + "0x20", + "0x0", + "0x20" + ] + }, + { + "pc": 4153, + "op": "PUSH1", + "gas": 2989108, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x3e8", + "0x20" + ] + }, + { + "pc": 4155, + "op": "ADD", + "gas": 2989105, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x3e8", + "0x20", + "0x20" + ] + }, + { + "pc": 4156, + "op": "PUSH1", + "gas": 2989102, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x3e8", + "0x40" + ] + }, + { + "pc": 4158, + "op": "SHA3", + "gas": 2989099, + "gasCost": 42, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x3e8", + "0x40", + "0x0" + ] + }, + { + "pc": 4159, + "op": "DUP2", + "gas": 2989057, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x3e8", + "0x101e368776582e57ab3d116ffe2517c0a585cd5b23174b01e275c2d8329c3d83" + ] + }, + { + "pc": 4160, + "op": "SWAP1", + "gas": 2989054, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x3e8", + "0x101e368776582e57ab3d116ffe2517c0a585cd5b23174b01e275c2d8329c3d83", + "0x3e8" + ] + }, + { + "pc": 4161, + "op": "SSTORE", + "gas": 2989051, + "gasCost": 20000, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x3e8", + "0x3e8", + "0x101e368776582e57ab3d116ffe2517c0a585cd5b23174b01e275c2d8329c3d83" + ], + "storage": { + "0x0000000000000000000000000000000000000000000000000000000000000005": "0x000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd65710012", + "0x101e368776582e57ab3d116ffe2517c0a585cd5b23174b01e275c2d8329c3d83": "0x00000000000000000000000000000000000000000000000000000000000003e8", + "0x5a158573daab1c353835da34297290f5f813859e4bb52de641691b875502523f": "0x00000000000000000000000000000000000000000000000000038d7ea4c67060" + }, + "extraData": { + "proofList": [ + { + "address": "0x34041eff1f32989bdaa95875e0f41afd6294dcd4", + "nonce": 1, + "balance": "0x0", + "codeHash": "0x9b5ea0519f6e20c36338989b6accc7cf3384eac2f0a083e82730bca177544409", + "storage": { + "key": "0x101e368776582e57ab3d116ffe2517c0a585cd5b23174b01e275c2d8329c3d83", + "value": "0x0000000000000000000000000000000000000000000000000000000000000000" + } + } + ] + } + }, + { + "pc": 4162, + "op": "POP", + "gas": 2969051, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x3e8" + ] + }, + { + "pc": 4163, + "op": "DUP2", + "gas": 2969049, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8" + ] + }, + { + "pc": 4164, + "op": "PUSH20", + "gas": 2969046, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x3" + ] + }, + { + "pc": 4185, + "op": "AND", + "gas": 2969043, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x3", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 4186, + "op": "DUP4", + "gas": 2969040, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x3" + ] + }, + { + "pc": 4187, + "op": "PUSH20", + "gas": 2969037, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 4208, + "op": "AND", + "gas": 2969034, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 4209, + "op": "PUSH32", + "gas": 2969031, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 4242, + "op": "DUP4", + "gas": 2969028, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef" + ] + }, + { + "pc": 4243, + "op": "PUSH1", + "gas": 2969025, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x3e8" + ] + }, + { + "pc": 4245, + "op": "MLOAD", + "gas": 2969022, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x3e8", + "0x40" + ] + }, + { + "pc": 4246, + "op": "PUSH2", + "gas": 2969019, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x3e8", + "0xe0" + ] + }, + { + "pc": 4249, + "op": "SWAP2", + "gas": 2969016, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x3e8", + "0xe0", + "0x109f" + ] + }, + { + "pc": 4250, + "op": "SWAP1", + "gas": 2969013, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0xe0", + "0x3e8" + ] + }, + { + "pc": 4251, + "op": "PUSH2", + "gas": 2969010, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0" + ] + }, + { + "pc": 4254, + "op": "JUMP", + "gas": 2969007, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x1bb7" + ] + }, + { + "pc": 7095, + "op": "JUMPDEST", + "gas": 2968999, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0" + ] + }, + { + "pc": 7096, + "op": "PUSH1", + "gas": 2968998, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0" + ] + }, + { + "pc": 7098, + "op": "PUSH1", + "gas": 2968995, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x0" + ] + }, + { + "pc": 7100, + "op": "DUP3", + "gas": 2968992, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x0", + "0x20" + ] + }, + { + "pc": 7101, + "op": "ADD", + "gas": 2968989, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x0", + "0x20", + "0xe0" + ] + }, + { + "pc": 7102, + "op": "SWAP1", + "gas": 2968986, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x0", + "0x100" + ] + }, + { + "pc": 7103, + "op": "POP", + "gas": 2968983, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x100", + "0x0" + ] + }, + { + "pc": 7104, + "op": "PUSH2", + "gas": 2968981, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x100" + ] + }, + { + "pc": 7107, + "op": "PUSH1", + "gas": 2968978, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x100", + "0x1bcc" + ] + }, + { + "pc": 7109, + "op": "DUP4", + "gas": 2968975, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x100", + "0x1bcc", + "0x0" + ] + }, + { + "pc": 7110, + "op": "ADD", + "gas": 2968972, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x100", + "0x1bcc", + "0x0", + "0xe0" + ] + }, + { + "pc": 7111, + "op": "DUP5", + "gas": 2968969, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x100", + "0x1bcc", + "0xe0" + ] + }, + { + "pc": 7112, + "op": "PUSH2", + "gas": 2968966, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x100", + "0x1bcc", + "0xe0", + "0x3e8" + ] + }, + { + "pc": 7115, + "op": "JUMP", + "gas": 2968963, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x100", + "0x1bcc", + "0xe0", + "0x3e8", + "0x19c1" + ] + }, + { + "pc": 6593, + "op": "JUMPDEST", + "gas": 2968955, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x100", + "0x1bcc", + "0xe0", + "0x3e8" + ] + }, + { + "pc": 6594, + "op": "PUSH2", + "gas": 2968954, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x100", + "0x1bcc", + "0xe0", + "0x3e8" + ] + }, + { + "pc": 6597, + "op": "DUP2", + "gas": 2968951, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x100", + "0x1bcc", + "0xe0", + "0x3e8", + "0x19ca" + ] + }, + { + "pc": 6598, + "op": "PUSH2", + "gas": 2968948, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x100", + "0x1bcc", + "0xe0", + "0x3e8", + "0x19ca", + "0x3e8" + ] + }, + { + "pc": 6601, + "op": "JUMP", + "gas": 2968945, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x100", + "0x1bcc", + "0xe0", + "0x3e8", + "0x19ca", + "0x3e8", + "0x1cd1" + ] + }, + { + "pc": 7377, + "op": "JUMPDEST", + "gas": 2968937, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x100", + "0x1bcc", + "0xe0", + "0x3e8", + "0x19ca", + "0x3e8" + ] + }, + { + "pc": 7378, + "op": "PUSH1", + "gas": 2968936, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x100", + "0x1bcc", + "0xe0", + "0x3e8", + "0x19ca", + "0x3e8" + ] + }, + { + "pc": 7380, + "op": "DUP2", + "gas": 2968933, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x100", + "0x1bcc", + "0xe0", + "0x3e8", + "0x19ca", + "0x3e8", + "0x0" + ] + }, + { + "pc": 7381, + "op": "SWAP1", + "gas": 2968930, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x100", + "0x1bcc", + "0xe0", + "0x3e8", + "0x19ca", + "0x3e8", + "0x0", + "0x3e8" + ] + }, + { + "pc": 7382, + "op": "POP", + "gas": 2968927, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x100", + "0x1bcc", + "0xe0", + "0x3e8", + "0x19ca", + "0x3e8", + "0x3e8", + "0x0" + ] + }, + { + "pc": 7383, + "op": "SWAP2", + "gas": 2968925, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x100", + "0x1bcc", + "0xe0", + "0x3e8", + "0x19ca", + "0x3e8", + "0x3e8" + ] + }, + { + "pc": 7384, + "op": "SWAP1", + "gas": 2968922, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x100", + "0x1bcc", + "0xe0", + "0x3e8", + "0x3e8", + "0x3e8", + "0x19ca" + ] + }, + { + "pc": 7385, + "op": "POP", + "gas": 2968919, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x100", + "0x1bcc", + "0xe0", + "0x3e8", + "0x3e8", + "0x19ca", + "0x3e8" + ] + }, + { + "pc": 7386, + "op": "JUMP", + "gas": 2968917, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x100", + "0x1bcc", + "0xe0", + "0x3e8", + "0x3e8", + "0x19ca" + ] + }, + { + "pc": 6602, + "op": "JUMPDEST", + "gas": 2968909, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x100", + "0x1bcc", + "0xe0", + "0x3e8", + "0x3e8" + ] + }, + { + "pc": 6603, + "op": "DUP3", + "gas": 2968908, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x100", + "0x1bcc", + "0xe0", + "0x3e8", + "0x3e8" + ] + }, + { + "pc": 6604, + "op": "MSTORE", + "gas": 2968905, + "gasCost": 6, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x100", + "0x1bcc", + "0xe0", + "0x3e8", + "0x3e8", + "0xe0" + ] + }, + { + "pc": 6605, + "op": "POP", + "gas": 2968899, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x100", + "0x1bcc", + "0xe0", + "0x3e8" + ] + }, + { + "pc": 6606, + "op": "POP", + "gas": 2968897, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x100", + "0x1bcc", + "0xe0" + ] + }, + { + "pc": 6607, + "op": "JUMP", + "gas": 2968895, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x100", + "0x1bcc" + ] + }, + { + "pc": 7116, + "op": "JUMPDEST", + "gas": 2968887, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x100" + ] + }, + { + "pc": 7117, + "op": "SWAP3", + "gas": 2968886, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x100" + ] + }, + { + "pc": 7118, + "op": "SWAP2", + "gas": 2968883, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x100", + "0x3e8", + "0xe0", + "0x109f" + ] + }, + { + "pc": 7119, + "op": "POP", + "gas": 2968880, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x100", + "0x109f", + "0xe0", + "0x3e8" + ] + }, + { + "pc": 7120, + "op": "POP", + "gas": 2968878, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x100", + "0x109f", + "0xe0" + ] + }, + { + "pc": 7121, + "op": "JUMP", + "gas": 2968876, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x100", + "0x109f" + ] + }, + { + "pc": 4255, + "op": "JUMPDEST", + "gas": 2968868, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x100" + ] + }, + { + "pc": 4256, + "op": "PUSH1", + "gas": 2968867, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x100" + ] + }, + { + "pc": 4258, + "op": "MLOAD", + "gas": 2968864, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x100", + "0x40" + ] + }, + { + "pc": 4259, + "op": "DUP1", + "gas": 2968861, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x100", + "0xe0" + ] + }, + { + "pc": 4260, + "op": "SWAP2", + "gas": 2968858, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x100", + "0xe0", + "0xe0" + ] + }, + { + "pc": 4261, + "op": "SUB", + "gas": 2968855, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0xe0", + "0xe0", + "0x100" + ] + }, + { + "pc": 4262, + "op": "SWAP1", + "gas": 2968852, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0xe0", + "0x20" + ] + }, + { + "pc": 4263, + "op": "LOG3", + "gas": 2968849, + "gasCost": 1756, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8", + "0x3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x20", + "0xe0" + ] + }, + { + "pc": 4264, + "op": "POP", + "gas": 2967093, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3", + "0x3e8" + ] + }, + { + "pc": 4265, + "op": "POP", + "gas": 2967091, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x3" + ] + }, + { + "pc": 4266, + "op": "POP", + "gas": 2967089, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 4267, + "op": "JUMP", + "gas": 2967087, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0xbb3" + ] + }, + { + "pc": 2995, + "op": "JUMPDEST", + "gas": 2967079, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0" + ] + }, + { + "pc": 2996, + "op": "PUSH1", + "gas": 2967078, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0" + ] + }, + { + "pc": 2998, + "op": "SWAP1", + "gas": 2967075, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x0", + "0x1" + ] + }, + { + "pc": 2999, + "op": "POP", + "gas": 2967072, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x1", + "0x0" + ] + }, + { + "pc": 3000, + "op": "SWAP3", + "gas": 2967070, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x3", + "0x3e8", + "0x1" + ] + }, + { + "pc": 3001, + "op": "SWAP2", + "gas": 2967067, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x1", + "0x3", + "0x3e8", + "0x318" + ] + }, + { + "pc": 3002, + "op": "POP", + "gas": 2967064, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x1", + "0x318", + "0x3e8", + "0x3" + ] + }, + { + "pc": 3003, + "op": "POP", + "gas": 2967062, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x1", + "0x318", + "0x3e8" + ] + }, + { + "pc": 3004, + "op": "JUMP", + "gas": 2967060, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x1", + "0x318" + ] + }, + { + "pc": 792, + "op": "JUMPDEST", + "gas": 2967052, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x1" + ] + }, + { + "pc": 793, + "op": "PUSH1", + "gas": 2967051, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x1" + ] + }, + { + "pc": 795, + "op": "MLOAD", + "gas": 2967048, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x1", + "0x40" + ] + }, + { + "pc": 796, + "op": "PUSH2", + "gas": 2967045, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x1", + "0xe0" + ] + }, + { + "pc": 799, + "op": "SWAP2", + "gas": 2967042, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x1", + "0xe0", + "0x325" + ] + }, + { + "pc": 800, + "op": "SWAP1", + "gas": 2967039, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0xe0", + "0x1" + ] + }, + { + "pc": 801, + "op": "PUSH2", + "gas": 2967036, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0" + ] + }, + { + "pc": 804, + "op": "JUMP", + "gas": 2967033, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x19fa" + ] + }, + { + "pc": 6650, + "op": "JUMPDEST", + "gas": 2967025, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0" + ] + }, + { + "pc": 6651, + "op": "PUSH1", + "gas": 2967024, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0" + ] + }, + { + "pc": 6653, + "op": "PUSH1", + "gas": 2967021, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x0" + ] + }, + { + "pc": 6655, + "op": "DUP3", + "gas": 2967018, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x0", + "0x20" + ] + }, + { + "pc": 6656, + "op": "ADD", + "gas": 2967015, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x0", + "0x20", + "0xe0" + ] + }, + { + "pc": 6657, + "op": "SWAP1", + "gas": 2967012, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x0", + "0x100" + ] + }, + { + "pc": 6658, + "op": "POP", + "gas": 2967009, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x100", + "0x0" + ] + }, + { + "pc": 6659, + "op": "PUSH2", + "gas": 2967007, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x100" + ] + }, + { + "pc": 6662, + "op": "PUSH1", + "gas": 2967004, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x100", + "0x1a0f" + ] + }, + { + "pc": 6664, + "op": "DUP4", + "gas": 2967001, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x100", + "0x1a0f", + "0x0" + ] + }, + { + "pc": 6665, + "op": "ADD", + "gas": 2966998, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x100", + "0x1a0f", + "0x0", + "0xe0" + ] + }, + { + "pc": 6666, + "op": "DUP5", + "gas": 2966995, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x100", + "0x1a0f", + "0xe0" + ] + }, + { + "pc": 6667, + "op": "PUSH2", + "gas": 2966992, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x100", + "0x1a0f", + "0xe0", + "0x1" + ] + }, + { + "pc": 6670, + "op": "JUMP", + "gas": 2966989, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x100", + "0x1a0f", + "0xe0", + "0x1", + "0x17d5" + ] + }, + { + "pc": 6101, + "op": "JUMPDEST", + "gas": 2966981, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x100", + "0x1a0f", + "0xe0", + "0x1" + ] + }, + { + "pc": 6102, + "op": "PUSH2", + "gas": 2966980, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x100", + "0x1a0f", + "0xe0", + "0x1" + ] + }, + { + "pc": 6105, + "op": "DUP2", + "gas": 2966977, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x100", + "0x1a0f", + "0xe0", + "0x1", + "0x17de" + ] + }, + { + "pc": 6106, + "op": "PUSH2", + "gas": 2966974, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x100", + "0x1a0f", + "0xe0", + "0x1", + "0x17de", + "0x1" + ] + }, + { + "pc": 6109, + "op": "JUMP", + "gas": 2966971, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x100", + "0x1a0f", + "0xe0", + "0x1", + "0x17de", + "0x1", + "0x1ca5" + ] + }, + { + "pc": 7333, + "op": "JUMPDEST", + "gas": 2966963, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x100", + "0x1a0f", + "0xe0", + "0x1", + "0x17de", + "0x1" + ] + }, + { + "pc": 7334, + "op": "PUSH1", + "gas": 2966962, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x100", + "0x1a0f", + "0xe0", + "0x1", + "0x17de", + "0x1" + ] + }, + { + "pc": 7336, + "op": "DUP2", + "gas": 2966959, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x100", + "0x1a0f", + "0xe0", + "0x1", + "0x17de", + "0x1", + "0x0" + ] + }, + { + "pc": 7337, + "op": "ISZERO", + "gas": 2966956, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x100", + "0x1a0f", + "0xe0", + "0x1", + "0x17de", + "0x1", + "0x0", + "0x1" + ] + }, + { + "pc": 7338, + "op": "ISZERO", + "gas": 2966953, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x100", + "0x1a0f", + "0xe0", + "0x1", + "0x17de", + "0x1", + "0x0", + "0x0" + ] + }, + { + "pc": 7339, + "op": "SWAP1", + "gas": 2966950, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x100", + "0x1a0f", + "0xe0", + "0x1", + "0x17de", + "0x1", + "0x0", + "0x1" + ] + }, + { + "pc": 7340, + "op": "POP", + "gas": 2966947, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x100", + "0x1a0f", + "0xe0", + "0x1", + "0x17de", + "0x1", + "0x1", + "0x0" + ] + }, + { + "pc": 7341, + "op": "SWAP2", + "gas": 2966945, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x100", + "0x1a0f", + "0xe0", + "0x1", + "0x17de", + "0x1", + "0x1" + ] + }, + { + "pc": 7342, + "op": "SWAP1", + "gas": 2966942, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x100", + "0x1a0f", + "0xe0", + "0x1", + "0x1", + "0x1", + "0x17de" + ] + }, + { + "pc": 7343, + "op": "POP", + "gas": 2966939, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x100", + "0x1a0f", + "0xe0", + "0x1", + "0x1", + "0x17de", + "0x1" + ] + }, + { + "pc": 7344, + "op": "JUMP", + "gas": 2966937, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x100", + "0x1a0f", + "0xe0", + "0x1", + "0x1", + "0x17de" + ] + }, + { + "pc": 6110, + "op": "JUMPDEST", + "gas": 2966929, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x100", + "0x1a0f", + "0xe0", + "0x1", + "0x1" + ] + }, + { + "pc": 6111, + "op": "DUP3", + "gas": 2966928, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x100", + "0x1a0f", + "0xe0", + "0x1", + "0x1" + ] + }, + { + "pc": 6112, + "op": "MSTORE", + "gas": 2966925, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x100", + "0x1a0f", + "0xe0", + "0x1", + "0x1", + "0xe0" + ] + }, + { + "pc": 6113, + "op": "POP", + "gas": 2966922, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x100", + "0x1a0f", + "0xe0", + "0x1" + ] + }, + { + "pc": 6114, + "op": "POP", + "gas": 2966920, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x100", + "0x1a0f", + "0xe0" + ] + }, + { + "pc": 6115, + "op": "JUMP", + "gas": 2966918, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x100", + "0x1a0f" + ] + }, + { + "pc": 6671, + "op": "JUMPDEST", + "gas": 2966910, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x100" + ] + }, + { + "pc": 6672, + "op": "SWAP3", + "gas": 2966909, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x100" + ] + }, + { + "pc": 6673, + "op": "SWAP2", + "gas": 2966906, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x100", + "0x1", + "0xe0", + "0x325" + ] + }, + { + "pc": 6674, + "op": "POP", + "gas": 2966903, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x100", + "0x325", + "0xe0", + "0x1" + ] + }, + { + "pc": 6675, + "op": "POP", + "gas": 2966901, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x100", + "0x325", + "0xe0" + ] + }, + { + "pc": 6676, + "op": "JUMP", + "gas": 2966899, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x100", + "0x325" + ] + }, + { + "pc": 805, + "op": "JUMPDEST", + "gas": 2966891, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x100" + ] + }, + { + "pc": 806, + "op": "PUSH1", + "gas": 2966890, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x100" + ] + }, + { + "pc": 808, + "op": "MLOAD", + "gas": 2966887, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x100", + "0x40" + ] + }, + { + "pc": 809, + "op": "DUP1", + "gas": 2966884, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x100", + "0xe0" + ] + }, + { + "pc": 810, + "op": "SWAP2", + "gas": 2966881, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x100", + "0xe0", + "0xe0" + ] + }, + { + "pc": 811, + "op": "SUB", + "gas": 2966878, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0xe0", + "0xe0", + "0x100" + ] + }, + { + "pc": 812, + "op": "SWAP1", + "gas": 2966875, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0xe0", + "0x20" + ] + }, + { + "pc": 813, + "op": "RETURN", + "gas": 2966872, + "gasCost": 0, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x20", + "0xe0" + ] + } + ] + }, + { + "gas": 54848, + "failed": false, + "returnValue": "0000000000000000000000000000000000000000000000000000000000000001", + "from": { + "address": "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "nonce": 79, + "balance": "0x56bc75e2d630ffffffffffffffffffffffffffffffffffff4b254eaf9829a8", + "codeHash": "0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470" + }, + "to": { + "address": "0x34041eff1f32989bdaa95875e0f41afd6294dcd4", + "nonce": 1, + "balance": "0x0", + "codeHash": "0x9b5ea0519f6e20c36338989b6accc7cf3384eac2f0a083e82730bca177544409" + }, + "accountAfter": [ + { + "address": "0x34041eff1f32989bdaa95875e0f41afd6294dcd4", + "nonce": 1, + "balance": "0x0", + "codeHash": "0x9b5ea0519f6e20c36338989b6accc7cf3384eac2f0a083e82730bca177544409" + }, + { + "address": "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "nonce": 80, + "balance": "0x56bc75e2d630ffffffffffffffffffffffffffffffffffff4b2540ddf13a68", + "codeHash": "0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470" + } + ], + "codeHash": "0x9b5ea0519f6e20c36338989b6accc7cf3384eac2f0a083e82730bca177544409", + "byteCode": "0x608060405234801561001057600080fd5b506004361061010b5760003560e01c80635c975abb116100a257806395d89b411161007157806395d89b41146102945780639dc29fac146102b2578063a457c2d7146102ce578063a9059cbb146102fe578063dd62ed3e1461032e5761010b565b80635c975abb1461022057806370a082311461023e5780638456cb591461026e5780638e50817a146102785761010b565b8063313ce567116100de578063313ce567146101ac57806339509351146101ca5780633f4ba83a146101fa57806340c10f19146102045761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015e57806323b872dd1461017c575b600080fd5b61011861035e565b6040516101259190611a15565b60405180910390f35b6101486004803603810190610143919061178a565b6103f0565b60405161015591906119fa565b60405180910390f35b61016661040e565b6040516101739190611bb7565b60405180910390f35b6101966004803603810190610191919061173b565b610418565b6040516101a391906119fa565b60405180910390f35b6101b46104f1565b6040516101c19190611bd2565b60405180910390f35b6101e460048036038101906101df919061178a565b610508565b6040516101f191906119fa565b60405180910390f35b6102026105bb565b005b61021e6004803603810190610219919061178a565b610655565b005b610228610743565b60405161023591906119fa565b60405180910390f35b610258600480360381019061025391906116d6565b61075a565b6040516102659190611bb7565b60405180910390f35b6102766107a2565b005b610292600480360381019061028d91906116ff565b61083c565b005b61029c610952565b6040516102a99190611a15565b60405180910390f35b6102cc60048036038101906102c7919061178a565b6109e4565b005b6102e860048036038101906102e3919061178a565b610ad2565b6040516102f591906119fa565b60405180910390f35b6103186004803603810190610313919061178a565b610b9f565b60405161032591906119fa565b60405180910390f35b610348600480360381019061034391906116ff565b610bbd565b6040516103559190611bb7565b60405180910390f35b60606003805461036d90611d51565b80601f016020809104026020016040519081016040528092919081815260200182805461039990611d51565b80156103e65780601f106103bb576101008083540402835291602001916103e6565b820191906000526020600020905b8154815290600101906020018083116103c957829003601f168201915b5050505050905090565b60006104046103fd610c44565b8484610c4c565b6001905092915050565b6000600254905090565b6000610425848484610e17565b6104e684610431610c44565b6104e18560405180606001604052806028815260200161213960289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610497610c44565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110ac9092919063ffffffff16565b610c4c565b600190509392505050565b6000600560009054906101000a900460ff16905090565b60006105b1610515610c44565b846105ac8560016000610526610c44565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461111090919063ffffffff16565b610c4c565b6001905092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461064b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161064290611ab7565b60405180910390fd5b61065361116e565b565b600560019054906101000a900460ff16156106a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161069c90611ad7565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610735576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161072c90611ab7565b60405180910390fd5b61073f8282611218565b5050565b6000600560019054906101000a900460ff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610832576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082990611ab7565b60405180910390fd5b61083a6113ac565b565b600560029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146108cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c390611b37565b60405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b60606004805461096190611d51565b80601f016020809104026020016040519081016040528092919081815260200182805461098d90611d51565b80156109da5780601f106109af576101008083540402835291602001916109da565b820191906000526020600020905b8154815290600101906020018083116109bd57829003601f168201915b5050505050905090565b600560019054906101000a900460ff1615610a34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2b90611ad7565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610ac4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abb90611ab7565b60405180910390fd5b610ace8282611457565b5050565b6000610b95610adf610c44565b84610b90856040518060600160405280602581526020016121616025913960016000610b09610c44565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110ac9092919063ffffffff16565b610c4c565b6001905092915050565b6000610bb3610bac610c44565b8484610e17565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb390611b57565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2390611a77565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e0a9190611bb7565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7e90611b17565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ef7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eee90611a37565b60405180910390fd5b610f02838383611605565b610f6d81604051806060016040528060268152602001612113602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110ac9092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611000816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461111090919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161109f9190611bb7565b60405180910390a3505050565b60008383111582906110f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110eb9190611a15565b60405180910390fd5b50600083856111039190611c5f565b9050809150509392505050565b600080828461111f9190611c09565b905083811015611164576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115b90611a97565b60405180910390fd5b8091505092915050565b600560019054906101000a900460ff166111bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b490611a57565b60405180910390fd5b6000600560016101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611201610c44565b60405161120e91906119df565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611288576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127f90611b77565b60405180910390fd5b61129460008383611605565b6112a98160025461111090919063ffffffff16565b600281905550611300816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461111090919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516113a09190611bb7565b60405180910390a35050565b600560019054906101000a900460ff16156113fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f390611ad7565b60405180910390fd5b6001600560016101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611440610c44565b60405161144d91906119df565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114be90611af7565b60405180910390fd5b6114d382600083611605565b61153e816040518060600160405280602281526020016120f1602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110ac9092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506115958160025461165d90919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516115f99190611bb7565b60405180910390a35050565b6116108383836116a7565b611618610743565b15611658576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164f90611b97565b60405180910390fd5b505050565b600061169f83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506110ac565b905092915050565b505050565b6000813590506116bb816120c2565b92915050565b6000813590506116d0816120d9565b92915050565b6000602082840312156116e857600080fd5b60006116f6848285016116ac565b91505092915050565b6000806040838503121561171257600080fd5b6000611720858286016116ac565b9250506020611731858286016116ac565b9150509250929050565b60008060006060848603121561175057600080fd5b600061175e868287016116ac565b935050602061176f868287016116ac565b9250506040611780868287016116c1565b9150509250925092565b6000806040838503121561179d57600080fd5b60006117ab858286016116ac565b92505060206117bc858286016116c1565b9150509250929050565b6117cf81611ce8565b82525050565b6117de81611ca5565b82525050565b60006117ef82611bed565b6117f98185611bf8565b9350611809818560208601611d1e565b61181281611de1565b840191505092915050565b600061182a602383611bf8565b915061183582611df2565b604082019050919050565b600061184d601483611bf8565b915061185882611e41565b602082019050919050565b6000611870602283611bf8565b915061187b82611e6a565b604082019050919050565b6000611893601b83611bf8565b915061189e82611eb9565b602082019050919050565b60006118b6600b83611bf8565b91506118c182611ee2565b602082019050919050565b60006118d9601083611bf8565b91506118e482611f0b565b602082019050919050565b60006118fc602183611bf8565b915061190782611f34565b604082019050919050565b600061191f602583611bf8565b915061192a82611f83565b604082019050919050565b6000611942600c83611bf8565b915061194d82611fd2565b602082019050919050565b6000611965602483611bf8565b915061197082611ffb565b604082019050919050565b6000611988601f83611bf8565b91506119938261204a565b602082019050919050565b60006119ab602a83611bf8565b91506119b682612073565b604082019050919050565b6119ca81611cd1565b82525050565b6119d981611cdb565b82525050565b60006020820190506119f460008301846117c6565b92915050565b6000602082019050611a0f60008301846117d5565b92915050565b60006020820190508181036000830152611a2f81846117e4565b905092915050565b60006020820190508181036000830152611a508161181d565b9050919050565b60006020820190508181036000830152611a7081611840565b9050919050565b60006020820190508181036000830152611a9081611863565b9050919050565b60006020820190508181036000830152611ab081611886565b9050919050565b60006020820190508181036000830152611ad0816118a9565b9050919050565b60006020820190508181036000830152611af0816118cc565b9050919050565b60006020820190508181036000830152611b10816118ef565b9050919050565b60006020820190508181036000830152611b3081611912565b9050919050565b60006020820190508181036000830152611b5081611935565b9050919050565b60006020820190508181036000830152611b7081611958565b9050919050565b60006020820190508181036000830152611b908161197b565b9050919050565b60006020820190508181036000830152611bb08161199e565b9050919050565b6000602082019050611bcc60008301846119c1565b92915050565b6000602082019050611be760008301846119d0565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611c1482611cd1565b9150611c1f83611cd1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611c5457611c53611d83565b5b828201905092915050565b6000611c6a82611cd1565b9150611c7583611cd1565b925082821015611c8857611c87611d83565b5b828203905092915050565b6000611c9e82611cb1565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b6000611cf382611cfa565b9050919050565b6000611d0582611d0c565b9050919050565b6000611d1782611cb1565b9050919050565b60005b83811015611d3c578082015181840152602081019050611d21565b83811115611d4b576000848401525b50505050565b60006002820490506001821680611d6957607f821691505b60208210811415611d7d57611d7c611db2565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b7f6e6f7420616c6c6f776564000000000000000000000000000000000000000000600082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f6f6e6c7920466163746f72790000000000000000000000000000000000000000600082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b7f45524332305061757361626c653a20746f6b656e207472616e7366657220776860008201527f696c652070617573656400000000000000000000000000000000000000000000602082015250565b6120cb81611c93565b81146120d657600080fd5b50565b6120e281611cd1565b81146120ed57600080fd5b5056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122050720249c11bf2bf6da8b1770af05168068be0eee81154cac03b74b0ab3b6a3f64736f6c63430008040033", + "structLogs": [ + { + "pc": 0, + "op": "PUSH1", + "gas": 3000364, + "gasCost": 3, + "depth": 1 + }, + { + "pc": 2, + "op": "PUSH1", + "gas": 3000361, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x80" + ] + }, + { + "pc": 4, + "op": "MSTORE", + "gas": 3000358, + "gasCost": 12, + "depth": 1, + "stack": [ + "0x80", + "0x40" + ] + }, + { + "pc": 5, + "op": "CALLVALUE", + "gas": 3000346, + "gasCost": 2, + "depth": 1 + }, + { + "pc": 6, + "op": "DUP1", + "gas": 3000344, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 7, + "op": "ISZERO", + "gas": 3000341, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0", + "0x0" + ] + }, + { + "pc": 8, + "op": "PUSH2", + "gas": 3000338, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0", + "0x1" + ] + }, + { + "pc": 11, + "op": "JUMPI", + "gas": 3000335, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x0", + "0x1", + "0x10" + ] + }, + { + "pc": 16, + "op": "JUMPDEST", + "gas": 3000325, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 17, + "op": "POP", + "gas": 3000324, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 18, + "op": "PUSH1", + "gas": 3000322, + "gasCost": 3, + "depth": 1 + }, + { + "pc": 20, + "op": "CALLDATASIZE", + "gas": 3000319, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x4" + ] + }, + { + "pc": 21, + "op": "LT", + "gas": 3000317, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x4", + "0x44" + ] + }, + { + "pc": 22, + "op": "PUSH2", + "gas": 3000314, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 25, + "op": "JUMPI", + "gas": 3000311, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x0", + "0x10b" + ] + }, + { + "pc": 26, + "op": "PUSH1", + "gas": 3000301, + "gasCost": 3, + "depth": 1 + }, + { + "pc": 28, + "op": "CALLDATALOAD", + "gas": 3000298, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x0" + ] + }, + { + "pc": 29, + "op": "PUSH1", + "gas": 3000295, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb00000000000000000000000000000000000000000000000000000000" + ] + }, + { + "pc": 31, + "op": "SHR", + "gas": 3000292, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb00000000000000000000000000000000000000000000000000000000", + "0xe0" + ] + }, + { + "pc": 32, + "op": "DUP1", + "gas": 3000289, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb" + ] + }, + { + "pc": 33, + "op": "PUSH4", + "gas": 3000286, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0xa9059cbb" + ] + }, + { + "pc": 38, + "op": "GT", + "gas": 3000283, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0xa9059cbb", + "0x5c975abb" + ] + }, + { + "pc": 39, + "op": "PUSH2", + "gas": 3000280, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x0" + ] + }, + { + "pc": 42, + "op": "JUMPI", + "gas": 3000277, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x0", + "0xa2" + ] + }, + { + "pc": 43, + "op": "DUP1", + "gas": 3000267, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb" + ] + }, + { + "pc": 44, + "op": "PUSH4", + "gas": 3000264, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0xa9059cbb" + ] + }, + { + "pc": 49, + "op": "GT", + "gas": 3000261, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0xa9059cbb", + "0x95d89b41" + ] + }, + { + "pc": 50, + "op": "PUSH2", + "gas": 3000258, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x0" + ] + }, + { + "pc": 53, + "op": "JUMPI", + "gas": 3000255, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x0", + "0x71" + ] + }, + { + "pc": 54, + "op": "DUP1", + "gas": 3000245, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb" + ] + }, + { + "pc": 55, + "op": "PUSH4", + "gas": 3000242, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0xa9059cbb" + ] + }, + { + "pc": 60, + "op": "EQ", + "gas": 3000239, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0xa9059cbb", + "0x95d89b41" + ] + }, + { + "pc": 61, + "op": "PUSH2", + "gas": 3000236, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x0" + ] + }, + { + "pc": 64, + "op": "JUMPI", + "gas": 3000233, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x0", + "0x294" + ] + }, + { + "pc": 65, + "op": "DUP1", + "gas": 3000223, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb" + ] + }, + { + "pc": 66, + "op": "PUSH4", + "gas": 3000220, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0xa9059cbb" + ] + }, + { + "pc": 71, + "op": "EQ", + "gas": 3000217, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0xa9059cbb", + "0x9dc29fac" + ] + }, + { + "pc": 72, + "op": "PUSH2", + "gas": 3000214, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x0" + ] + }, + { + "pc": 75, + "op": "JUMPI", + "gas": 3000211, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x0", + "0x2b2" + ] + }, + { + "pc": 76, + "op": "DUP1", + "gas": 3000201, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb" + ] + }, + { + "pc": 77, + "op": "PUSH4", + "gas": 3000198, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0xa9059cbb" + ] + }, + { + "pc": 82, + "op": "EQ", + "gas": 3000195, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0xa9059cbb", + "0xa457c2d7" + ] + }, + { + "pc": 83, + "op": "PUSH2", + "gas": 3000192, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x0" + ] + }, + { + "pc": 86, + "op": "JUMPI", + "gas": 3000189, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x0", + "0x2ce" + ] + }, + { + "pc": 87, + "op": "DUP1", + "gas": 3000179, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb" + ] + }, + { + "pc": 88, + "op": "PUSH4", + "gas": 3000176, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0xa9059cbb" + ] + }, + { + "pc": 93, + "op": "EQ", + "gas": 3000173, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0xa9059cbb", + "0xa9059cbb" + ] + }, + { + "pc": 94, + "op": "PUSH2", + "gas": 3000170, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x1" + ] + }, + { + "pc": 97, + "op": "JUMPI", + "gas": 3000167, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x1", + "0x2fe" + ] + }, + { + "pc": 766, + "op": "JUMPDEST", + "gas": 3000157, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb" + ] + }, + { + "pc": 767, + "op": "PUSH2", + "gas": 3000156, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb" + ] + }, + { + "pc": 770, + "op": "PUSH1", + "gas": 3000153, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318" + ] + }, + { + "pc": 772, + "op": "DUP1", + "gas": 3000150, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4" + ] + }, + { + "pc": 773, + "op": "CALLDATASIZE", + "gas": 3000147, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x4" + ] + }, + { + "pc": 774, + "op": "SUB", + "gas": 3000145, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x4", + "0x44" + ] + }, + { + "pc": 775, + "op": "DUP2", + "gas": 3000142, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x40" + ] + }, + { + "pc": 776, + "op": "ADD", + "gas": 3000139, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x40", + "0x4" + ] + }, + { + "pc": 777, + "op": "SWAP1", + "gas": 3000136, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x44" + ] + }, + { + "pc": 778, + "op": "PUSH2", + "gas": 3000133, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x44", + "0x4" + ] + }, + { + "pc": 781, + "op": "SWAP2", + "gas": 3000130, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x44", + "0x4", + "0x313" + ] + }, + { + "pc": 782, + "op": "SWAP1", + "gas": 3000127, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x4", + "0x44" + ] + }, + { + "pc": 783, + "op": "PUSH2", + "gas": 3000124, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4" + ] + }, + { + "pc": 786, + "op": "JUMP", + "gas": 3000121, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x178a" + ] + }, + { + "pc": 6026, + "op": "JUMPDEST", + "gas": 3000113, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4" + ] + }, + { + "pc": 6027, + "op": "PUSH1", + "gas": 3000112, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4" + ] + }, + { + "pc": 6029, + "op": "DUP1", + "gas": 3000109, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0" + ] + }, + { + "pc": 6030, + "op": "PUSH1", + "gas": 3000106, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0" + ] + }, + { + "pc": 6032, + "op": "DUP4", + "gas": 3000103, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x40" + ] + }, + { + "pc": 6033, + "op": "DUP6", + "gas": 3000100, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x40", + "0x4" + ] + }, + { + "pc": 6034, + "op": "SUB", + "gas": 3000097, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x40", + "0x4", + "0x44" + ] + }, + { + "pc": 6035, + "op": "SLT", + "gas": 3000094, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x40", + "0x40" + ] + }, + { + "pc": 6036, + "op": "ISZERO", + "gas": 3000091, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 6037, + "op": "PUSH2", + "gas": 3000088, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x1" + ] + }, + { + "pc": 6040, + "op": "JUMPI", + "gas": 3000085, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x1", + "0x179d" + ] + }, + { + "pc": 6045, + "op": "JUMPDEST", + "gas": 3000075, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0" + ] + }, + { + "pc": 6046, + "op": "PUSH1", + "gas": 3000074, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0" + ] + }, + { + "pc": 6048, + "op": "PUSH2", + "gas": 3000071, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 6051, + "op": "DUP6", + "gas": 3000068, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab" + ] + }, + { + "pc": 6052, + "op": "DUP3", + "gas": 3000065, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44" + ] + }, + { + "pc": 6053, + "op": "DUP7", + "gas": 3000062, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x0" + ] + }, + { + "pc": 6054, + "op": "ADD", + "gas": 3000059, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x0", + "0x4" + ] + }, + { + "pc": 6055, + "op": "PUSH2", + "gas": 3000056, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4" + ] + }, + { + "pc": 6058, + "op": "JUMP", + "gas": 3000053, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x16ac" + ] + }, + { + "pc": 5804, + "op": "JUMPDEST", + "gas": 3000045, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4" + ] + }, + { + "pc": 5805, + "op": "PUSH1", + "gas": 3000044, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4" + ] + }, + { + "pc": 5807, + "op": "DUP2", + "gas": 3000041, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x0" + ] + }, + { + "pc": 5808, + "op": "CALLDATALOAD", + "gas": 3000038, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x0", + "0x4" + ] + }, + { + "pc": 5809, + "op": "SWAP1", + "gas": 3000035, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x0", + "0x4" + ] + }, + { + "pc": 5810, + "op": "POP", + "gas": 3000032, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x4", + "0x0" + ] + }, + { + "pc": 5811, + "op": "PUSH2", + "gas": 3000030, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x4" + ] + }, + { + "pc": 5814, + "op": "DUP2", + "gas": 3000027, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x4", + "0x16bb" + ] + }, + { + "pc": 5815, + "op": "PUSH2", + "gas": 3000024, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x4", + "0x16bb", + "0x4" + ] + }, + { + "pc": 5818, + "op": "JUMP", + "gas": 3000021, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x4", + "0x16bb", + "0x4", + "0x20c2" + ] + }, + { + "pc": 8386, + "op": "JUMPDEST", + "gas": 3000013, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x4", + "0x16bb", + "0x4" + ] + }, + { + "pc": 8387, + "op": "PUSH2", + "gas": 3000012, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x4", + "0x16bb", + "0x4" + ] + }, + { + "pc": 8390, + "op": "DUP2", + "gas": 3000009, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x4", + "0x16bb", + "0x4", + "0x20cb" + ] + }, + { + "pc": 8391, + "op": "PUSH2", + "gas": 3000006, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x4", + "0x16bb", + "0x4", + "0x20cb", + "0x4" + ] + }, + { + "pc": 8394, + "op": "JUMP", + "gas": 3000003, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x4", + "0x16bb", + "0x4", + "0x20cb", + "0x4", + "0x1c93" + ] + }, + { + "pc": 7315, + "op": "JUMPDEST", + "gas": 2999995, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x4", + "0x16bb", + "0x4", + "0x20cb", + "0x4" + ] + }, + { + "pc": 7316, + "op": "PUSH1", + "gas": 2999994, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x4", + "0x16bb", + "0x4", + "0x20cb", + "0x4" + ] + }, + { + "pc": 7318, + "op": "PUSH2", + "gas": 2999991, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x4", + "0x16bb", + "0x4", + "0x20cb", + "0x4", + "0x0" + ] + }, + { + "pc": 7321, + "op": "DUP3", + "gas": 2999988, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x4", + "0x16bb", + "0x4", + "0x20cb", + "0x4", + "0x0", + "0x1c9e" + ] + }, + { + "pc": 7322, + "op": "PUSH2", + "gas": 2999985, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x4", + "0x16bb", + "0x4", + "0x20cb", + "0x4", + "0x0", + "0x1c9e", + "0x4" + ] + }, + { + "pc": 7325, + "op": "JUMP", + "gas": 2999982, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x4", + "0x16bb", + "0x4", + "0x20cb", + "0x4", + "0x0", + "0x1c9e", + "0x4", + "0x1cb1" + ] + }, + { + "pc": 7345, + "op": "JUMPDEST", + "gas": 2999974, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x4", + "0x16bb", + "0x4", + "0x20cb", + "0x4", + "0x0", + "0x1c9e", + "0x4" + ] + }, + { + "pc": 7346, + "op": "PUSH1", + "gas": 2999973, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x4", + "0x16bb", + "0x4", + "0x20cb", + "0x4", + "0x0", + "0x1c9e", + "0x4" + ] + }, + { + "pc": 7348, + "op": "PUSH20", + "gas": 2999970, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x4", + "0x16bb", + "0x4", + "0x20cb", + "0x4", + "0x0", + "0x1c9e", + "0x4", + "0x0" + ] + }, + { + "pc": 7369, + "op": "DUP3", + "gas": 2999967, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x4", + "0x16bb", + "0x4", + "0x20cb", + "0x4", + "0x0", + "0x1c9e", + "0x4", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 7370, + "op": "AND", + "gas": 2999964, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x4", + "0x16bb", + "0x4", + "0x20cb", + "0x4", + "0x0", + "0x1c9e", + "0x4", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x4" + ] + }, + { + "pc": 7371, + "op": "SWAP1", + "gas": 2999961, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x4", + "0x16bb", + "0x4", + "0x20cb", + "0x4", + "0x0", + "0x1c9e", + "0x4", + "0x0", + "0x4" + ] + }, + { + "pc": 7372, + "op": "POP", + "gas": 2999958, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x4", + "0x16bb", + "0x4", + "0x20cb", + "0x4", + "0x0", + "0x1c9e", + "0x4", + "0x4", + "0x0" + ] + }, + { + "pc": 7373, + "op": "SWAP2", + "gas": 2999956, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x4", + "0x16bb", + "0x4", + "0x20cb", + "0x4", + "0x0", + "0x1c9e", + "0x4", + "0x4" + ] + }, + { + "pc": 7374, + "op": "SWAP1", + "gas": 2999953, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x4", + "0x16bb", + "0x4", + "0x20cb", + "0x4", + "0x0", + "0x4", + "0x4", + "0x1c9e" + ] + }, + { + "pc": 7375, + "op": "POP", + "gas": 2999950, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x4", + "0x16bb", + "0x4", + "0x20cb", + "0x4", + "0x0", + "0x4", + "0x1c9e", + "0x4" + ] + }, + { + "pc": 7376, + "op": "JUMP", + "gas": 2999948, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x4", + "0x16bb", + "0x4", + "0x20cb", + "0x4", + "0x0", + "0x4", + "0x1c9e" + ] + }, + { + "pc": 7326, + "op": "JUMPDEST", + "gas": 2999940, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x4", + "0x16bb", + "0x4", + "0x20cb", + "0x4", + "0x0", + "0x4" + ] + }, + { + "pc": 7327, + "op": "SWAP1", + "gas": 2999939, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x4", + "0x16bb", + "0x4", + "0x20cb", + "0x4", + "0x0", + "0x4" + ] + }, + { + "pc": 7328, + "op": "POP", + "gas": 2999936, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x4", + "0x16bb", + "0x4", + "0x20cb", + "0x4", + "0x4", + "0x0" + ] + }, + { + "pc": 7329, + "op": "SWAP2", + "gas": 2999934, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x4", + "0x16bb", + "0x4", + "0x20cb", + "0x4", + "0x4" + ] + }, + { + "pc": 7330, + "op": "SWAP1", + "gas": 2999931, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x4", + "0x16bb", + "0x4", + "0x4", + "0x4", + "0x20cb" + ] + }, + { + "pc": 7331, + "op": "POP", + "gas": 2999928, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x4", + "0x16bb", + "0x4", + "0x4", + "0x20cb", + "0x4" + ] + }, + { + "pc": 7332, + "op": "JUMP", + "gas": 2999926, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x4", + "0x16bb", + "0x4", + "0x4", + "0x20cb" + ] + }, + { + "pc": 8395, + "op": "JUMPDEST", + "gas": 2999918, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x4", + "0x16bb", + "0x4", + "0x4" + ] + }, + { + "pc": 8396, + "op": "DUP2", + "gas": 2999917, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x4", + "0x16bb", + "0x4", + "0x4" + ] + }, + { + "pc": 8397, + "op": "EQ", + "gas": 2999914, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x4", + "0x16bb", + "0x4", + "0x4", + "0x4" + ] + }, + { + "pc": 8398, + "op": "PUSH2", + "gas": 2999911, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x4", + "0x16bb", + "0x4", + "0x1" + ] + }, + { + "pc": 8401, + "op": "JUMPI", + "gas": 2999908, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x4", + "0x16bb", + "0x4", + "0x1", + "0x20d6" + ] + }, + { + "pc": 8406, + "op": "JUMPDEST", + "gas": 2999898, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x4", + "0x16bb", + "0x4" + ] + }, + { + "pc": 8407, + "op": "POP", + "gas": 2999897, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x4", + "0x16bb", + "0x4" + ] + }, + { + "pc": 8408, + "op": "JUMP", + "gas": 2999895, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x4", + "0x16bb" + ] + }, + { + "pc": 5819, + "op": "JUMPDEST", + "gas": 2999887, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x4" + ] + }, + { + "pc": 5820, + "op": "SWAP3", + "gas": 2999886, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x17ab", + "0x44", + "0x4", + "0x4" + ] + }, + { + "pc": 5821, + "op": "SWAP2", + "gas": 2999883, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x4", + "0x44", + "0x4", + "0x17ab" + ] + }, + { + "pc": 5822, + "op": "POP", + "gas": 2999880, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x4", + "0x17ab", + "0x4", + "0x44" + ] + }, + { + "pc": 5823, + "op": "POP", + "gas": 2999878, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x4", + "0x17ab", + "0x4" + ] + }, + { + "pc": 5824, + "op": "JUMP", + "gas": 2999876, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x4", + "0x17ab" + ] + }, + { + "pc": 6059, + "op": "JUMPDEST", + "gas": 2999868, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x4" + ] + }, + { + "pc": 6060, + "op": "SWAP3", + "gas": 2999867, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x0", + "0x0", + "0x0", + "0x4" + ] + }, + { + "pc": 6061, + "op": "POP", + "gas": 2999864, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x4", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 6062, + "op": "POP", + "gas": 2999862, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x4", + "0x0", + "0x0" + ] + }, + { + "pc": 6063, + "op": "PUSH1", + "gas": 2999860, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x4", + "0x0" + ] + }, + { + "pc": 6065, + "op": "PUSH2", + "gas": 2999857, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x4", + "0x0", + "0x20" + ] + }, + { + "pc": 6068, + "op": "DUP6", + "gas": 2999854, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x4", + "0x0", + "0x20", + "0x17bc" + ] + }, + { + "pc": 6069, + "op": "DUP3", + "gas": 2999851, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x4", + "0x0", + "0x20", + "0x17bc", + "0x44" + ] + }, + { + "pc": 6070, + "op": "DUP7", + "gas": 2999848, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x4", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x20" + ] + }, + { + "pc": 6071, + "op": "ADD", + "gas": 2999845, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x4", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x20", + "0x4" + ] + }, + { + "pc": 6072, + "op": "PUSH2", + "gas": 2999842, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x4", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24" + ] + }, + { + "pc": 6075, + "op": "JUMP", + "gas": 2999839, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x4", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x16c1" + ] + }, + { + "pc": 5825, + "op": "JUMPDEST", + "gas": 2999831, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x4", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24" + ] + }, + { + "pc": 5826, + "op": "PUSH1", + "gas": 2999830, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x4", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24" + ] + }, + { + "pc": 5828, + "op": "DUP2", + "gas": 2999827, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x4", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x0" + ] + }, + { + "pc": 5829, + "op": "CALLDATALOAD", + "gas": 2999824, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x4", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x0", + "0x24" + ] + }, + { + "pc": 5830, + "op": "SWAP1", + "gas": 2999821, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x4", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x0", + "0x3e8" + ] + }, + { + "pc": 5831, + "op": "POP", + "gas": 2999818, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x4", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8", + "0x0" + ] + }, + { + "pc": 5832, + "op": "PUSH2", + "gas": 2999816, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x4", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8" + ] + }, + { + "pc": 5835, + "op": "DUP2", + "gas": 2999813, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x4", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8", + "0x16d0" + ] + }, + { + "pc": 5836, + "op": "PUSH2", + "gas": 2999810, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x4", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8", + "0x16d0", + "0x3e8" + ] + }, + { + "pc": 5839, + "op": "JUMP", + "gas": 2999807, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x4", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8", + "0x16d0", + "0x3e8", + "0x20d9" + ] + }, + { + "pc": 8409, + "op": "JUMPDEST", + "gas": 2999799, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x4", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8", + "0x16d0", + "0x3e8" + ] + }, + { + "pc": 8410, + "op": "PUSH2", + "gas": 2999798, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x4", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8", + "0x16d0", + "0x3e8" + ] + }, + { + "pc": 8413, + "op": "DUP2", + "gas": 2999795, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x4", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8", + "0x16d0", + "0x3e8", + "0x20e2" + ] + }, + { + "pc": 8414, + "op": "PUSH2", + "gas": 2999792, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x4", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8", + "0x16d0", + "0x3e8", + "0x20e2", + "0x3e8" + ] + }, + { + "pc": 8417, + "op": "JUMP", + "gas": 2999789, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x4", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8", + "0x16d0", + "0x3e8", + "0x20e2", + "0x3e8", + "0x1cd1" + ] + }, + { + "pc": 7377, + "op": "JUMPDEST", + "gas": 2999781, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x4", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8", + "0x16d0", + "0x3e8", + "0x20e2", + "0x3e8" + ] + }, + { + "pc": 7378, + "op": "PUSH1", + "gas": 2999780, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x4", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8", + "0x16d0", + "0x3e8", + "0x20e2", + "0x3e8" + ] + }, + { + "pc": 7380, + "op": "DUP2", + "gas": 2999777, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x4", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8", + "0x16d0", + "0x3e8", + "0x20e2", + "0x3e8", + "0x0" + ] + }, + { + "pc": 7381, + "op": "SWAP1", + "gas": 2999774, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x4", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8", + "0x16d0", + "0x3e8", + "0x20e2", + "0x3e8", + "0x0", + "0x3e8" + ] + }, + { + "pc": 7382, + "op": "POP", + "gas": 2999771, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x4", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8", + "0x16d0", + "0x3e8", + "0x20e2", + "0x3e8", + "0x3e8", + "0x0" + ] + }, + { + "pc": 7383, + "op": "SWAP2", + "gas": 2999769, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x4", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8", + "0x16d0", + "0x3e8", + "0x20e2", + "0x3e8", + "0x3e8" + ] + }, + { + "pc": 7384, + "op": "SWAP1", + "gas": 2999766, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x4", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8", + "0x16d0", + "0x3e8", + "0x3e8", + "0x3e8", + "0x20e2" + ] + }, + { + "pc": 7385, + "op": "POP", + "gas": 2999763, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x4", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8", + "0x16d0", + "0x3e8", + "0x3e8", + "0x20e2", + "0x3e8" + ] + }, + { + "pc": 7386, + "op": "JUMP", + "gas": 2999761, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x4", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8", + "0x16d0", + "0x3e8", + "0x3e8", + "0x20e2" + ] + }, + { + "pc": 8418, + "op": "JUMPDEST", + "gas": 2999753, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x4", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8", + "0x16d0", + "0x3e8", + "0x3e8" + ] + }, + { + "pc": 8419, + "op": "DUP2", + "gas": 2999752, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x4", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8", + "0x16d0", + "0x3e8", + "0x3e8" + ] + }, + { + "pc": 8420, + "op": "EQ", + "gas": 2999749, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x4", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8", + "0x16d0", + "0x3e8", + "0x3e8", + "0x3e8" + ] + }, + { + "pc": 8421, + "op": "PUSH2", + "gas": 2999746, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x4", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8", + "0x16d0", + "0x3e8", + "0x1" + ] + }, + { + "pc": 8424, + "op": "JUMPI", + "gas": 2999743, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x4", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8", + "0x16d0", + "0x3e8", + "0x1", + "0x20ed" + ] + }, + { + "pc": 8429, + "op": "JUMPDEST", + "gas": 2999733, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x4", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8", + "0x16d0", + "0x3e8" + ] + }, + { + "pc": 8430, + "op": "POP", + "gas": 2999732, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x4", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8", + "0x16d0", + "0x3e8" + ] + }, + { + "pc": 8431, + "op": "JUMP", + "gas": 2999730, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x4", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8", + "0x16d0" + ] + }, + { + "pc": 5840, + "op": "JUMPDEST", + "gas": 2999722, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x4", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8" + ] + }, + { + "pc": 5841, + "op": "SWAP3", + "gas": 2999721, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x4", + "0x0", + "0x20", + "0x17bc", + "0x44", + "0x24", + "0x3e8" + ] + }, + { + "pc": 5842, + "op": "SWAP2", + "gas": 2999718, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x4", + "0x0", + "0x20", + "0x3e8", + "0x44", + "0x24", + "0x17bc" + ] + }, + { + "pc": 5843, + "op": "POP", + "gas": 2999715, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x4", + "0x0", + "0x20", + "0x3e8", + "0x17bc", + "0x24", + "0x44" + ] + }, + { + "pc": 5844, + "op": "POP", + "gas": 2999713, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x4", + "0x0", + "0x20", + "0x3e8", + "0x17bc", + "0x24" + ] + }, + { + "pc": 5845, + "op": "JUMP", + "gas": 2999711, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x4", + "0x0", + "0x20", + "0x3e8", + "0x17bc" + ] + }, + { + "pc": 6076, + "op": "JUMPDEST", + "gas": 2999703, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x4", + "0x0", + "0x20", + "0x3e8" + ] + }, + { + "pc": 6077, + "op": "SWAP2", + "gas": 2999702, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x4", + "0x0", + "0x20", + "0x3e8" + ] + }, + { + "pc": 6078, + "op": "POP", + "gas": 2999699, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x4", + "0x3e8", + "0x20", + "0x0" + ] + }, + { + "pc": 6079, + "op": "POP", + "gas": 2999697, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x4", + "0x3e8", + "0x20" + ] + }, + { + "pc": 6080, + "op": "SWAP3", + "gas": 2999695, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x44", + "0x4", + "0x4", + "0x3e8" + ] + }, + { + "pc": 6081, + "op": "POP", + "gas": 2999692, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x3e8", + "0x4", + "0x4", + "0x44" + ] + }, + { + "pc": 6082, + "op": "SWAP3", + "gas": 2999690, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x313", + "0x3e8", + "0x4", + "0x4" + ] + }, + { + "pc": 6083, + "op": "SWAP1", + "gas": 2999687, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x4", + "0x313" + ] + }, + { + "pc": 6084, + "op": "POP", + "gas": 2999684, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x313", + "0x4" + ] + }, + { + "pc": 6085, + "op": "JUMP", + "gas": 2999682, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x313" + ] + }, + { + "pc": 787, + "op": "JUMPDEST", + "gas": 2999674, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8" + ] + }, + { + "pc": 788, + "op": "PUSH2", + "gas": 2999673, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8" + ] + }, + { + "pc": 791, + "op": "JUMP", + "gas": 2999670, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0xb9f" + ] + }, + { + "pc": 2975, + "op": "JUMPDEST", + "gas": 2999662, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8" + ] + }, + { + "pc": 2976, + "op": "PUSH1", + "gas": 2999661, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8" + ] + }, + { + "pc": 2978, + "op": "PUSH2", + "gas": 2999658, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0" + ] + }, + { + "pc": 2981, + "op": "PUSH2", + "gas": 2999655, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3" + ] + }, + { + "pc": 2984, + "op": "PUSH2", + "gas": 2999652, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0xbac" + ] + }, + { + "pc": 2987, + "op": "JUMP", + "gas": 2999649, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0xbac", + "0xc44" + ] + }, + { + "pc": 3140, + "op": "JUMPDEST", + "gas": 2999641, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0xbac" + ] + }, + { + "pc": 3141, + "op": "PUSH1", + "gas": 2999640, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0xbac" + ] + }, + { + "pc": 3143, + "op": "CALLER", + "gas": 2999637, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0xbac", + "0x0" + ] + }, + { + "pc": 3144, + "op": "SWAP1", + "gas": 2999635, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0xbac", + "0x0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 3145, + "op": "POP", + "gas": 2999632, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0xbac", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0" + ] + }, + { + "pc": 3146, + "op": "SWAP1", + "gas": 2999630, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0xbac", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 3147, + "op": "JUMP", + "gas": 2999627, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xbac" + ] + }, + { + "pc": 2988, + "op": "JUMPDEST", + "gas": 2999619, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 2989, + "op": "DUP5", + "gas": 2999618, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 2990, + "op": "DUP5", + "gas": 2999615, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4" + ] + }, + { + "pc": 2991, + "op": "PUSH2", + "gas": 2999612, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8" + ] + }, + { + "pc": 2994, + "op": "JUMP", + "gas": 2999609, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xe17" + ] + }, + { + "pc": 3607, + "op": "JUMPDEST", + "gas": 2999601, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8" + ] + }, + { + "pc": 3608, + "op": "PUSH1", + "gas": 2999600, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8" + ] + }, + { + "pc": 3610, + "op": "PUSH20", + "gas": 2999597, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x0" + ] + }, + { + "pc": 3631, + "op": "AND", + "gas": 2999594, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 3632, + "op": "DUP4", + "gas": 2999591, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x0" + ] + }, + { + "pc": 3633, + "op": "PUSH20", + "gas": 2999588, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 3654, + "op": "AND", + "gas": 2999585, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 3655, + "op": "EQ", + "gas": 2999582, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 3656, + "op": "ISZERO", + "gas": 2999579, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x0" + ] + }, + { + "pc": 3657, + "op": "PUSH2", + "gas": 2999576, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1" + ] + }, + { + "pc": 3660, + "op": "JUMPI", + "gas": 2999573, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1", + "0xe87" + ] + }, + { + "pc": 3719, + "op": "JUMPDEST", + "gas": 2999563, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8" + ] + }, + { + "pc": 3720, + "op": "PUSH1", + "gas": 2999562, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8" + ] + }, + { + "pc": 3722, + "op": "PUSH20", + "gas": 2999559, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x0" + ] + }, + { + "pc": 3743, + "op": "AND", + "gas": 2999556, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 3744, + "op": "DUP3", + "gas": 2999553, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x0" + ] + }, + { + "pc": 3745, + "op": "PUSH20", + "gas": 2999550, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x0", + "0x4" + ] + }, + { + "pc": 3766, + "op": "AND", + "gas": 2999547, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x0", + "0x4", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 3767, + "op": "EQ", + "gas": 2999544, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x0", + "0x4" + ] + }, + { + "pc": 3768, + "op": "ISZERO", + "gas": 2999541, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x0" + ] + }, + { + "pc": 3769, + "op": "PUSH2", + "gas": 2999538, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1" + ] + }, + { + "pc": 3772, + "op": "JUMPI", + "gas": 2999535, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1", + "0xef7" + ] + }, + { + "pc": 3831, + "op": "JUMPDEST", + "gas": 2999525, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8" + ] + }, + { + "pc": 3832, + "op": "PUSH2", + "gas": 2999524, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8" + ] + }, + { + "pc": 3835, + "op": "DUP4", + "gas": 2999521, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf02" + ] + }, + { + "pc": 3836, + "op": "DUP4", + "gas": 2999518, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 3837, + "op": "DUP4", + "gas": 2999515, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4" + ] + }, + { + "pc": 3838, + "op": "PUSH2", + "gas": 2999512, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8" + ] + }, + { + "pc": 3841, + "op": "JUMP", + "gas": 2999509, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1605" + ] + }, + { + "pc": 5637, + "op": "JUMPDEST", + "gas": 2999501, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8" + ] + }, + { + "pc": 5638, + "op": "PUSH2", + "gas": 2999500, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8" + ] + }, + { + "pc": 5641, + "op": "DUP4", + "gas": 2999497, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1610" + ] + }, + { + "pc": 5642, + "op": "DUP4", + "gas": 2999494, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1610", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 5643, + "op": "DUP4", + "gas": 2999491, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1610", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4" + ] + }, + { + "pc": 5644, + "op": "PUSH2", + "gas": 2999488, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1610", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8" + ] + }, + { + "pc": 5647, + "op": "JUMP", + "gas": 2999485, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1610", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x16a7" + ] + }, + { + "pc": 5799, + "op": "JUMPDEST", + "gas": 2999477, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1610", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8" + ] + }, + { + "pc": 5800, + "op": "POP", + "gas": 2999476, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1610", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8" + ] + }, + { + "pc": 5801, + "op": "POP", + "gas": 2999474, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1610", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4" + ] + }, + { + "pc": 5802, + "op": "POP", + "gas": 2999472, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1610", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 5803, + "op": "JUMP", + "gas": 2999470, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1610" + ] + }, + { + "pc": 5648, + "op": "JUMPDEST", + "gas": 2999462, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8" + ] + }, + { + "pc": 5649, + "op": "PUSH2", + "gas": 2999461, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8" + ] + }, + { + "pc": 5652, + "op": "PUSH2", + "gas": 2999458, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1618" + ] + }, + { + "pc": 5655, + "op": "JUMP", + "gas": 2999455, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1618", + "0x743" + ] + }, + { + "pc": 1859, + "op": "JUMPDEST", + "gas": 2999447, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1618" + ] + }, + { + "pc": 1860, + "op": "PUSH1", + "gas": 2999446, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1618" + ] + }, + { + "pc": 1862, + "op": "PUSH1", + "gas": 2999443, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1618", + "0x0" + ] + }, + { + "pc": 1864, + "op": "PUSH1", + "gas": 2999440, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1618", + "0x0", + "0x5" + ] + }, + { + "pc": 1866, + "op": "SWAP1", + "gas": 2999437, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1618", + "0x0", + "0x5", + "0x1" + ] + }, + { + "pc": 1867, + "op": "SLOAD", + "gas": 2999434, + "gasCost": 2100, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1618", + "0x0", + "0x1", + "0x5" + ], + "storage": { + "0x0000000000000000000000000000000000000000000000000000000000000005": "0x000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd65710012" + }, + "extraData": { + "proofList": [ + { + "address": "0x34041eff1f32989bdaa95875e0f41afd6294dcd4", + "nonce": 1, + "balance": "0x0", + "codeHash": "0x9b5ea0519f6e20c36338989b6accc7cf3384eac2f0a083e82730bca177544409", + "storage": { + "key": "0x0000000000000000000000000000000000000000000000000000000000000005", + "value": "0x000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd65710012" + } + } + ] + } + }, + { + "pc": 1868, + "op": "SWAP1", + "gas": 2997334, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1618", + "0x0", + "0x1", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd65710012" + ] + }, + { + "pc": 1869, + "op": "PUSH2", + "gas": 2997331, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1618", + "0x0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd65710012", + "0x1" + ] + }, + { + "pc": 1872, + "op": "EXP", + "gas": 2997328, + "gasCost": 60, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1618", + "0x0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd65710012", + "0x1", + "0x100" + ] + }, + { + "pc": 1873, + "op": "SWAP1", + "gas": 2997268, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1618", + "0x0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd65710012", + "0x100" + ] + }, + { + "pc": 1874, + "op": "DIV", + "gas": 2997265, + "gasCost": 5, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1618", + "0x0", + "0x100", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd65710012" + ] + }, + { + "pc": 1875, + "op": "PUSH1", + "gas": 2997260, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1618", + "0x0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd657100" + ] + }, + { + "pc": 1877, + "op": "AND", + "gas": 2997257, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1618", + "0x0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd657100", + "0xff" + ] + }, + { + "pc": 1878, + "op": "SWAP1", + "gas": 2997254, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1618", + "0x0", + "0x0" + ] + }, + { + "pc": 1879, + "op": "POP", + "gas": 2997251, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1618", + "0x0", + "0x0" + ] + }, + { + "pc": 1880, + "op": "SWAP1", + "gas": 2997249, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1618", + "0x0" + ] + }, + { + "pc": 1881, + "op": "JUMP", + "gas": 2997246, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x0", + "0x1618" + ] + }, + { + "pc": 5656, + "op": "JUMPDEST", + "gas": 2997238, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x0" + ] + }, + { + "pc": 5657, + "op": "ISZERO", + "gas": 2997237, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x0" + ] + }, + { + "pc": 5658, + "op": "PUSH2", + "gas": 2997234, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1" + ] + }, + { + "pc": 5661, + "op": "JUMPI", + "gas": 2997231, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1", + "0x1658" + ] + }, + { + "pc": 5720, + "op": "JUMPDEST", + "gas": 2997221, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8" + ] + }, + { + "pc": 5721, + "op": "POP", + "gas": 2997220, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8" + ] + }, + { + "pc": 5722, + "op": "POP", + "gas": 2997218, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4" + ] + }, + { + "pc": 5723, + "op": "POP", + "gas": 2997216, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 5724, + "op": "JUMP", + "gas": 2997214, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf02" + ] + }, + { + "pc": 3842, + "op": "JUMPDEST", + "gas": 2997206, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8" + ] + }, + { + "pc": 3843, + "op": "PUSH2", + "gas": 2997205, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8" + ] + }, + { + "pc": 3846, + "op": "DUP2", + "gas": 2997202, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf6d" + ] + }, + { + "pc": 3847, + "op": "PUSH1", + "gas": 2997199, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf6d", + "0x3e8" + ] + }, + { + "pc": 3849, + "op": "MLOAD", + "gas": 2997196, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf6d", + "0x3e8", + "0x40" + ] + }, + { + "pc": 3850, + "op": "DUP1", + "gas": 2997193, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80" + ] + }, + { + "pc": 3851, + "op": "PUSH1", + "gas": 2997190, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x80" + ] + }, + { + "pc": 3853, + "op": "ADD", + "gas": 2997187, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x80", + "0x60" + ] + }, + { + "pc": 3854, + "op": "PUSH1", + "gas": 2997184, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0xe0" + ] + }, + { + "pc": 3856, + "op": "MSTORE", + "gas": 2997181, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0xe0", + "0x40" + ] + }, + { + "pc": 3857, + "op": "DUP1", + "gas": 2997178, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80" + ] + }, + { + "pc": 3858, + "op": "PUSH1", + "gas": 2997175, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x80" + ] + }, + { + "pc": 3860, + "op": "DUP2", + "gas": 2997172, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x80", + "0x26" + ] + }, + { + "pc": 3861, + "op": "MSTORE", + "gas": 2997169, + "gasCost": 9, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x80", + "0x26", + "0x80" + ] + }, + { + "pc": 3862, + "op": "PUSH1", + "gas": 2997160, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x80" + ] + }, + { + "pc": 3864, + "op": "ADD", + "gas": 2997157, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x80", + "0x20" + ] + }, + { + "pc": 3865, + "op": "PUSH2", + "gas": 2997154, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0xa0" + ] + }, + { + "pc": 3868, + "op": "PUSH1", + "gas": 2997151, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0xa0", + "0x2113" + ] + }, + { + "pc": 3870, + "op": "SWAP2", + "gas": 2997148, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0xa0", + "0x2113", + "0x26" + ] + }, + { + "pc": 3871, + "op": "CODECOPY", + "gas": 2997145, + "gasCost": 15, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x26", + "0x2113", + "0xa0" + ], + "extraData": { + "codeList": [ + "0x608060405234801561001057600080fd5b506004361061010b5760003560e01c80635c975abb116100a257806395d89b411161007157806395d89b41146102945780639dc29fac146102b2578063a457c2d7146102ce578063a9059cbb146102fe578063dd62ed3e1461032e5761010b565b80635c975abb1461022057806370a082311461023e5780638456cb591461026e5780638e50817a146102785761010b565b8063313ce567116100de578063313ce567146101ac57806339509351146101ca5780633f4ba83a146101fa57806340c10f19146102045761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015e57806323b872dd1461017c575b600080fd5b61011861035e565b6040516101259190611a15565b60405180910390f35b6101486004803603810190610143919061178a565b6103f0565b60405161015591906119fa565b60405180910390f35b61016661040e565b6040516101739190611bb7565b60405180910390f35b6101966004803603810190610191919061173b565b610418565b6040516101a391906119fa565b60405180910390f35b6101b46104f1565b6040516101c19190611bd2565b60405180910390f35b6101e460048036038101906101df919061178a565b610508565b6040516101f191906119fa565b60405180910390f35b6102026105bb565b005b61021e6004803603810190610219919061178a565b610655565b005b610228610743565b60405161023591906119fa565b60405180910390f35b610258600480360381019061025391906116d6565b61075a565b6040516102659190611bb7565b60405180910390f35b6102766107a2565b005b610292600480360381019061028d91906116ff565b61083c565b005b61029c610952565b6040516102a99190611a15565b60405180910390f35b6102cc60048036038101906102c7919061178a565b6109e4565b005b6102e860048036038101906102e3919061178a565b610ad2565b6040516102f591906119fa565b60405180910390f35b6103186004803603810190610313919061178a565b610b9f565b60405161032591906119fa565b60405180910390f35b610348600480360381019061034391906116ff565b610bbd565b6040516103559190611bb7565b60405180910390f35b60606003805461036d90611d51565b80601f016020809104026020016040519081016040528092919081815260200182805461039990611d51565b80156103e65780601f106103bb576101008083540402835291602001916103e6565b820191906000526020600020905b8154815290600101906020018083116103c957829003601f168201915b5050505050905090565b60006104046103fd610c44565b8484610c4c565b6001905092915050565b6000600254905090565b6000610425848484610e17565b6104e684610431610c44565b6104e18560405180606001604052806028815260200161213960289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610497610c44565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110ac9092919063ffffffff16565b610c4c565b600190509392505050565b6000600560009054906101000a900460ff16905090565b60006105b1610515610c44565b846105ac8560016000610526610c44565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461111090919063ffffffff16565b610c4c565b6001905092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461064b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161064290611ab7565b60405180910390fd5b61065361116e565b565b600560019054906101000a900460ff16156106a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161069c90611ad7565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610735576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161072c90611ab7565b60405180910390fd5b61073f8282611218565b5050565b6000600560019054906101000a900460ff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610832576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082990611ab7565b60405180910390fd5b61083a6113ac565b565b600560029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146108cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c390611b37565b60405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b60606004805461096190611d51565b80601f016020809104026020016040519081016040528092919081815260200182805461098d90611d51565b80156109da5780601f106109af576101008083540402835291602001916109da565b820191906000526020600020905b8154815290600101906020018083116109bd57829003601f168201915b5050505050905090565b600560019054906101000a900460ff1615610a34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2b90611ad7565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610ac4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abb90611ab7565b60405180910390fd5b610ace8282611457565b5050565b6000610b95610adf610c44565b84610b90856040518060600160405280602581526020016121616025913960016000610b09610c44565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110ac9092919063ffffffff16565b610c4c565b6001905092915050565b6000610bb3610bac610c44565b8484610e17565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb390611b57565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2390611a77565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e0a9190611bb7565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7e90611b17565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ef7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eee90611a37565b60405180910390fd5b610f02838383611605565b610f6d81604051806060016040528060268152602001612113602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110ac9092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611000816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461111090919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161109f9190611bb7565b60405180910390a3505050565b60008383111582906110f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110eb9190611a15565b60405180910390fd5b50600083856111039190611c5f565b9050809150509392505050565b600080828461111f9190611c09565b905083811015611164576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115b90611a97565b60405180910390fd5b8091505092915050565b600560019054906101000a900460ff166111bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b490611a57565b60405180910390fd5b6000600560016101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611201610c44565b60405161120e91906119df565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611288576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127f90611b77565b60405180910390fd5b61129460008383611605565b6112a98160025461111090919063ffffffff16565b600281905550611300816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461111090919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516113a09190611bb7565b60405180910390a35050565b600560019054906101000a900460ff16156113fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f390611ad7565b60405180910390fd5b6001600560016101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611440610c44565b60405161144d91906119df565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114be90611af7565b60405180910390fd5b6114d382600083611605565b61153e816040518060600160405280602281526020016120f1602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110ac9092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506115958160025461165d90919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516115f99190611bb7565b60405180910390a35050565b6116108383836116a7565b611618610743565b15611658576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164f90611b97565b60405180910390fd5b505050565b600061169f83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506110ac565b905092915050565b505050565b6000813590506116bb816120c2565b92915050565b6000813590506116d0816120d9565b92915050565b6000602082840312156116e857600080fd5b60006116f6848285016116ac565b91505092915050565b6000806040838503121561171257600080fd5b6000611720858286016116ac565b9250506020611731858286016116ac565b9150509250929050565b60008060006060848603121561175057600080fd5b600061175e868287016116ac565b935050602061176f868287016116ac565b9250506040611780868287016116c1565b9150509250925092565b6000806040838503121561179d57600080fd5b60006117ab858286016116ac565b92505060206117bc858286016116c1565b9150509250929050565b6117cf81611ce8565b82525050565b6117de81611ca5565b82525050565b60006117ef82611bed565b6117f98185611bf8565b9350611809818560208601611d1e565b61181281611de1565b840191505092915050565b600061182a602383611bf8565b915061183582611df2565b604082019050919050565b600061184d601483611bf8565b915061185882611e41565b602082019050919050565b6000611870602283611bf8565b915061187b82611e6a565b604082019050919050565b6000611893601b83611bf8565b915061189e82611eb9565b602082019050919050565b60006118b6600b83611bf8565b91506118c182611ee2565b602082019050919050565b60006118d9601083611bf8565b91506118e482611f0b565b602082019050919050565b60006118fc602183611bf8565b915061190782611f34565b604082019050919050565b600061191f602583611bf8565b915061192a82611f83565b604082019050919050565b6000611942600c83611bf8565b915061194d82611fd2565b602082019050919050565b6000611965602483611bf8565b915061197082611ffb565b604082019050919050565b6000611988601f83611bf8565b91506119938261204a565b602082019050919050565b60006119ab602a83611bf8565b91506119b682612073565b604082019050919050565b6119ca81611cd1565b82525050565b6119d981611cdb565b82525050565b60006020820190506119f460008301846117c6565b92915050565b6000602082019050611a0f60008301846117d5565b92915050565b60006020820190508181036000830152611a2f81846117e4565b905092915050565b60006020820190508181036000830152611a508161181d565b9050919050565b60006020820190508181036000830152611a7081611840565b9050919050565b60006020820190508181036000830152611a9081611863565b9050919050565b60006020820190508181036000830152611ab081611886565b9050919050565b60006020820190508181036000830152611ad0816118a9565b9050919050565b60006020820190508181036000830152611af0816118cc565b9050919050565b60006020820190508181036000830152611b10816118ef565b9050919050565b60006020820190508181036000830152611b3081611912565b9050919050565b60006020820190508181036000830152611b5081611935565b9050919050565b60006020820190508181036000830152611b7081611958565b9050919050565b60006020820190508181036000830152611b908161197b565b9050919050565b60006020820190508181036000830152611bb08161199e565b9050919050565b6000602082019050611bcc60008301846119c1565b92915050565b6000602082019050611be760008301846119d0565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611c1482611cd1565b9150611c1f83611cd1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611c5457611c53611d83565b5b828201905092915050565b6000611c6a82611cd1565b9150611c7583611cd1565b925082821015611c8857611c87611d83565b5b828203905092915050565b6000611c9e82611cb1565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b6000611cf382611cfa565b9050919050565b6000611d0582611d0c565b9050919050565b6000611d1782611cb1565b9050919050565b60005b83811015611d3c578082015181840152602081019050611d21565b83811115611d4b576000848401525b50505050565b60006002820490506001821680611d6957607f821691505b60208210811415611d7d57611d7c611db2565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b7f6e6f7420616c6c6f776564000000000000000000000000000000000000000000600082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f6f6e6c7920466163746f72790000000000000000000000000000000000000000600082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b7f45524332305061757361626c653a20746f6b656e207472616e7366657220776860008201527f696c652070617573656400000000000000000000000000000000000000000000602082015250565b6120cb81611c93565b81146120d657600080fd5b50565b6120e281611cd1565b81146120ed57600080fd5b5056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122050720249c11bf2bf6da8b1770af05168068be0eee81154cac03b74b0ab3b6a3f64736f6c63430008040033" + ] + } + }, + { + "pc": 3872, + "op": "PUSH1", + "gas": 2997130, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80" + ] + }, + { + "pc": 3874, + "op": "DUP1", + "gas": 2997127, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x0" + ] + }, + { + "pc": 3875, + "op": "DUP8", + "gas": 2997124, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x0", + "0x0" + ] + }, + { + "pc": 3876, + "op": "PUSH20", + "gas": 2997121, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 3897, + "op": "AND", + "gas": 2997118, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 3898, + "op": "PUSH20", + "gas": 2997115, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 3919, + "op": "AND", + "gas": 2997112, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 3920, + "op": "DUP2", + "gas": 2997109, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 3921, + "op": "MSTORE", + "gas": 2997106, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0" + ] + }, + { + "pc": 3922, + "op": "PUSH1", + "gas": 2997103, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x0", + "0x0" + ] + }, + { + "pc": 3924, + "op": "ADD", + "gas": 2997100, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x20" + ] + }, + { + "pc": 3925, + "op": "SWAP1", + "gas": 2997097, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x0", + "0x20" + ] + }, + { + "pc": 3926, + "op": "DUP2", + "gas": 2997094, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x20", + "0x0" + ] + }, + { + "pc": 3927, + "op": "MSTORE", + "gas": 2997091, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x20", + "0x0", + "0x20" + ] + }, + { + "pc": 3928, + "op": "PUSH1", + "gas": 2997088, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x20" + ] + }, + { + "pc": 3930, + "op": "ADD", + "gas": 2997085, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x20", + "0x20" + ] + }, + { + "pc": 3931, + "op": "PUSH1", + "gas": 2997082, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x40" + ] + }, + { + "pc": 3933, + "op": "SHA3", + "gas": 2997079, + "gasCost": 42, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x40", + "0x0" + ] + }, + { + "pc": 3934, + "op": "SLOAD", + "gas": 2997037, + "gasCost": 2100, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x5a158573daab1c353835da34297290f5f813859e4bb52de641691b875502523f" + ], + "storage": { + "0x0000000000000000000000000000000000000000000000000000000000000005": "0x000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd65710012", + "0x5a158573daab1c353835da34297290f5f813859e4bb52de641691b875502523f": "0x00000000000000000000000000000000000000000000000000038d7ea4c67060" + }, + "extraData": { + "proofList": [ + { + "address": "0x34041eff1f32989bdaa95875e0f41afd6294dcd4", + "nonce": 1, + "balance": "0x0", + "codeHash": "0x9b5ea0519f6e20c36338989b6accc7cf3384eac2f0a083e82730bca177544409", + "storage": { + "key": "0x5a158573daab1c353835da34297290f5f813859e4bb52de641691b875502523f", + "value": "0x00000000000000000000000000000000000000000000000000038d7ea4c67060" + } + } + ] + } + }, + { + "pc": 3935, + "op": "PUSH2", + "gas": 2994937, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x38d7ea4c67060" + ] + }, + { + "pc": 3938, + "op": "SWAP1", + "gas": 2994934, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x38d7ea4c67060", + "0x10ac" + ] + }, + { + "pc": 3939, + "op": "SWAP3", + "gas": 2994931, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x10ac", + "0x38d7ea4c67060" + ] + }, + { + "pc": 3940, + "op": "SWAP2", + "gas": 2994928, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf6d", + "0x38d7ea4c67060", + "0x80", + "0x10ac", + "0x3e8" + ] + }, + { + "pc": 3941, + "op": "SWAP1", + "gas": 2994925, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf6d", + "0x38d7ea4c67060", + "0x3e8", + "0x10ac", + "0x80" + ] + }, + { + "pc": 3942, + "op": "PUSH4", + "gas": 2994922, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf6d", + "0x38d7ea4c67060", + "0x3e8", + "0x80", + "0x10ac" + ] + }, + { + "pc": 3947, + "op": "AND", + "gas": 2994919, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf6d", + "0x38d7ea4c67060", + "0x3e8", + "0x80", + "0x10ac", + "0xffffffff" + ] + }, + { + "pc": 3948, + "op": "JUMP", + "gas": 2994916, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf6d", + "0x38d7ea4c67060", + "0x3e8", + "0x80", + "0x10ac" + ] + }, + { + "pc": 4268, + "op": "JUMPDEST", + "gas": 2994908, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf6d", + "0x38d7ea4c67060", + "0x3e8", + "0x80" + ] + }, + { + "pc": 4269, + "op": "PUSH1", + "gas": 2994907, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf6d", + "0x38d7ea4c67060", + "0x3e8", + "0x80" + ] + }, + { + "pc": 4271, + "op": "DUP4", + "gas": 2994904, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf6d", + "0x38d7ea4c67060", + "0x3e8", + "0x80", + "0x0" + ] + }, + { + "pc": 4272, + "op": "DUP4", + "gas": 2994901, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf6d", + "0x38d7ea4c67060", + "0x3e8", + "0x80", + "0x0", + "0x38d7ea4c67060" + ] + }, + { + "pc": 4273, + "op": "GT", + "gas": 2994898, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf6d", + "0x38d7ea4c67060", + "0x3e8", + "0x80", + "0x0", + "0x38d7ea4c67060", + "0x3e8" + ] + }, + { + "pc": 4274, + "op": "ISZERO", + "gas": 2994895, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf6d", + "0x38d7ea4c67060", + "0x3e8", + "0x80", + "0x0", + "0x0" + ] + }, + { + "pc": 4275, + "op": "DUP3", + "gas": 2994892, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf6d", + "0x38d7ea4c67060", + "0x3e8", + "0x80", + "0x0", + "0x1" + ] + }, + { + "pc": 4276, + "op": "SWAP1", + "gas": 2994889, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf6d", + "0x38d7ea4c67060", + "0x3e8", + "0x80", + "0x0", + "0x1", + "0x80" + ] + }, + { + "pc": 4277, + "op": "PUSH2", + "gas": 2994886, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf6d", + "0x38d7ea4c67060", + "0x3e8", + "0x80", + "0x0", + "0x80", + "0x1" + ] + }, + { + "pc": 4280, + "op": "JUMPI", + "gas": 2994883, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf6d", + "0x38d7ea4c67060", + "0x3e8", + "0x80", + "0x0", + "0x80", + "0x1", + "0x10f4" + ] + }, + { + "pc": 4340, + "op": "JUMPDEST", + "gas": 2994873, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf6d", + "0x38d7ea4c67060", + "0x3e8", + "0x80", + "0x0", + "0x80" + ] + }, + { + "pc": 4341, + "op": "POP", + "gas": 2994872, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf6d", + "0x38d7ea4c67060", + "0x3e8", + "0x80", + "0x0", + "0x80" + ] + }, + { + "pc": 4342, + "op": "PUSH1", + "gas": 2994870, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf6d", + "0x38d7ea4c67060", + "0x3e8", + "0x80", + "0x0" + ] + }, + { + "pc": 4344, + "op": "DUP4", + "gas": 2994867, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf6d", + "0x38d7ea4c67060", + "0x3e8", + "0x80", + "0x0", + "0x0" + ] + }, + { + "pc": 4345, + "op": "DUP6", + "gas": 2994864, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf6d", + "0x38d7ea4c67060", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x3e8" + ] + }, + { + "pc": 4346, + "op": "PUSH2", + "gas": 2994861, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf6d", + "0x38d7ea4c67060", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x3e8", + "0x38d7ea4c67060" + ] + }, + { + "pc": 4349, + "op": "SWAP2", + "gas": 2994858, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf6d", + "0x38d7ea4c67060", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x3e8", + "0x38d7ea4c67060", + "0x1103" + ] + }, + { + "pc": 4350, + "op": "SWAP1", + "gas": 2994855, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf6d", + "0x38d7ea4c67060", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x38d7ea4c67060", + "0x3e8" + ] + }, + { + "pc": 4351, + "op": "PUSH2", + "gas": 2994852, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf6d", + "0x38d7ea4c67060", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67060" + ] + }, + { + "pc": 4354, + "op": "JUMP", + "gas": 2994849, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf6d", + "0x38d7ea4c67060", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67060", + "0x1c5f" + ] + }, + { + "pc": 7263, + "op": "JUMPDEST", + "gas": 2994841, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf6d", + "0x38d7ea4c67060", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67060" + ] + }, + { + "pc": 7264, + "op": "PUSH1", + "gas": 2994840, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf6d", + "0x38d7ea4c67060", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67060" + ] + }, + { + "pc": 7266, + "op": "PUSH2", + "gas": 2994837, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf6d", + "0x38d7ea4c67060", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67060", + "0x0" + ] + }, + { + "pc": 7269, + "op": "DUP3", + "gas": 2994834, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf6d", + "0x38d7ea4c67060", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67060", + "0x0", + "0x1c6a" + ] + }, + { + "pc": 7270, + "op": "PUSH2", + "gas": 2994831, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf6d", + "0x38d7ea4c67060", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67060", + "0x0", + "0x1c6a", + "0x38d7ea4c67060" + ] + }, + { + "pc": 7273, + "op": "JUMP", + "gas": 2994828, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf6d", + "0x38d7ea4c67060", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67060", + "0x0", + "0x1c6a", + "0x38d7ea4c67060", + "0x1cd1" + ] + }, + { + "pc": 7377, + "op": "JUMPDEST", + "gas": 2994820, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf6d", + "0x38d7ea4c67060", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67060", + "0x0", + "0x1c6a", + "0x38d7ea4c67060" + ] + }, + { + "pc": 7378, + "op": "PUSH1", + "gas": 2994819, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf6d", + "0x38d7ea4c67060", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67060", + "0x0", + "0x1c6a", + "0x38d7ea4c67060" + ] + }, + { + "pc": 7380, + "op": "DUP2", + "gas": 2994816, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf6d", + "0x38d7ea4c67060", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67060", + "0x0", + "0x1c6a", + "0x38d7ea4c67060", + "0x0" + ] + }, + { + "pc": 7381, + "op": "SWAP1", + "gas": 2994813, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf6d", + "0x38d7ea4c67060", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67060", + "0x0", + "0x1c6a", + "0x38d7ea4c67060", + "0x0", + "0x38d7ea4c67060" + ] + }, + { + "pc": 7382, + "op": "POP", + "gas": 2994810, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf6d", + "0x38d7ea4c67060", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67060", + "0x0", + "0x1c6a", + "0x38d7ea4c67060", + "0x38d7ea4c67060", + "0x0" + ] + }, + { + "pc": 7383, + "op": "SWAP2", + "gas": 2994808, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf6d", + "0x38d7ea4c67060", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67060", + "0x0", + "0x1c6a", + "0x38d7ea4c67060", + "0x38d7ea4c67060" + ] + }, + { + "pc": 7384, + "op": "SWAP1", + "gas": 2994805, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf6d", + "0x38d7ea4c67060", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67060", + "0x0", + "0x38d7ea4c67060", + "0x38d7ea4c67060", + "0x1c6a" + ] + }, + { + "pc": 7385, + "op": "POP", + "gas": 2994802, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf6d", + "0x38d7ea4c67060", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67060", + "0x0", + "0x38d7ea4c67060", + "0x1c6a", + "0x38d7ea4c67060" + ] + }, + { + "pc": 7386, + "op": "JUMP", + "gas": 2994800, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf6d", + "0x38d7ea4c67060", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67060", + "0x0", + "0x38d7ea4c67060", + "0x1c6a" + ] + }, + { + "pc": 7274, + "op": "JUMPDEST", + "gas": 2994792, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf6d", + "0x38d7ea4c67060", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67060", + "0x0", + "0x38d7ea4c67060" + ] + }, + { + "pc": 7275, + "op": "SWAP2", + "gas": 2994791, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf6d", + "0x38d7ea4c67060", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67060", + "0x0", + "0x38d7ea4c67060" + ] + }, + { + "pc": 7276, + "op": "POP", + "gas": 2994788, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf6d", + "0x38d7ea4c67060", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67060", + "0x0", + "0x38d7ea4c67060" + ] + }, + { + "pc": 7277, + "op": "PUSH2", + "gas": 2994786, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf6d", + "0x38d7ea4c67060", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67060", + "0x0" + ] + }, + { + "pc": 7280, + "op": "DUP4", + "gas": 2994783, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf6d", + "0x38d7ea4c67060", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67060", + "0x0", + "0x1c75" + ] + }, + { + "pc": 7281, + "op": "PUSH2", + "gas": 2994780, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf6d", + "0x38d7ea4c67060", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67060", + "0x0", + "0x1c75", + "0x3e8" + ] + }, + { + "pc": 7284, + "op": "JUMP", + "gas": 2994777, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf6d", + "0x38d7ea4c67060", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67060", + "0x0", + "0x1c75", + "0x3e8", + "0x1cd1" + ] + }, + { + "pc": 7377, + "op": "JUMPDEST", + "gas": 2994769, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf6d", + "0x38d7ea4c67060", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67060", + "0x0", + "0x1c75", + "0x3e8" + ] + }, + { + "pc": 7378, + "op": "PUSH1", + "gas": 2994768, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf6d", + "0x38d7ea4c67060", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67060", + "0x0", + "0x1c75", + "0x3e8" + ] + }, + { + "pc": 7380, + "op": "DUP2", + "gas": 2994765, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf6d", + "0x38d7ea4c67060", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67060", + "0x0", + "0x1c75", + "0x3e8", + "0x0" + ] + }, + { + "pc": 7381, + "op": "SWAP1", + "gas": 2994762, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf6d", + "0x38d7ea4c67060", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67060", + "0x0", + "0x1c75", + "0x3e8", + "0x0", + "0x3e8" + ] + }, + { + "pc": 7382, + "op": "POP", + "gas": 2994759, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf6d", + "0x38d7ea4c67060", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67060", + "0x0", + "0x1c75", + "0x3e8", + "0x3e8", + "0x0" + ] + }, + { + "pc": 7383, + "op": "SWAP2", + "gas": 2994757, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf6d", + "0x38d7ea4c67060", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67060", + "0x0", + "0x1c75", + "0x3e8", + "0x3e8" + ] + }, + { + "pc": 7384, + "op": "SWAP1", + "gas": 2994754, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf6d", + "0x38d7ea4c67060", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67060", + "0x0", + "0x3e8", + "0x3e8", + "0x1c75" + ] + }, + { + "pc": 7385, + "op": "POP", + "gas": 2994751, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf6d", + "0x38d7ea4c67060", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67060", + "0x0", + "0x3e8", + "0x1c75", + "0x3e8" + ] + }, + { + "pc": 7386, + "op": "JUMP", + "gas": 2994749, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf6d", + "0x38d7ea4c67060", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67060", + "0x0", + "0x3e8", + "0x1c75" + ] + }, + { + "pc": 7285, + "op": "JUMPDEST", + "gas": 2994741, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf6d", + "0x38d7ea4c67060", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67060", + "0x0", + "0x3e8" + ] + }, + { + "pc": 7286, + "op": "SWAP3", + "gas": 2994740, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf6d", + "0x38d7ea4c67060", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67060", + "0x0", + "0x3e8" + ] + }, + { + "pc": 7287, + "op": "POP", + "gas": 2994737, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf6d", + "0x38d7ea4c67060", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67060", + "0x0", + "0x3e8" + ] + }, + { + "pc": 7288, + "op": "DUP3", + "gas": 2994735, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf6d", + "0x38d7ea4c67060", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67060", + "0x0" + ] + }, + { + "pc": 7289, + "op": "DUP3", + "gas": 2994732, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf6d", + "0x38d7ea4c67060", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67060", + "0x0", + "0x3e8" + ] + }, + { + "pc": 7290, + "op": "LT", + "gas": 2994729, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf6d", + "0x38d7ea4c67060", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67060", + "0x0", + "0x3e8", + "0x38d7ea4c67060" + ] + }, + { + "pc": 7291, + "op": "ISZERO", + "gas": 2994726, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf6d", + "0x38d7ea4c67060", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67060", + "0x0", + "0x0" + ] + }, + { + "pc": 7292, + "op": "PUSH2", + "gas": 2994723, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf6d", + "0x38d7ea4c67060", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67060", + "0x0", + "0x1" + ] + }, + { + "pc": 7295, + "op": "JUMPI", + "gas": 2994720, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf6d", + "0x38d7ea4c67060", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67060", + "0x0", + "0x1", + "0x1c88" + ] + }, + { + "pc": 7304, + "op": "JUMPDEST", + "gas": 2994710, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf6d", + "0x38d7ea4c67060", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67060", + "0x0" + ] + }, + { + "pc": 7305, + "op": "DUP3", + "gas": 2994709, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf6d", + "0x38d7ea4c67060", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67060", + "0x0" + ] + }, + { + "pc": 7306, + "op": "DUP3", + "gas": 2994706, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf6d", + "0x38d7ea4c67060", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67060", + "0x0", + "0x3e8" + ] + }, + { + "pc": 7307, + "op": "SUB", + "gas": 2994703, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf6d", + "0x38d7ea4c67060", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67060", + "0x0", + "0x3e8", + "0x38d7ea4c67060" + ] + }, + { + "pc": 7308, + "op": "SWAP1", + "gas": 2994700, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf6d", + "0x38d7ea4c67060", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67060", + "0x0", + "0x38d7ea4c66c78" + ] + }, + { + "pc": 7309, + "op": "POP", + "gas": 2994697, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf6d", + "0x38d7ea4c67060", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67060", + "0x38d7ea4c66c78", + "0x0" + ] + }, + { + "pc": 7310, + "op": "SWAP3", + "gas": 2994695, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf6d", + "0x38d7ea4c67060", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c67060", + "0x38d7ea4c66c78" + ] + }, + { + "pc": 7311, + "op": "SWAP2", + "gas": 2994692, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf6d", + "0x38d7ea4c67060", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x38d7ea4c66c78", + "0x3e8", + "0x38d7ea4c67060", + "0x1103" + ] + }, + { + "pc": 7312, + "op": "POP", + "gas": 2994689, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf6d", + "0x38d7ea4c67060", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x38d7ea4c66c78", + "0x1103", + "0x38d7ea4c67060", + "0x3e8" + ] + }, + { + "pc": 7313, + "op": "POP", + "gas": 2994687, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf6d", + "0x38d7ea4c67060", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x38d7ea4c66c78", + "0x1103", + "0x38d7ea4c67060" + ] + }, + { + "pc": 7314, + "op": "JUMP", + "gas": 2994685, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf6d", + "0x38d7ea4c67060", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x38d7ea4c66c78", + "0x1103" + ] + }, + { + "pc": 4355, + "op": "JUMPDEST", + "gas": 2994677, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf6d", + "0x38d7ea4c67060", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x38d7ea4c66c78" + ] + }, + { + "pc": 4356, + "op": "SWAP1", + "gas": 2994676, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf6d", + "0x38d7ea4c67060", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x38d7ea4c66c78" + ] + }, + { + "pc": 4357, + "op": "POP", + "gas": 2994673, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf6d", + "0x38d7ea4c67060", + "0x3e8", + "0x80", + "0x0", + "0x38d7ea4c66c78", + "0x0" + ] + }, + { + "pc": 4358, + "op": "DUP1", + "gas": 2994671, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf6d", + "0x38d7ea4c67060", + "0x3e8", + "0x80", + "0x0", + "0x38d7ea4c66c78" + ] + }, + { + "pc": 4359, + "op": "SWAP2", + "gas": 2994668, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf6d", + "0x38d7ea4c67060", + "0x3e8", + "0x80", + "0x0", + "0x38d7ea4c66c78", + "0x38d7ea4c66c78" + ] + }, + { + "pc": 4360, + "op": "POP", + "gas": 2994665, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf6d", + "0x38d7ea4c67060", + "0x3e8", + "0x80", + "0x38d7ea4c66c78", + "0x38d7ea4c66c78", + "0x0" + ] + }, + { + "pc": 4361, + "op": "POP", + "gas": 2994663, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf6d", + "0x38d7ea4c67060", + "0x3e8", + "0x80", + "0x38d7ea4c66c78", + "0x38d7ea4c66c78" + ] + }, + { + "pc": 4362, + "op": "SWAP4", + "gas": 2994661, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0xf6d", + "0x38d7ea4c67060", + "0x3e8", + "0x80", + "0x38d7ea4c66c78" + ] + }, + { + "pc": 4363, + "op": "SWAP3", + "gas": 2994658, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x38d7ea4c66c78", + "0x38d7ea4c67060", + "0x3e8", + "0x80", + "0xf6d" + ] + }, + { + "pc": 4364, + "op": "POP", + "gas": 2994655, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x38d7ea4c66c78", + "0xf6d", + "0x3e8", + "0x80", + "0x38d7ea4c67060" + ] + }, + { + "pc": 4365, + "op": "POP", + "gas": 2994653, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x38d7ea4c66c78", + "0xf6d", + "0x3e8", + "0x80" + ] + }, + { + "pc": 4366, + "op": "POP", + "gas": 2994651, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x38d7ea4c66c78", + "0xf6d", + "0x3e8" + ] + }, + { + "pc": 4367, + "op": "JUMP", + "gas": 2994649, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x38d7ea4c66c78", + "0xf6d" + ] + }, + { + "pc": 3949, + "op": "JUMPDEST", + "gas": 2994641, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x38d7ea4c66c78" + ] + }, + { + "pc": 3950, + "op": "PUSH1", + "gas": 2994640, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x38d7ea4c66c78" + ] + }, + { + "pc": 3952, + "op": "DUP1", + "gas": 2994637, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x38d7ea4c66c78", + "0x0" + ] + }, + { + "pc": 3953, + "op": "DUP6", + "gas": 2994634, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x38d7ea4c66c78", + "0x0", + "0x0" + ] + }, + { + "pc": 3954, + "op": "PUSH20", + "gas": 2994631, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x38d7ea4c66c78", + "0x0", + "0x0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 3975, + "op": "AND", + "gas": 2994628, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x38d7ea4c66c78", + "0x0", + "0x0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 3976, + "op": "PUSH20", + "gas": 2994625, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x38d7ea4c66c78", + "0x0", + "0x0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 3997, + "op": "AND", + "gas": 2994622, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x38d7ea4c66c78", + "0x0", + "0x0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 3998, + "op": "DUP2", + "gas": 2994619, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x38d7ea4c66c78", + "0x0", + "0x0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 3999, + "op": "MSTORE", + "gas": 2994616, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x38d7ea4c66c78", + "0x0", + "0x0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0" + ] + }, + { + "pc": 4000, + "op": "PUSH1", + "gas": 2994613, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x38d7ea4c66c78", + "0x0", + "0x0" + ] + }, + { + "pc": 4002, + "op": "ADD", + "gas": 2994610, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x38d7ea4c66c78", + "0x0", + "0x0", + "0x20" + ] + }, + { + "pc": 4003, + "op": "SWAP1", + "gas": 2994607, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x38d7ea4c66c78", + "0x0", + "0x20" + ] + }, + { + "pc": 4004, + "op": "DUP2", + "gas": 2994604, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x38d7ea4c66c78", + "0x20", + "0x0" + ] + }, + { + "pc": 4005, + "op": "MSTORE", + "gas": 2994601, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x38d7ea4c66c78", + "0x20", + "0x0", + "0x20" + ] + }, + { + "pc": 4006, + "op": "PUSH1", + "gas": 2994598, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x38d7ea4c66c78", + "0x20" + ] + }, + { + "pc": 4008, + "op": "ADD", + "gas": 2994595, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x38d7ea4c66c78", + "0x20", + "0x20" + ] + }, + { + "pc": 4009, + "op": "PUSH1", + "gas": 2994592, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x38d7ea4c66c78", + "0x40" + ] + }, + { + "pc": 4011, + "op": "SHA3", + "gas": 2994589, + "gasCost": 42, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x38d7ea4c66c78", + "0x40", + "0x0" + ] + }, + { + "pc": 4012, + "op": "DUP2", + "gas": 2994547, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x38d7ea4c66c78", + "0x5a158573daab1c353835da34297290f5f813859e4bb52de641691b875502523f" + ] + }, + { + "pc": 4013, + "op": "SWAP1", + "gas": 2994544, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x38d7ea4c66c78", + "0x5a158573daab1c353835da34297290f5f813859e4bb52de641691b875502523f", + "0x38d7ea4c66c78" + ] + }, + { + "pc": 4014, + "op": "SSTORE", + "gas": 2994541, + "gasCost": 2900, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x38d7ea4c66c78", + "0x38d7ea4c66c78", + "0x5a158573daab1c353835da34297290f5f813859e4bb52de641691b875502523f" + ], + "storage": { + "0x0000000000000000000000000000000000000000000000000000000000000005": "0x000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd65710012", + "0x5a158573daab1c353835da34297290f5f813859e4bb52de641691b875502523f": "0x00000000000000000000000000000000000000000000000000038d7ea4c66c78" + }, + "extraData": { + "proofList": [ + { + "address": "0x34041eff1f32989bdaa95875e0f41afd6294dcd4", + "nonce": 1, + "balance": "0x0", + "codeHash": "0x9b5ea0519f6e20c36338989b6accc7cf3384eac2f0a083e82730bca177544409", + "storage": { + "key": "0x5a158573daab1c353835da34297290f5f813859e4bb52de641691b875502523f", + "value": "0x00000000000000000000000000000000000000000000000000038d7ea4c67060" + } + } + ] + } + }, + { + "pc": 4015, + "op": "POP", + "gas": 2991641, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x38d7ea4c66c78" + ] + }, + { + "pc": 4016, + "op": "PUSH2", + "gas": 2991639, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8" + ] + }, + { + "pc": 4019, + "op": "DUP2", + "gas": 2991636, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1000" + ] + }, + { + "pc": 4020, + "op": "PUSH1", + "gas": 2991633, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1000", + "0x3e8" + ] + }, + { + "pc": 4022, + "op": "DUP1", + "gas": 2991630, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1000", + "0x3e8", + "0x0" + ] + }, + { + "pc": 4023, + "op": "DUP6", + "gas": 2991627, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1000", + "0x3e8", + "0x0", + "0x0" + ] + }, + { + "pc": 4024, + "op": "PUSH20", + "gas": 2991624, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1000", + "0x3e8", + "0x0", + "0x0", + "0x4" + ] + }, + { + "pc": 4045, + "op": "AND", + "gas": 2991621, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1000", + "0x3e8", + "0x0", + "0x0", + "0x4", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 4046, + "op": "PUSH20", + "gas": 2991618, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1000", + "0x3e8", + "0x0", + "0x0", + "0x4" + ] + }, + { + "pc": 4067, + "op": "AND", + "gas": 2991615, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1000", + "0x3e8", + "0x0", + "0x0", + "0x4", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 4068, + "op": "DUP2", + "gas": 2991612, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1000", + "0x3e8", + "0x0", + "0x0", + "0x4" + ] + }, + { + "pc": 4069, + "op": "MSTORE", + "gas": 2991609, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1000", + "0x3e8", + "0x0", + "0x0", + "0x4", + "0x0" + ] + }, + { + "pc": 4070, + "op": "PUSH1", + "gas": 2991606, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1000", + "0x3e8", + "0x0", + "0x0" + ] + }, + { + "pc": 4072, + "op": "ADD", + "gas": 2991603, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1000", + "0x3e8", + "0x0", + "0x0", + "0x20" + ] + }, + { + "pc": 4073, + "op": "SWAP1", + "gas": 2991600, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1000", + "0x3e8", + "0x0", + "0x20" + ] + }, + { + "pc": 4074, + "op": "DUP2", + "gas": 2991597, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1000", + "0x3e8", + "0x20", + "0x0" + ] + }, + { + "pc": 4075, + "op": "MSTORE", + "gas": 2991594, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1000", + "0x3e8", + "0x20", + "0x0", + "0x20" + ] + }, + { + "pc": 4076, + "op": "PUSH1", + "gas": 2991591, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1000", + "0x3e8", + "0x20" + ] + }, + { + "pc": 4078, + "op": "ADD", + "gas": 2991588, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1000", + "0x3e8", + "0x20", + "0x20" + ] + }, + { + "pc": 4079, + "op": "PUSH1", + "gas": 2991585, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1000", + "0x3e8", + "0x40" + ] + }, + { + "pc": 4081, + "op": "SHA3", + "gas": 2991582, + "gasCost": 42, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1000", + "0x3e8", + "0x40", + "0x0" + ] + }, + { + "pc": 4082, + "op": "SLOAD", + "gas": 2991540, + "gasCost": 2100, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1000", + "0x3e8", + "0x52d75039926638d3c558b2bdefb945d5be8dae29dedd1c313212a4d472d9fde5" + ], + "storage": { + "0x0000000000000000000000000000000000000000000000000000000000000005": "0x000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd65710012", + "0x52d75039926638d3c558b2bdefb945d5be8dae29dedd1c313212a4d472d9fde5": "0x0000000000000000000000000000000000000000000000000000000000000000", + "0x5a158573daab1c353835da34297290f5f813859e4bb52de641691b875502523f": "0x00000000000000000000000000000000000000000000000000038d7ea4c66c78" + }, + "extraData": { + "proofList": [ + { + "address": "0x34041eff1f32989bdaa95875e0f41afd6294dcd4", + "nonce": 1, + "balance": "0x0", + "codeHash": "0x9b5ea0519f6e20c36338989b6accc7cf3384eac2f0a083e82730bca177544409", + "storage": { + "key": "0x52d75039926638d3c558b2bdefb945d5be8dae29dedd1c313212a4d472d9fde5", + "value": "0x0000000000000000000000000000000000000000000000000000000000000000" + } + } + ] + } + }, + { + "pc": 4083, + "op": "PUSH2", + "gas": 2989440, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1000", + "0x3e8", + "0x0" + ] + }, + { + "pc": 4086, + "op": "SWAP1", + "gas": 2989437, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1000", + "0x3e8", + "0x0", + "0x1110" + ] + }, + { + "pc": 4087, + "op": "SWAP2", + "gas": 2989434, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1000", + "0x3e8", + "0x1110", + "0x0" + ] + }, + { + "pc": 4088, + "op": "SWAP1", + "gas": 2989431, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1000", + "0x0", + "0x1110", + "0x3e8" + ] + }, + { + "pc": 4089, + "op": "PUSH4", + "gas": 2989428, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x1110" + ] + }, + { + "pc": 4094, + "op": "AND", + "gas": 2989425, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x1110", + "0xffffffff" + ] + }, + { + "pc": 4095, + "op": "JUMP", + "gas": 2989422, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x1110" + ] + }, + { + "pc": 4368, + "op": "JUMPDEST", + "gas": 2989414, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1000", + "0x0", + "0x3e8" + ] + }, + { + "pc": 4369, + "op": "PUSH1", + "gas": 2989413, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1000", + "0x0", + "0x3e8" + ] + }, + { + "pc": 4371, + "op": "DUP1", + "gas": 2989410, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0" + ] + }, + { + "pc": 4372, + "op": "DUP3", + "gas": 2989407, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0" + ] + }, + { + "pc": 4373, + "op": "DUP5", + "gas": 2989404, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x3e8" + ] + }, + { + "pc": 4374, + "op": "PUSH2", + "gas": 2989401, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x3e8", + "0x0" + ] + }, + { + "pc": 4377, + "op": "SWAP2", + "gas": 2989398, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x3e8", + "0x0", + "0x111f" + ] + }, + { + "pc": 4378, + "op": "SWAP1", + "gas": 2989395, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x0", + "0x3e8" + ] + }, + { + "pc": 4379, + "op": "PUSH2", + "gas": 2989392, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0" + ] + }, + { + "pc": 4382, + "op": "JUMP", + "gas": 2989389, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x1c09" + ] + }, + { + "pc": 7177, + "op": "JUMPDEST", + "gas": 2989381, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0" + ] + }, + { + "pc": 7178, + "op": "PUSH1", + "gas": 2989380, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0" + ] + }, + { + "pc": 7180, + "op": "PUSH2", + "gas": 2989377, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0" + ] + }, + { + "pc": 7183, + "op": "DUP3", + "gas": 2989374, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x1c14" + ] + }, + { + "pc": 7184, + "op": "PUSH2", + "gas": 2989371, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x1c14", + "0x0" + ] + }, + { + "pc": 7187, + "op": "JUMP", + "gas": 2989368, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x1c14", + "0x0", + "0x1cd1" + ] + }, + { + "pc": 7377, + "op": "JUMPDEST", + "gas": 2989360, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x1c14", + "0x0" + ] + }, + { + "pc": 7378, + "op": "PUSH1", + "gas": 2989359, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x1c14", + "0x0" + ] + }, + { + "pc": 7380, + "op": "DUP2", + "gas": 2989356, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x1c14", + "0x0", + "0x0" + ] + }, + { + "pc": 7381, + "op": "SWAP1", + "gas": 2989353, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x1c14", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 7382, + "op": "POP", + "gas": 2989350, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x1c14", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 7383, + "op": "SWAP2", + "gas": 2989348, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x1c14", + "0x0", + "0x0" + ] + }, + { + "pc": 7384, + "op": "SWAP1", + "gas": 2989345, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x0", + "0x0", + "0x1c14" + ] + }, + { + "pc": 7385, + "op": "POP", + "gas": 2989342, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x0", + "0x1c14", + "0x0" + ] + }, + { + "pc": 7386, + "op": "JUMP", + "gas": 2989340, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x0", + "0x1c14" + ] + }, + { + "pc": 7188, + "op": "JUMPDEST", + "gas": 2989332, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 7189, + "op": "SWAP2", + "gas": 2989331, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 7190, + "op": "POP", + "gas": 2989328, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 7191, + "op": "PUSH2", + "gas": 2989326, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0" + ] + }, + { + "pc": 7194, + "op": "DUP4", + "gas": 2989323, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x1c1f" + ] + }, + { + "pc": 7195, + "op": "PUSH2", + "gas": 2989320, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x1c1f", + "0x3e8" + ] + }, + { + "pc": 7198, + "op": "JUMP", + "gas": 2989317, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x1c1f", + "0x3e8", + "0x1cd1" + ] + }, + { + "pc": 7377, + "op": "JUMPDEST", + "gas": 2989309, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x1c1f", + "0x3e8" + ] + }, + { + "pc": 7378, + "op": "PUSH1", + "gas": 2989308, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x1c1f", + "0x3e8" + ] + }, + { + "pc": 7380, + "op": "DUP2", + "gas": 2989305, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x1c1f", + "0x3e8", + "0x0" + ] + }, + { + "pc": 7381, + "op": "SWAP1", + "gas": 2989302, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x1c1f", + "0x3e8", + "0x0", + "0x3e8" + ] + }, + { + "pc": 7382, + "op": "POP", + "gas": 2989299, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x1c1f", + "0x3e8", + "0x3e8", + "0x0" + ] + }, + { + "pc": 7383, + "op": "SWAP2", + "gas": 2989297, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x1c1f", + "0x3e8", + "0x3e8" + ] + }, + { + "pc": 7384, + "op": "SWAP1", + "gas": 2989294, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x3e8", + "0x3e8", + "0x1c1f" + ] + }, + { + "pc": 7385, + "op": "POP", + "gas": 2989291, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x3e8", + "0x1c1f", + "0x3e8" + ] + }, + { + "pc": 7386, + "op": "JUMP", + "gas": 2989289, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x3e8", + "0x1c1f" + ] + }, + { + "pc": 7199, + "op": "JUMPDEST", + "gas": 2989281, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x3e8" + ] + }, + { + "pc": 7200, + "op": "SWAP3", + "gas": 2989280, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x3e8" + ] + }, + { + "pc": 7201, + "op": "POP", + "gas": 2989277, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x3e8" + ] + }, + { + "pc": 7202, + "op": "DUP3", + "gas": 2989275, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0" + ] + }, + { + "pc": 7203, + "op": "PUSH32", + "gas": 2989272, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x3e8" + ] + }, + { + "pc": 7236, + "op": "SUB", + "gas": 2989269, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x3e8", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 7237, + "op": "DUP3", + "gas": 2989266, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc17" + ] + }, + { + "pc": 7238, + "op": "GT", + "gas": 2989263, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc17", + "0x0" + ] + }, + { + "pc": 7239, + "op": "ISZERO", + "gas": 2989260, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 7240, + "op": "PUSH2", + "gas": 2989257, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x1" + ] + }, + { + "pc": 7243, + "op": "JUMPI", + "gas": 2989254, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x1", + "0x1c54" + ] + }, + { + "pc": 7252, + "op": "JUMPDEST", + "gas": 2989244, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0" + ] + }, + { + "pc": 7253, + "op": "DUP3", + "gas": 2989243, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0" + ] + }, + { + "pc": 7254, + "op": "DUP3", + "gas": 2989240, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x3e8" + ] + }, + { + "pc": 7255, + "op": "ADD", + "gas": 2989237, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x3e8", + "0x0" + ] + }, + { + "pc": 7256, + "op": "SWAP1", + "gas": 2989234, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x3e8" + ] + }, + { + "pc": 7257, + "op": "POP", + "gas": 2989231, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x3e8", + "0x0" + ] + }, + { + "pc": 7258, + "op": "SWAP3", + "gas": 2989229, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x3e8" + ] + }, + { + "pc": 7259, + "op": "SWAP2", + "gas": 2989226, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x3e8", + "0x3e8", + "0x0", + "0x111f" + ] + }, + { + "pc": 7260, + "op": "POP", + "gas": 2989223, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x3e8", + "0x111f", + "0x0", + "0x3e8" + ] + }, + { + "pc": 7261, + "op": "POP", + "gas": 2989221, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x3e8", + "0x111f", + "0x0" + ] + }, + { + "pc": 7262, + "op": "JUMP", + "gas": 2989219, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x3e8", + "0x111f" + ] + }, + { + "pc": 4383, + "op": "JUMPDEST", + "gas": 2989211, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x3e8" + ] + }, + { + "pc": 4384, + "op": "SWAP1", + "gas": 2989210, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x3e8" + ] + }, + { + "pc": 4385, + "op": "POP", + "gas": 2989207, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x3e8", + "0x0" + ] + }, + { + "pc": 4386, + "op": "DUP4", + "gas": 2989205, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x3e8" + ] + }, + { + "pc": 4387, + "op": "DUP2", + "gas": 2989202, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x3e8", + "0x0" + ] + }, + { + "pc": 4388, + "op": "LT", + "gas": 2989199, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x3e8", + "0x0", + "0x3e8" + ] + }, + { + "pc": 4389, + "op": "ISZERO", + "gas": 2989196, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x3e8", + "0x0" + ] + }, + { + "pc": 4390, + "op": "PUSH2", + "gas": 2989193, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x3e8", + "0x1" + ] + }, + { + "pc": 4393, + "op": "JUMPI", + "gas": 2989190, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x3e8", + "0x1", + "0x1164" + ] + }, + { + "pc": 4452, + "op": "JUMPDEST", + "gas": 2989180, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x3e8" + ] + }, + { + "pc": 4453, + "op": "DUP1", + "gas": 2989179, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x3e8" + ] + }, + { + "pc": 4454, + "op": "SWAP2", + "gas": 2989176, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x3e8", + "0x3e8" + ] + }, + { + "pc": 4455, + "op": "POP", + "gas": 2989173, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x3e8", + "0x3e8", + "0x0" + ] + }, + { + "pc": 4456, + "op": "POP", + "gas": 2989171, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x3e8", + "0x3e8" + ] + }, + { + "pc": 4457, + "op": "SWAP3", + "gas": 2989169, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x3e8" + ] + }, + { + "pc": 4458, + "op": "SWAP2", + "gas": 2989166, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x3e8", + "0x0", + "0x3e8", + "0x1000" + ] + }, + { + "pc": 4459, + "op": "POP", + "gas": 2989163, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x3e8", + "0x1000", + "0x3e8", + "0x0" + ] + }, + { + "pc": 4460, + "op": "POP", + "gas": 2989161, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x3e8", + "0x1000", + "0x3e8" + ] + }, + { + "pc": 4461, + "op": "JUMP", + "gas": 2989159, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x3e8", + "0x1000" + ] + }, + { + "pc": 4096, + "op": "JUMPDEST", + "gas": 2989151, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x3e8" + ] + }, + { + "pc": 4097, + "op": "PUSH1", + "gas": 2989150, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x3e8" + ] + }, + { + "pc": 4099, + "op": "DUP1", + "gas": 2989147, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x3e8", + "0x0" + ] + }, + { + "pc": 4100, + "op": "DUP5", + "gas": 2989144, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x3e8", + "0x0", + "0x0" + ] + }, + { + "pc": 4101, + "op": "PUSH20", + "gas": 2989141, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x3e8", + "0x0", + "0x0", + "0x4" + ] + }, + { + "pc": 4122, + "op": "AND", + "gas": 2989138, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x3e8", + "0x0", + "0x0", + "0x4", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 4123, + "op": "PUSH20", + "gas": 2989135, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x3e8", + "0x0", + "0x0", + "0x4" + ] + }, + { + "pc": 4144, + "op": "AND", + "gas": 2989132, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x3e8", + "0x0", + "0x0", + "0x4", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 4145, + "op": "DUP2", + "gas": 2989129, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x3e8", + "0x0", + "0x0", + "0x4" + ] + }, + { + "pc": 4146, + "op": "MSTORE", + "gas": 2989126, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x3e8", + "0x0", + "0x0", + "0x4", + "0x0" + ] + }, + { + "pc": 4147, + "op": "PUSH1", + "gas": 2989123, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x3e8", + "0x0", + "0x0" + ] + }, + { + "pc": 4149, + "op": "ADD", + "gas": 2989120, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x3e8", + "0x0", + "0x0", + "0x20" + ] + }, + { + "pc": 4150, + "op": "SWAP1", + "gas": 2989117, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x3e8", + "0x0", + "0x20" + ] + }, + { + "pc": 4151, + "op": "DUP2", + "gas": 2989114, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x3e8", + "0x20", + "0x0" + ] + }, + { + "pc": 4152, + "op": "MSTORE", + "gas": 2989111, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x3e8", + "0x20", + "0x0", + "0x20" + ] + }, + { + "pc": 4153, + "op": "PUSH1", + "gas": 2989108, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x3e8", + "0x20" + ] + }, + { + "pc": 4155, + "op": "ADD", + "gas": 2989105, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x3e8", + "0x20", + "0x20" + ] + }, + { + "pc": 4156, + "op": "PUSH1", + "gas": 2989102, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x3e8", + "0x40" + ] + }, + { + "pc": 4158, + "op": "SHA3", + "gas": 2989099, + "gasCost": 42, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x3e8", + "0x40", + "0x0" + ] + }, + { + "pc": 4159, + "op": "DUP2", + "gas": 2989057, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x3e8", + "0x52d75039926638d3c558b2bdefb945d5be8dae29dedd1c313212a4d472d9fde5" + ] + }, + { + "pc": 4160, + "op": "SWAP1", + "gas": 2989054, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x3e8", + "0x52d75039926638d3c558b2bdefb945d5be8dae29dedd1c313212a4d472d9fde5", + "0x3e8" + ] + }, + { + "pc": 4161, + "op": "SSTORE", + "gas": 2989051, + "gasCost": 20000, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x3e8", + "0x3e8", + "0x52d75039926638d3c558b2bdefb945d5be8dae29dedd1c313212a4d472d9fde5" + ], + "storage": { + "0x0000000000000000000000000000000000000000000000000000000000000005": "0x000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd65710012", + "0x52d75039926638d3c558b2bdefb945d5be8dae29dedd1c313212a4d472d9fde5": "0x00000000000000000000000000000000000000000000000000000000000003e8", + "0x5a158573daab1c353835da34297290f5f813859e4bb52de641691b875502523f": "0x00000000000000000000000000000000000000000000000000038d7ea4c66c78" + }, + "extraData": { + "proofList": [ + { + "address": "0x34041eff1f32989bdaa95875e0f41afd6294dcd4", + "nonce": 1, + "balance": "0x0", + "codeHash": "0x9b5ea0519f6e20c36338989b6accc7cf3384eac2f0a083e82730bca177544409", + "storage": { + "key": "0x52d75039926638d3c558b2bdefb945d5be8dae29dedd1c313212a4d472d9fde5", + "value": "0x0000000000000000000000000000000000000000000000000000000000000000" + } + } + ] + } + }, + { + "pc": 4162, + "op": "POP", + "gas": 2969051, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x3e8" + ] + }, + { + "pc": 4163, + "op": "DUP2", + "gas": 2969049, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8" + ] + }, + { + "pc": 4164, + "op": "PUSH20", + "gas": 2969046, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x4" + ] + }, + { + "pc": 4185, + "op": "AND", + "gas": 2969043, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x4", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 4186, + "op": "DUP4", + "gas": 2969040, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x4" + ] + }, + { + "pc": 4187, + "op": "PUSH20", + "gas": 2969037, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x4", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 4208, + "op": "AND", + "gas": 2969034, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x4", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 4209, + "op": "PUSH32", + "gas": 2969031, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x4", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 4242, + "op": "DUP4", + "gas": 2969028, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x4", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef" + ] + }, + { + "pc": 4243, + "op": "PUSH1", + "gas": 2969025, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x4", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x3e8" + ] + }, + { + "pc": 4245, + "op": "MLOAD", + "gas": 2969022, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x4", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x3e8", + "0x40" + ] + }, + { + "pc": 4246, + "op": "PUSH2", + "gas": 2969019, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x4", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x3e8", + "0xe0" + ] + }, + { + "pc": 4249, + "op": "SWAP2", + "gas": 2969016, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x4", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x3e8", + "0xe0", + "0x109f" + ] + }, + { + "pc": 4250, + "op": "SWAP1", + "gas": 2969013, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x4", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0xe0", + "0x3e8" + ] + }, + { + "pc": 4251, + "op": "PUSH2", + "gas": 2969010, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x4", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0" + ] + }, + { + "pc": 4254, + "op": "JUMP", + "gas": 2969007, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x4", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x1bb7" + ] + }, + { + "pc": 7095, + "op": "JUMPDEST", + "gas": 2968999, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x4", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0" + ] + }, + { + "pc": 7096, + "op": "PUSH1", + "gas": 2968998, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x4", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0" + ] + }, + { + "pc": 7098, + "op": "PUSH1", + "gas": 2968995, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x4", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x0" + ] + }, + { + "pc": 7100, + "op": "DUP3", + "gas": 2968992, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x4", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x0", + "0x20" + ] + }, + { + "pc": 7101, + "op": "ADD", + "gas": 2968989, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x4", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x0", + "0x20", + "0xe0" + ] + }, + { + "pc": 7102, + "op": "SWAP1", + "gas": 2968986, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x4", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x0", + "0x100" + ] + }, + { + "pc": 7103, + "op": "POP", + "gas": 2968983, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x4", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x100", + "0x0" + ] + }, + { + "pc": 7104, + "op": "PUSH2", + "gas": 2968981, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x4", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x100" + ] + }, + { + "pc": 7107, + "op": "PUSH1", + "gas": 2968978, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x4", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x100", + "0x1bcc" + ] + }, + { + "pc": 7109, + "op": "DUP4", + "gas": 2968975, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x4", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x100", + "0x1bcc", + "0x0" + ] + }, + { + "pc": 7110, + "op": "ADD", + "gas": 2968972, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x4", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x100", + "0x1bcc", + "0x0", + "0xe0" + ] + }, + { + "pc": 7111, + "op": "DUP5", + "gas": 2968969, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x4", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x100", + "0x1bcc", + "0xe0" + ] + }, + { + "pc": 7112, + "op": "PUSH2", + "gas": 2968966, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x4", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x100", + "0x1bcc", + "0xe0", + "0x3e8" + ] + }, + { + "pc": 7115, + "op": "JUMP", + "gas": 2968963, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x4", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x100", + "0x1bcc", + "0xe0", + "0x3e8", + "0x19c1" + ] + }, + { + "pc": 6593, + "op": "JUMPDEST", + "gas": 2968955, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x4", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x100", + "0x1bcc", + "0xe0", + "0x3e8" + ] + }, + { + "pc": 6594, + "op": "PUSH2", + "gas": 2968954, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x4", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x100", + "0x1bcc", + "0xe0", + "0x3e8" + ] + }, + { + "pc": 6597, + "op": "DUP2", + "gas": 2968951, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x4", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x100", + "0x1bcc", + "0xe0", + "0x3e8", + "0x19ca" + ] + }, + { + "pc": 6598, + "op": "PUSH2", + "gas": 2968948, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x4", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x100", + "0x1bcc", + "0xe0", + "0x3e8", + "0x19ca", + "0x3e8" + ] + }, + { + "pc": 6601, + "op": "JUMP", + "gas": 2968945, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x4", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x100", + "0x1bcc", + "0xe0", + "0x3e8", + "0x19ca", + "0x3e8", + "0x1cd1" + ] + }, + { + "pc": 7377, + "op": "JUMPDEST", + "gas": 2968937, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x4", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x100", + "0x1bcc", + "0xe0", + "0x3e8", + "0x19ca", + "0x3e8" + ] + }, + { + "pc": 7378, + "op": "PUSH1", + "gas": 2968936, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x4", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x100", + "0x1bcc", + "0xe0", + "0x3e8", + "0x19ca", + "0x3e8" + ] + }, + { + "pc": 7380, + "op": "DUP2", + "gas": 2968933, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x4", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x100", + "0x1bcc", + "0xe0", + "0x3e8", + "0x19ca", + "0x3e8", + "0x0" + ] + }, + { + "pc": 7381, + "op": "SWAP1", + "gas": 2968930, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x4", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x100", + "0x1bcc", + "0xe0", + "0x3e8", + "0x19ca", + "0x3e8", + "0x0", + "0x3e8" + ] + }, + { + "pc": 7382, + "op": "POP", + "gas": 2968927, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x4", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x100", + "0x1bcc", + "0xe0", + "0x3e8", + "0x19ca", + "0x3e8", + "0x3e8", + "0x0" + ] + }, + { + "pc": 7383, + "op": "SWAP2", + "gas": 2968925, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x4", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x100", + "0x1bcc", + "0xe0", + "0x3e8", + "0x19ca", + "0x3e8", + "0x3e8" + ] + }, + { + "pc": 7384, + "op": "SWAP1", + "gas": 2968922, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x4", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x100", + "0x1bcc", + "0xe0", + "0x3e8", + "0x3e8", + "0x3e8", + "0x19ca" + ] + }, + { + "pc": 7385, + "op": "POP", + "gas": 2968919, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x4", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x100", + "0x1bcc", + "0xe0", + "0x3e8", + "0x3e8", + "0x19ca", + "0x3e8" + ] + }, + { + "pc": 7386, + "op": "JUMP", + "gas": 2968917, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x4", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x100", + "0x1bcc", + "0xe0", + "0x3e8", + "0x3e8", + "0x19ca" + ] + }, + { + "pc": 6602, + "op": "JUMPDEST", + "gas": 2968909, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x4", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x100", + "0x1bcc", + "0xe0", + "0x3e8", + "0x3e8" + ] + }, + { + "pc": 6603, + "op": "DUP3", + "gas": 2968908, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x4", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x100", + "0x1bcc", + "0xe0", + "0x3e8", + "0x3e8" + ] + }, + { + "pc": 6604, + "op": "MSTORE", + "gas": 2968905, + "gasCost": 6, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x4", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x100", + "0x1bcc", + "0xe0", + "0x3e8", + "0x3e8", + "0xe0" + ] + }, + { + "pc": 6605, + "op": "POP", + "gas": 2968899, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x4", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x100", + "0x1bcc", + "0xe0", + "0x3e8" + ] + }, + { + "pc": 6606, + "op": "POP", + "gas": 2968897, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x4", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x100", + "0x1bcc", + "0xe0" + ] + }, + { + "pc": 6607, + "op": "JUMP", + "gas": 2968895, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x4", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x100", + "0x1bcc" + ] + }, + { + "pc": 7116, + "op": "JUMPDEST", + "gas": 2968887, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x4", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x100" + ] + }, + { + "pc": 7117, + "op": "SWAP3", + "gas": 2968886, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x4", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x109f", + "0x3e8", + "0xe0", + "0x100" + ] + }, + { + "pc": 7118, + "op": "SWAP2", + "gas": 2968883, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x4", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x100", + "0x3e8", + "0xe0", + "0x109f" + ] + }, + { + "pc": 7119, + "op": "POP", + "gas": 2968880, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x4", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x100", + "0x109f", + "0xe0", + "0x3e8" + ] + }, + { + "pc": 7120, + "op": "POP", + "gas": 2968878, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x4", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x100", + "0x109f", + "0xe0" + ] + }, + { + "pc": 7121, + "op": "JUMP", + "gas": 2968876, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x4", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x100", + "0x109f" + ] + }, + { + "pc": 4255, + "op": "JUMPDEST", + "gas": 2968868, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x4", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x100" + ] + }, + { + "pc": 4256, + "op": "PUSH1", + "gas": 2968867, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x4", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x100" + ] + }, + { + "pc": 4258, + "op": "MLOAD", + "gas": 2968864, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x4", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x100", + "0x40" + ] + }, + { + "pc": 4259, + "op": "DUP1", + "gas": 2968861, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x4", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x100", + "0xe0" + ] + }, + { + "pc": 4260, + "op": "SWAP2", + "gas": 2968858, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x4", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x100", + "0xe0", + "0xe0" + ] + }, + { + "pc": 4261, + "op": "SUB", + "gas": 2968855, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x4", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0xe0", + "0xe0", + "0x100" + ] + }, + { + "pc": 4262, + "op": "SWAP1", + "gas": 2968852, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x4", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0xe0", + "0x20" + ] + }, + { + "pc": 4263, + "op": "LOG3", + "gas": 2968849, + "gasCost": 1756, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8", + "0x4", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "0x20", + "0xe0" + ] + }, + { + "pc": 4264, + "op": "POP", + "gas": 2967093, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4", + "0x3e8" + ] + }, + { + "pc": 4265, + "op": "POP", + "gas": 2967091, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x4" + ] + }, + { + "pc": 4266, + "op": "POP", + "gas": 2967089, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 4267, + "op": "JUMP", + "gas": 2967087, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0xbb3" + ] + }, + { + "pc": 2995, + "op": "JUMPDEST", + "gas": 2967079, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0" + ] + }, + { + "pc": 2996, + "op": "PUSH1", + "gas": 2967078, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0" + ] + }, + { + "pc": 2998, + "op": "SWAP1", + "gas": 2967075, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x0", + "0x1" + ] + }, + { + "pc": 2999, + "op": "POP", + "gas": 2967072, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x1", + "0x0" + ] + }, + { + "pc": 3000, + "op": "SWAP3", + "gas": 2967070, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x4", + "0x3e8", + "0x1" + ] + }, + { + "pc": 3001, + "op": "SWAP2", + "gas": 2967067, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x1", + "0x4", + "0x3e8", + "0x318" + ] + }, + { + "pc": 3002, + "op": "POP", + "gas": 2967064, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x1", + "0x318", + "0x3e8", + "0x4" + ] + }, + { + "pc": 3003, + "op": "POP", + "gas": 2967062, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x1", + "0x318", + "0x3e8" + ] + }, + { + "pc": 3004, + "op": "JUMP", + "gas": 2967060, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x1", + "0x318" + ] + }, + { + "pc": 792, + "op": "JUMPDEST", + "gas": 2967052, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x1" + ] + }, + { + "pc": 793, + "op": "PUSH1", + "gas": 2967051, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x1" + ] + }, + { + "pc": 795, + "op": "MLOAD", + "gas": 2967048, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x1", + "0x40" + ] + }, + { + "pc": 796, + "op": "PUSH2", + "gas": 2967045, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x1", + "0xe0" + ] + }, + { + "pc": 799, + "op": "SWAP2", + "gas": 2967042, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x1", + "0xe0", + "0x325" + ] + }, + { + "pc": 800, + "op": "SWAP1", + "gas": 2967039, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0xe0", + "0x1" + ] + }, + { + "pc": 801, + "op": "PUSH2", + "gas": 2967036, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0" + ] + }, + { + "pc": 804, + "op": "JUMP", + "gas": 2967033, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x19fa" + ] + }, + { + "pc": 6650, + "op": "JUMPDEST", + "gas": 2967025, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0" + ] + }, + { + "pc": 6651, + "op": "PUSH1", + "gas": 2967024, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0" + ] + }, + { + "pc": 6653, + "op": "PUSH1", + "gas": 2967021, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x0" + ] + }, + { + "pc": 6655, + "op": "DUP3", + "gas": 2967018, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x0", + "0x20" + ] + }, + { + "pc": 6656, + "op": "ADD", + "gas": 2967015, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x0", + "0x20", + "0xe0" + ] + }, + { + "pc": 6657, + "op": "SWAP1", + "gas": 2967012, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x0", + "0x100" + ] + }, + { + "pc": 6658, + "op": "POP", + "gas": 2967009, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x100", + "0x0" + ] + }, + { + "pc": 6659, + "op": "PUSH2", + "gas": 2967007, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x100" + ] + }, + { + "pc": 6662, + "op": "PUSH1", + "gas": 2967004, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x100", + "0x1a0f" + ] + }, + { + "pc": 6664, + "op": "DUP4", + "gas": 2967001, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x100", + "0x1a0f", + "0x0" + ] + }, + { + "pc": 6665, + "op": "ADD", + "gas": 2966998, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x100", + "0x1a0f", + "0x0", + "0xe0" + ] + }, + { + "pc": 6666, + "op": "DUP5", + "gas": 2966995, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x100", + "0x1a0f", + "0xe0" + ] + }, + { + "pc": 6667, + "op": "PUSH2", + "gas": 2966992, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x100", + "0x1a0f", + "0xe0", + "0x1" + ] + }, + { + "pc": 6670, + "op": "JUMP", + "gas": 2966989, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x100", + "0x1a0f", + "0xe0", + "0x1", + "0x17d5" + ] + }, + { + "pc": 6101, + "op": "JUMPDEST", + "gas": 2966981, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x100", + "0x1a0f", + "0xe0", + "0x1" + ] + }, + { + "pc": 6102, + "op": "PUSH2", + "gas": 2966980, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x100", + "0x1a0f", + "0xe0", + "0x1" + ] + }, + { + "pc": 6105, + "op": "DUP2", + "gas": 2966977, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x100", + "0x1a0f", + "0xe0", + "0x1", + "0x17de" + ] + }, + { + "pc": 6106, + "op": "PUSH2", + "gas": 2966974, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x100", + "0x1a0f", + "0xe0", + "0x1", + "0x17de", + "0x1" + ] + }, + { + "pc": 6109, + "op": "JUMP", + "gas": 2966971, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x100", + "0x1a0f", + "0xe0", + "0x1", + "0x17de", + "0x1", + "0x1ca5" + ] + }, + { + "pc": 7333, + "op": "JUMPDEST", + "gas": 2966963, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x100", + "0x1a0f", + "0xe0", + "0x1", + "0x17de", + "0x1" + ] + }, + { + "pc": 7334, + "op": "PUSH1", + "gas": 2966962, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x100", + "0x1a0f", + "0xe0", + "0x1", + "0x17de", + "0x1" + ] + }, + { + "pc": 7336, + "op": "DUP2", + "gas": 2966959, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x100", + "0x1a0f", + "0xe0", + "0x1", + "0x17de", + "0x1", + "0x0" + ] + }, + { + "pc": 7337, + "op": "ISZERO", + "gas": 2966956, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x100", + "0x1a0f", + "0xe0", + "0x1", + "0x17de", + "0x1", + "0x0", + "0x1" + ] + }, + { + "pc": 7338, + "op": "ISZERO", + "gas": 2966953, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x100", + "0x1a0f", + "0xe0", + "0x1", + "0x17de", + "0x1", + "0x0", + "0x0" + ] + }, + { + "pc": 7339, + "op": "SWAP1", + "gas": 2966950, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x100", + "0x1a0f", + "0xe0", + "0x1", + "0x17de", + "0x1", + "0x0", + "0x1" + ] + }, + { + "pc": 7340, + "op": "POP", + "gas": 2966947, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x100", + "0x1a0f", + "0xe0", + "0x1", + "0x17de", + "0x1", + "0x1", + "0x0" + ] + }, + { + "pc": 7341, + "op": "SWAP2", + "gas": 2966945, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x100", + "0x1a0f", + "0xe0", + "0x1", + "0x17de", + "0x1", + "0x1" + ] + }, + { + "pc": 7342, + "op": "SWAP1", + "gas": 2966942, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x100", + "0x1a0f", + "0xe0", + "0x1", + "0x1", + "0x1", + "0x17de" + ] + }, + { + "pc": 7343, + "op": "POP", + "gas": 2966939, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x100", + "0x1a0f", + "0xe0", + "0x1", + "0x1", + "0x17de", + "0x1" + ] + }, + { + "pc": 7344, + "op": "JUMP", + "gas": 2966937, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x100", + "0x1a0f", + "0xe0", + "0x1", + "0x1", + "0x17de" + ] + }, + { + "pc": 6110, + "op": "JUMPDEST", + "gas": 2966929, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x100", + "0x1a0f", + "0xe0", + "0x1", + "0x1" + ] + }, + { + "pc": 6111, + "op": "DUP3", + "gas": 2966928, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x100", + "0x1a0f", + "0xe0", + "0x1", + "0x1" + ] + }, + { + "pc": 6112, + "op": "MSTORE", + "gas": 2966925, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x100", + "0x1a0f", + "0xe0", + "0x1", + "0x1", + "0xe0" + ] + }, + { + "pc": 6113, + "op": "POP", + "gas": 2966922, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x100", + "0x1a0f", + "0xe0", + "0x1" + ] + }, + { + "pc": 6114, + "op": "POP", + "gas": 2966920, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x100", + "0x1a0f", + "0xe0" + ] + }, + { + "pc": 6115, + "op": "JUMP", + "gas": 2966918, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x100", + "0x1a0f" + ] + }, + { + "pc": 6671, + "op": "JUMPDEST", + "gas": 2966910, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x100" + ] + }, + { + "pc": 6672, + "op": "SWAP3", + "gas": 2966909, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x325", + "0x1", + "0xe0", + "0x100" + ] + }, + { + "pc": 6673, + "op": "SWAP2", + "gas": 2966906, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x100", + "0x1", + "0xe0", + "0x325" + ] + }, + { + "pc": 6674, + "op": "POP", + "gas": 2966903, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x100", + "0x325", + "0xe0", + "0x1" + ] + }, + { + "pc": 6675, + "op": "POP", + "gas": 2966901, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x100", + "0x325", + "0xe0" + ] + }, + { + "pc": 6676, + "op": "JUMP", + "gas": 2966899, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x100", + "0x325" + ] + }, + { + "pc": 805, + "op": "JUMPDEST", + "gas": 2966891, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x100" + ] + }, + { + "pc": 806, + "op": "PUSH1", + "gas": 2966890, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x100" + ] + }, + { + "pc": 808, + "op": "MLOAD", + "gas": 2966887, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x100", + "0x40" + ] + }, + { + "pc": 809, + "op": "DUP1", + "gas": 2966884, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x100", + "0xe0" + ] + }, + { + "pc": 810, + "op": "SWAP2", + "gas": 2966881, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x100", + "0xe0", + "0xe0" + ] + }, + { + "pc": 811, + "op": "SUB", + "gas": 2966878, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0xe0", + "0xe0", + "0x100" + ] + }, + { + "pc": 812, + "op": "SWAP1", + "gas": 2966875, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0xe0", + "0x20" + ] + }, + { + "pc": 813, + "op": "RETURN", + "gas": 2966872, + "gasCost": 0, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x20", + "0xe0" + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/trie/zkproof/token_trace.json b/internal/utesting/blocktraces/token.json similarity index 51% rename from trie/zkproof/token_trace.json rename to internal/utesting/blocktraces/token.json index b23ef394b3..f73bb205c2 100644 --- a/trie/zkproof/token_trace.json +++ b/internal/utesting/blocktraces/token.json @@ -1,81 +1,85 @@ { "blockTrace": { - "number": "0x6", - "hash": "0x948c745a4353b59d729dcc3f304a7caeb4c4ddb1b360b0cbfff88f60c604bb03", - "gasLimit": 6761449, + "number": "0x3c", + "hash": "0x7379100057162be967724fdbb7d455131c5f60ef4f2609955182dd47c021e9a4", + "gasLimit": 7127311, "difficulty": "0x2", - "baseFee": "0x1d471b50", + "baseFee": "0x188200", "coinbase": { "address": "0x0000000000000000000000000000000000000000", "nonce": 0, "balance": "0x0", "codeHash": "0x0000000000000000000000000000000000000000000000000000000000000000" }, - "time": 1656084227, + "time": 1660042402, "transactions": [ { "type": 2, - "nonce": 6, + "nonce": 72, "gas": 3022936, - "gasPrice": "0x250dfe91", + "gasPrice": "0x1f0488", "from": "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "to": "0xee0e03c1a621084ca3c542f36e4a5d0230304471", + "to": "0x34041eff1f32989bdaa95875e0f41afd6294dcd4", "chainId": "0xcf55", "value": "0x0", "data": "0xa9059cbb0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba7200000000000000000000000000000000000000000000000000000000000003e8", "isCreate": false, - "v": "0x1", - "r": "0x6321124e5b94334c5e541f8bafbf7cbd4a56232ca4ed84e0b3dbdd0a33eaab1f", - "s": "0x1d49aedf423a875bb743c7af232476761b1221f112a3b0a0f43f572f9b190269" + "v": "0x0", + "r": "0xc9f0fdd83395ac422c5bec02c244be3d1b15cfe6b6bcd47225d5ea5f62091898", + "s": "0x56c7c873a0020faebf65221c5f5dd8611c820054be5f4ce7d64e9a72ab76fd99" } ] }, "storageTrace": { - "rootBefore": "0x29d61190c8700cd697ab9d9907a4e7efd5fd2eb5b4b46c9f0344c8e760054ac6", - "rootAfter": "0x2ccd52e2f313572c80dab2ebacce815622e7d4d050d9566f403de881baf3692f", + "rootBefore": "0x304a87706e70eb1ed30b7b0ab9efee14467f2825b58d9fd99ddf8e13da1e7897", + "rootAfter": "0x0abc4dead5cdeb5e279485a1ab3d9030831b46fefc212e93bf62e785d12233d4", "proofs": { - "0x0000000000000000000000000000000000000000": [ - "0x00923ad76a4f3e4c63049db2818456f9037e49b5b467292e893b8fc3afe1cdd0198432d4cc0d44a7ffeb16c72000d4d3fe1991cac0ad2a111616b2f3fbf039ef02", - "0x01e232499c4754368052075d13fb84b18537b94a2da166170e7bd94bdc879097090404000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000cc0a77f6e063b4b62eb7d9ed6f427cf687d8d0071d751850cfe5d136bc60d3ab000000000000000000000000000000000000000000000000000000000000000000", + "0x34041eff1F32989BDaa95875e0f41AFD6294dCD4": [ + "0x0028192bcc2590a24c3760ca03cc5b4e3b88a78a426bea29a622eb40cf8deae12f0382a70d04b0fae8cb295e9c89c0b44f2401284534fea5cbd5eb109970e0153c", + "0x0024ad4dd3f331e4d7427443930ede446a5b415267a43a183c76e6359c219f5a4423aaf5d479d4e622e738b9357adf31c5282e777f45bcd2e45dfeeb202eec869b", + "0x0014ced77e42df8602549fdf9b8509d4cb6765e02256219619e2022ebf3b7351ab005ca0006ed76f7b3943b33d5d27ec0626f6636a5771215bb46981b5662e15fd", + "0x00258c3c1db7aff59ce682028e35557e01991ec04c2f56d16d1cf188953d1f8312131c4cb3f40252d92fb6bbe40f451092487ffe275b5c530665f3fd2e60e15dc3", + "0x00158e457fc9a49a2e3b85543a47d928efbaea223d805c00d6a171401be8f462b423ff1392595acdc021faf5076099abceaf7a436cf5c1f478afd1bd56a0360342", + "0x00206263f107d9c0e415148a9f9ee959c1781f9f3bb7e8005f684ea62263acc7f80c026fa00fd964e531737d1921efbe9dcd5fb9c53c6e9b33f86bd5be8977e0bb", + "0x01260b88a7a51caa160405b0d2eceac1967b2c627d2e27977d29709fcae7255d1d04040000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000009b5ea0519f6e20c36338989b6accc7cf3384eac2f0a083e82730bca17754440926384a5384a63d58182f1652dd3e1df953cf8853a7c4054a014430b609be246700", "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" ], "0x4cb1aB63aF5D8931Ce09673EbD8ae2ce16fD6571": [ - "0x00923ad76a4f3e4c63049db2818456f9037e49b5b467292e893b8fc3afe1cdd0198432d4cc0d44a7ffeb16c72000d4d3fe1991cac0ad2a111616b2f3fbf039ef02", - "0x0012d5032bcc5f380a17cece655bad51f0b4037b413c3220ff298b2f11059f5c01d42b1f9c974d478ce2666e6f703a929c2c0decfe4cb35b6cd034e73bc7fb8816", - "0x0000000000000000000000000000000000000000000000000000000000000000001793bb0c42c9c7de4c1cb41f7610f2bd805cd2d12a95963efe8fffe6aeaf2719", - "0x005adb69c65951b9353cf992f44d6d791f65012b51301faf43cfb7f96a32a1e7140000000000000000000000000000000000000000000000000000000000000000", - "0x0000000000000000000000000000000000000000000000000000000000000000005349201939046e1e6e07a9afa647abf2300a243b8cc4c565c56b502e951c412c", - "0x00d9082e2881f3ef16f442c581ddff198edfabf3971ede7229e872b2997bf92825f770b62c8bd63eb514c559481cf5481eb13cff070cd35245186470e764dc6b15", - "0x0000000000000000000000000000000000000000000000000000000000000000007282c019bd6932847f24ac74c1805c3f0ca37dd0259f8fa853505cf43cf76e1a", - "0x00f317222bb95b5ec46077426a30f6d68bd0a11ef03f14ef228acdb110877d650ca72c67edca1db779b38140aaee9baf382c96315f0884909da4a4a7480f3ab82d", - "0x017581e431a68d0fa641e14a7d29a6c2b150db6da1d13f59dee6f7f492a0bebd290404000000000000000000000000000000000000000000000000000000000000000000060056bc75e2d630fffffffffffffffffffffffffffffffffffffa21f7ac36ada6c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470000000000000000000000000000000000000000000000000000000000000000000", - "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" - ], - "0xEe0e03C1a621084cA3c542F36E4A5D0230304471": [ - "0x00923ad76a4f3e4c63049db2818456f9037e49b5b467292e893b8fc3afe1cdd0198432d4cc0d44a7ffeb16c72000d4d3fe1991cac0ad2a111616b2f3fbf039ef02", - "0x0012d5032bcc5f380a17cece655bad51f0b4037b413c3220ff298b2f11059f5c01d42b1f9c974d478ce2666e6f703a929c2c0decfe4cb35b6cd034e73bc7fb8816", - "0x0000000000000000000000000000000000000000000000000000000000000000001793bb0c42c9c7de4c1cb41f7610f2bd805cd2d12a95963efe8fffe6aeaf2719", - "0x005adb69c65951b9353cf992f44d6d791f65012b51301faf43cfb7f96a32a1e7140000000000000000000000000000000000000000000000000000000000000000", - "0x0000000000000000000000000000000000000000000000000000000000000000005349201939046e1e6e07a9afa647abf2300a243b8cc4c565c56b502e951c412c", - "0x00d9082e2881f3ef16f442c581ddff198edfabf3971ede7229e872b2997bf92825f770b62c8bd63eb514c559481cf5481eb13cff070cd35245186470e764dc6b15", - "0x0195b85674709ba8d45a61b52990ba84b7b2421cc0d0443b1e7f05a582fb9dfb100404000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000178763dea206ad5ecfbf211ddeb69d930d18811bc617cb4bbb0c0e7f0d28a3aa0fc076acc730aaa5a501961ab26709ba5d127ae1958f056c9bb3824eeb02cb8200", + "0x0028192bcc2590a24c3760ca03cc5b4e3b88a78a426bea29a622eb40cf8deae12f0382a70d04b0fae8cb295e9c89c0b44f2401284534fea5cbd5eb109970e0153c", + "0x0024ad4dd3f331e4d7427443930ede446a5b415267a43a183c76e6359c219f5a4423aaf5d479d4e622e738b9357adf31c5282e777f45bcd2e45dfeeb202eec869b", + "0x0014ced77e42df8602549fdf9b8509d4cb6765e02256219619e2022ebf3b7351ab005ca0006ed76f7b3943b33d5d27ec0626f6636a5771215bb46981b5662e15fd", + "0x00258c3c1db7aff59ce682028e35557e01991ec04c2f56d16d1cf188953d1f8312131c4cb3f40252d92fb6bbe40f451092487ffe275b5c530665f3fd2e60e15dc3", + "0x00000000000000000000000000000000000000000000000000000000000000000017421aab4d1977e8dc1d2f103d09456ba27439b54d574c1f540ac50b7472c2aa", + "0x002248f47a53d7e981b187961b71a36033d9ef59273228ec127666f43c5d0fd2c5238a50d6b6bd65463e736c9bbea6e55f17ea99de6e99c288d56b7ecb820508b7", + "0x00000000000000000000000000000000000000000000000000000000000000000023f088530a6a814010961a8db785911b5201adae037753dd721f82bd4f0ea3ce", + "0x000439c829edf4570d12001a28fba939212bb73060a31f1dd434df118416bbdf962fe8b70043185278f8f6c75d7057d75ebc62e82052f480dfc207de3b0e89700e", + "0x0129bdbea092f4f7e6de593fd1a16ddb50b1c2a6297d4ae141a60f8da631e481750404000000000000000000000000000000000000000000000000000000000000000000480056bc75e2d630ffffffffffffffffffffffffffffffffffff4b25aca8775527c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470000000000000000000000000000000000000000000000000000000000000000000", "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" ] }, "storageProofs": { - "0xEe0e03C1a621084cA3c542F36E4A5D0230304471": { + "0x34041eff1F32989BDaa95875e0f41AFD6294dCD4": { + "0x0000000000000000000000000000000000000000000000000000000000000005": [ + "0x00208d1dbc258b64580a6d9f2af72c176dcc3d0cecd7b631a2bb7dfc8f7bc7761f2b7f3a64d35acad9c784bd142be430e67bdc485f341d909b91165f0440dee9d3", + "0x00083521115d5867c79e3b8a6510a47ed7b9bf9f48262182a7dcff2edf7910cb5c2a69ad5b7872c79cdcb8c00d9088c8de8fc95bc5c71d4453375c7474030dc60e", + "0x001adc9fa414d6dcdd2067ac5ff304a2a8f971fc6952ffd8831237e1a2fdaed40719f892997b2a04f7db91c5cef1a06d7b4bda7280876061bd9a467bf8546b651f", + "0x0000000000000000000000000000000000000000000000000000000000000000000e60f6ee1629e337d9f458a40b6cf313fc0e0f64058f18e872ca2d46d452ce8f", + "0x0019b7277c1c5e2e63ba69b1fbb2730d65cc2ccbf347c70b2e30140061ae218fec030d8b41fa9be69e8a988a8be5918097e3207635e5e2eb5488e5b5014c727e2f", + "0x010e9449cefab8e4070797d09578e909e10a0ce4374ea5e4d4c608c2e11961af6801010000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571001200", + "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" + ], "0x5a158573daab1c353835da34297290f5f813859e4bb52de641691b875502523f": [ - "0x00fa6e511a2b931d7df1f54098e581b0c4541e0000170ca04b6e8d4acd3cb77601a30d095d473836681a3a493131e9cb9d7ab65fd09a97487fc7cef2277fd3902a", - "0x015bcfa567f724b471f0711c5b1b5295f4babeca2d70ed85e33abf5f8086e7721a0101000000000000000000000000000000000000000000007f228daac38a51833dbbfc1800", + "0x00208d1dbc258b64580a6d9f2af72c176dcc3d0cecd7b631a2bb7dfc8f7bc7761f2b7f3a64d35acad9c784bd142be430e67bdc485f341d909b91165f0440dee9d3", + "0x011a72e786805fbf3ae385ed702dcabebaf495521b5b1c71f071b424f767a5cf5b0101000000000000000000000000000000000000000000000000000000038d7ea4c6800000", "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" ], "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f": [ - "0x00fa6e511a2b931d7df1f54098e581b0c4541e0000170ca04b6e8d4acd3cb77601a30d095d473836681a3a493131e9cb9d7ab65fd09a97487fc7cef2277fd3902a", - "0x007faff0d7506fafaaf65705e94fb2ebc19158d316498d1fcdf16013498db4e425f855e9ec031301edaf7f84f64a9dc5798916c8678a1f907597da2c3bf8b63a0e", - "0x0057a298c09fb1f9609b74ff09c68470bf41a983d24995a2e05a1fb9546ce3050d75f13df441616c9abe61c1a4b4f6bc3378c052d81dc9c60bffe0a58b43bf9c0f", - "0x00e58093170259b93d55a0051a4ddd33fca70f6f2d6949f65488fa67674a7b76020000000000000000000000000000000000000000000000000000000000000000", - "0x0052fb41bda5330046b2f736cfd86106e5b0aadc56e770f870958d7c15334f9609f6717cff0da9e790935fbba9f4a4ca4401d3b0c3d8767c101bec39252e1bc808", - "0x0134aedb4be7574a842f0fde19fc74dcf1a0369b31b42311b841f80bbc74556d230101000000000000000000000000000000000000000000000000000000000000000003e800", + "0x00208d1dbc258b64580a6d9f2af72c176dcc3d0cecd7b631a2bb7dfc8f7bc7761f2b7f3a64d35acad9c784bd142be430e67bdc485f341d909b91165f0440dee9d3", + "0x00083521115d5867c79e3b8a6510a47ed7b9bf9f48262182a7dcff2edf7910cb5c2a69ad5b7872c79cdcb8c00d9088c8de8fc95bc5c71d4453375c7474030dc60e", + "0x001adc9fa414d6dcdd2067ac5ff304a2a8f971fc6952ffd8831237e1a2fdaed40719f892997b2a04f7db91c5cef1a06d7b4bda7280876061bd9a467bf8546b651f", + "0x0004b81a10283bbec8050489d03d9ed0bb8c3edab4f1caa021dffab3c39c8e92d00000000000000000000000000000000000000000000000000000000000000000", + "0x002348fdd073a14cee60b5c6b66f6d71c583dc2b88a26169bc99227cab668725940000000000000000000000000000000000000000000000000000000000000000", + "0x02", "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" ] } @@ -83,37 +87,37 @@ }, "executionResults": [ { - "gas": 35245, + "gas": 55076, "failed": false, "returnValue": "0000000000000000000000000000000000000000000000000000000000000001", "from": { "address": "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "nonce": 6, - "balance": "0x56bc75e2d630fffffffffffffffffffffffffffffffffffffa21f7ac36ada6", + "nonce": 72, + "balance": "0x56bc75e2d630ffffffffffffffffffffffffffffffffffff4b25aca8775527", "codeHash": "0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470" }, "to": { - "address": "0xee0e03c1a621084ca3c542f36e4a5d0230304471", + "address": "0x34041eff1f32989bdaa95875e0f41afd6294dcd4", "nonce": 1, "balance": "0x0", - "codeHash": "0x178763dea206ad5ecfbf211ddeb69d930d18811bc617cb4bbb0c0e7f0d28a3aa" + "codeHash": "0x9b5ea0519f6e20c36338989b6accc7cf3384eac2f0a083e82730bca177544409" }, "accountAfter": [ { - "address": "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "nonce": 7, - "balance": "0x56bc75e2d630fffffffffffffffffffffffffffffffffffffa1238d58b6896", - "codeHash": "0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470" - }, - { - "address": "0xee0e03c1a621084ca3c542f36e4a5d0230304471", + "address": "0x34041eff1f32989bdaa95875e0f41afd6294dcd4", "nonce": 1, "balance": "0x0", - "codeHash": "0x178763dea206ad5ecfbf211ddeb69d930d18811bc617cb4bbb0c0e7f0d28a3aa" + "codeHash": "0x9b5ea0519f6e20c36338989b6accc7cf3384eac2f0a083e82730bca177544409" + }, + { + "address": "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "nonce": 73, + "balance": "0x56bc75e2d630ffffffffffffffffffffffffffffffffffff4b25980fd70d27", + "codeHash": "0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470" } ], - "codeHash": "0x178763dea206ad5ecfbf211ddeb69d930d18811bc617cb4bbb0c0e7f0d28a3aa", - "byteCode": "0x608060405234801561001057600080fd5b50600436106100a95760003560e01c80633950935111610071578063395093511461016857806370a082311461019857806395d89b41146101c8578063a457c2d7146101e6578063a9059cbb14610216578063dd62ed3e14610246576100a9565b806306fdde03146100ae578063095ea7b3146100cc57806318160ddd146100fc57806323b872dd1461011a578063313ce5671461014a575b600080fd5b6100b6610276565b6040516100c39190610dff565b60405180910390f35b6100e660048036038101906100e19190610c4d565b610308565b6040516100f39190610de4565b60405180910390f35b61010461032b565b6040516101119190610f01565b60405180910390f35b610134600480360381019061012f9190610bfe565b610335565b6040516101419190610de4565b60405180910390f35b610152610364565b60405161015f9190610f1c565b60405180910390f35b610182600480360381019061017d9190610c4d565b61036d565b60405161018f9190610de4565b60405180910390f35b6101b260048036038101906101ad9190610b99565b610417565b6040516101bf9190610f01565b60405180910390f35b6101d061045f565b6040516101dd9190610dff565b60405180910390f35b61020060048036038101906101fb9190610c4d565b6104f1565b60405161020d9190610de4565b60405180910390f35b610230600480360381019061022b9190610c4d565b6105db565b60405161023d9190610de4565b60405180910390f35b610260600480360381019061025b9190610bc2565b6105fe565b60405161026d9190610f01565b60405180910390f35b60606003805461028590611031565b80601f01602080910402602001604051908101604052809291908181526020018280546102b190611031565b80156102fe5780601f106102d3576101008083540402835291602001916102fe565b820191906000526020600020905b8154815290600101906020018083116102e157829003601f168201915b5050505050905090565b600080610313610685565b905061032081858561068d565b600191505092915050565b6000600254905090565b600080610340610685565b905061034d858285610858565b6103588585856108e4565b60019150509392505050565b60006012905090565b600080610378610685565b905061040c818585600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546104079190610f53565b61068d565b600191505092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60606004805461046e90611031565b80601f016020809104026020016040519081016040528092919081815260200182805461049a90611031565b80156104e75780601f106104bc576101008083540402835291602001916104e7565b820191906000526020600020905b8154815290600101906020018083116104ca57829003601f168201915b5050505050905090565b6000806104fc610685565b90506000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050838110156105c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105b990610ee1565b60405180910390fd5b6105cf828686840361068d565b60019250505092915050565b6000806105e6610685565b90506105f38185856108e4565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156106fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106f490610ec1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561076d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161076490610e41565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161084b9190610f01565b60405180910390a3505050565b600061086484846105fe565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146108de57818110156108d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c790610e61565b60405180910390fd5b6108dd848484840361068d565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610954576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094b90610ea1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156109c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109bb90610e21565b60405180910390fd5b6109cf838383610b65565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610a55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4c90610e81565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610ae89190610f53565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610b4c9190610f01565b60405180910390a3610b5f848484610b6a565b50505050565b505050565b505050565b600081359050610b7e816112d5565b92915050565b600081359050610b93816112ec565b92915050565b600060208284031215610bab57600080fd5b6000610bb984828501610b6f565b91505092915050565b60008060408385031215610bd557600080fd5b6000610be385828601610b6f565b9250506020610bf485828601610b6f565b9150509250929050565b600080600060608486031215610c1357600080fd5b6000610c2186828701610b6f565b9350506020610c3286828701610b6f565b9250506040610c4386828701610b84565b9150509250925092565b60008060408385031215610c6057600080fd5b6000610c6e85828601610b6f565b9250506020610c7f85828601610b84565b9150509250929050565b610c9281610fbb565b82525050565b6000610ca382610f37565b610cad8185610f42565b9350610cbd818560208601610ffe565b610cc6816110c1565b840191505092915050565b6000610cde602383610f42565b9150610ce9826110d2565b604082019050919050565b6000610d01602283610f42565b9150610d0c82611121565b604082019050919050565b6000610d24601d83610f42565b9150610d2f82611170565b602082019050919050565b6000610d47602683610f42565b9150610d5282611199565b604082019050919050565b6000610d6a602583610f42565b9150610d75826111e8565b604082019050919050565b6000610d8d602483610f42565b9150610d9882611237565b604082019050919050565b6000610db0602583610f42565b9150610dbb82611286565b604082019050919050565b610dcf81610fe7565b82525050565b610dde81610ff1565b82525050565b6000602082019050610df96000830184610c89565b92915050565b60006020820190508181036000830152610e198184610c98565b905092915050565b60006020820190508181036000830152610e3a81610cd1565b9050919050565b60006020820190508181036000830152610e5a81610cf4565b9050919050565b60006020820190508181036000830152610e7a81610d17565b9050919050565b60006020820190508181036000830152610e9a81610d3a565b9050919050565b60006020820190508181036000830152610eba81610d5d565b9050919050565b60006020820190508181036000830152610eda81610d80565b9050919050565b60006020820190508181036000830152610efa81610da3565b9050919050565b6000602082019050610f166000830184610dc6565b92915050565b6000602082019050610f316000830184610dd5565b92915050565b600081519050919050565b600082825260208201905092915050565b6000610f5e82610fe7565b9150610f6983610fe7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115610f9e57610f9d611063565b5b828201905092915050565b6000610fb482610fc7565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561101c578082015181840152602081019050611001565b8381111561102b576000848401525b50505050565b6000600282049050600182168061104957607f821691505b6020821081141561105d5761105c611092565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6112de81610fa9565b81146112e957600080fd5b50565b6112f581610fe7565b811461130057600080fd5b5056fea2646970667358221220528e9f99da5848328108980c88dcb1501b939a9d0233b2d1854729422b301b9a64736f6c63430008040033", + "codeHash": "0x9b5ea0519f6e20c36338989b6accc7cf3384eac2f0a083e82730bca177544409", + "byteCode": "0x608060405234801561001057600080fd5b506004361061010b5760003560e01c80635c975abb116100a257806395d89b411161007157806395d89b41146102945780639dc29fac146102b2578063a457c2d7146102ce578063a9059cbb146102fe578063dd62ed3e1461032e5761010b565b80635c975abb1461022057806370a082311461023e5780638456cb591461026e5780638e50817a146102785761010b565b8063313ce567116100de578063313ce567146101ac57806339509351146101ca5780633f4ba83a146101fa57806340c10f19146102045761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015e57806323b872dd1461017c575b600080fd5b61011861035e565b6040516101259190611a15565b60405180910390f35b6101486004803603810190610143919061178a565b6103f0565b60405161015591906119fa565b60405180910390f35b61016661040e565b6040516101739190611bb7565b60405180910390f35b6101966004803603810190610191919061173b565b610418565b6040516101a391906119fa565b60405180910390f35b6101b46104f1565b6040516101c19190611bd2565b60405180910390f35b6101e460048036038101906101df919061178a565b610508565b6040516101f191906119fa565b60405180910390f35b6102026105bb565b005b61021e6004803603810190610219919061178a565b610655565b005b610228610743565b60405161023591906119fa565b60405180910390f35b610258600480360381019061025391906116d6565b61075a565b6040516102659190611bb7565b60405180910390f35b6102766107a2565b005b610292600480360381019061028d91906116ff565b61083c565b005b61029c610952565b6040516102a99190611a15565b60405180910390f35b6102cc60048036038101906102c7919061178a565b6109e4565b005b6102e860048036038101906102e3919061178a565b610ad2565b6040516102f591906119fa565b60405180910390f35b6103186004803603810190610313919061178a565b610b9f565b60405161032591906119fa565b60405180910390f35b610348600480360381019061034391906116ff565b610bbd565b6040516103559190611bb7565b60405180910390f35b60606003805461036d90611d51565b80601f016020809104026020016040519081016040528092919081815260200182805461039990611d51565b80156103e65780601f106103bb576101008083540402835291602001916103e6565b820191906000526020600020905b8154815290600101906020018083116103c957829003601f168201915b5050505050905090565b60006104046103fd610c44565b8484610c4c565b6001905092915050565b6000600254905090565b6000610425848484610e17565b6104e684610431610c44565b6104e18560405180606001604052806028815260200161213960289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610497610c44565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110ac9092919063ffffffff16565b610c4c565b600190509392505050565b6000600560009054906101000a900460ff16905090565b60006105b1610515610c44565b846105ac8560016000610526610c44565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461111090919063ffffffff16565b610c4c565b6001905092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461064b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161064290611ab7565b60405180910390fd5b61065361116e565b565b600560019054906101000a900460ff16156106a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161069c90611ad7565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610735576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161072c90611ab7565b60405180910390fd5b61073f8282611218565b5050565b6000600560019054906101000a900460ff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610832576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082990611ab7565b60405180910390fd5b61083a6113ac565b565b600560029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146108cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c390611b37565b60405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b60606004805461096190611d51565b80601f016020809104026020016040519081016040528092919081815260200182805461098d90611d51565b80156109da5780601f106109af576101008083540402835291602001916109da565b820191906000526020600020905b8154815290600101906020018083116109bd57829003601f168201915b5050505050905090565b600560019054906101000a900460ff1615610a34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2b90611ad7565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610ac4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abb90611ab7565b60405180910390fd5b610ace8282611457565b5050565b6000610b95610adf610c44565b84610b90856040518060600160405280602581526020016121616025913960016000610b09610c44565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110ac9092919063ffffffff16565b610c4c565b6001905092915050565b6000610bb3610bac610c44565b8484610e17565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb390611b57565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2390611a77565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e0a9190611bb7565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7e90611b17565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ef7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eee90611a37565b60405180910390fd5b610f02838383611605565b610f6d81604051806060016040528060268152602001612113602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110ac9092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611000816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461111090919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161109f9190611bb7565b60405180910390a3505050565b60008383111582906110f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110eb9190611a15565b60405180910390fd5b50600083856111039190611c5f565b9050809150509392505050565b600080828461111f9190611c09565b905083811015611164576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115b90611a97565b60405180910390fd5b8091505092915050565b600560019054906101000a900460ff166111bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b490611a57565b60405180910390fd5b6000600560016101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611201610c44565b60405161120e91906119df565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611288576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127f90611b77565b60405180910390fd5b61129460008383611605565b6112a98160025461111090919063ffffffff16565b600281905550611300816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461111090919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516113a09190611bb7565b60405180910390a35050565b600560019054906101000a900460ff16156113fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f390611ad7565b60405180910390fd5b6001600560016101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611440610c44565b60405161144d91906119df565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114be90611af7565b60405180910390fd5b6114d382600083611605565b61153e816040518060600160405280602281526020016120f1602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110ac9092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506115958160025461165d90919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516115f99190611bb7565b60405180910390a35050565b6116108383836116a7565b611618610743565b15611658576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164f90611b97565b60405180910390fd5b505050565b600061169f83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506110ac565b905092915050565b505050565b6000813590506116bb816120c2565b92915050565b6000813590506116d0816120d9565b92915050565b6000602082840312156116e857600080fd5b60006116f6848285016116ac565b91505092915050565b6000806040838503121561171257600080fd5b6000611720858286016116ac565b9250506020611731858286016116ac565b9150509250929050565b60008060006060848603121561175057600080fd5b600061175e868287016116ac565b935050602061176f868287016116ac565b9250506040611780868287016116c1565b9150509250925092565b6000806040838503121561179d57600080fd5b60006117ab858286016116ac565b92505060206117bc858286016116c1565b9150509250929050565b6117cf81611ce8565b82525050565b6117de81611ca5565b82525050565b60006117ef82611bed565b6117f98185611bf8565b9350611809818560208601611d1e565b61181281611de1565b840191505092915050565b600061182a602383611bf8565b915061183582611df2565b604082019050919050565b600061184d601483611bf8565b915061185882611e41565b602082019050919050565b6000611870602283611bf8565b915061187b82611e6a565b604082019050919050565b6000611893601b83611bf8565b915061189e82611eb9565b602082019050919050565b60006118b6600b83611bf8565b91506118c182611ee2565b602082019050919050565b60006118d9601083611bf8565b91506118e482611f0b565b602082019050919050565b60006118fc602183611bf8565b915061190782611f34565b604082019050919050565b600061191f602583611bf8565b915061192a82611f83565b604082019050919050565b6000611942600c83611bf8565b915061194d82611fd2565b602082019050919050565b6000611965602483611bf8565b915061197082611ffb565b604082019050919050565b6000611988601f83611bf8565b91506119938261204a565b602082019050919050565b60006119ab602a83611bf8565b91506119b682612073565b604082019050919050565b6119ca81611cd1565b82525050565b6119d981611cdb565b82525050565b60006020820190506119f460008301846117c6565b92915050565b6000602082019050611a0f60008301846117d5565b92915050565b60006020820190508181036000830152611a2f81846117e4565b905092915050565b60006020820190508181036000830152611a508161181d565b9050919050565b60006020820190508181036000830152611a7081611840565b9050919050565b60006020820190508181036000830152611a9081611863565b9050919050565b60006020820190508181036000830152611ab081611886565b9050919050565b60006020820190508181036000830152611ad0816118a9565b9050919050565b60006020820190508181036000830152611af0816118cc565b9050919050565b60006020820190508181036000830152611b10816118ef565b9050919050565b60006020820190508181036000830152611b3081611912565b9050919050565b60006020820190508181036000830152611b5081611935565b9050919050565b60006020820190508181036000830152611b7081611958565b9050919050565b60006020820190508181036000830152611b908161197b565b9050919050565b60006020820190508181036000830152611bb08161199e565b9050919050565b6000602082019050611bcc60008301846119c1565b92915050565b6000602082019050611be760008301846119d0565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611c1482611cd1565b9150611c1f83611cd1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611c5457611c53611d83565b5b828201905092915050565b6000611c6a82611cd1565b9150611c7583611cd1565b925082821015611c8857611c87611d83565b5b828203905092915050565b6000611c9e82611cb1565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b6000611cf382611cfa565b9050919050565b6000611d0582611d0c565b9050919050565b6000611d1782611cb1565b9050919050565b60005b83811015611d3c578082015181840152602081019050611d21565b83811115611d4b576000848401525b50505050565b60006002820490506001821680611d6957607f821691505b60208210811415611d7d57611d7c611db2565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b7f6e6f7420616c6c6f776564000000000000000000000000000000000000000000600082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f6f6e6c7920466163746f72790000000000000000000000000000000000000000600082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b7f45524332305061757361626c653a20746f6b656e207472616e7366657220776860008201527f696c652070617573656400000000000000000000000000000000000000000000602082015250565b6120cb81611c93565b81146120d657600080fd5b50565b6120e281611cd1565b81146120ed57600080fd5b5056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122050720249c11bf2bf6da8b1770af05168068be0eee81154cac03b74b0ab3b6a3f64736f6c63430008040033", "structLogs": [ { "pc": 0, @@ -141,11 +145,6 @@ "stack": [ "0x80", "0x40" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" ] }, { @@ -153,12 +152,7 @@ "op": "CALLVALUE", "gas": 3001334, "gasCost": 2, - "depth": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] + "depth": 1 }, { "pc": 6, @@ -168,11 +162,6 @@ "depth": 1, "stack": [ "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -184,11 +173,6 @@ "stack": [ "0x0", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -200,11 +184,6 @@ "stack": [ "0x0", "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -217,11 +196,6 @@ "0x0", "0x1", "0x10" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -232,11 +206,6 @@ "depth": 1, "stack": [ "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -247,11 +216,6 @@ "depth": 1, "stack": [ "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -259,12 +223,7 @@ "op": "PUSH1", "gas": 3001310, "gasCost": 3, - "depth": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] + "depth": 1 }, { "pc": 20, @@ -274,11 +233,6 @@ "depth": 1, "stack": [ "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -290,11 +244,6 @@ "stack": [ "0x4", "0x44" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -305,11 +254,6 @@ "depth": 1, "stack": [ "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -320,12 +264,7 @@ "depth": 1, "stack": [ "0x0", - "0xa9" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x10b" ] }, { @@ -333,12 +272,7 @@ "op": "PUSH1", "gas": 3001289, "gasCost": 3, - "depth": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] + "depth": 1 }, { "pc": 28, @@ -348,11 +282,6 @@ "depth": 1, "stack": [ "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -363,11 +292,6 @@ "depth": 1, "stack": [ "0xa9059cbb0000000000000000000000008ba1f109551bd432803012645ac136dd" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -379,11 +303,6 @@ "stack": [ "0xa9059cbb0000000000000000000000008ba1f109551bd432803012645ac136dd", "0xe0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -394,11 +313,6 @@ "depth": 1, "stack": [ "0xa9059cbb" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -410,11 +324,6 @@ "stack": [ "0xa9059cbb", "0xa9059cbb" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -426,12 +335,7 @@ "stack": [ "0xa9059cbb", "0xa9059cbb", - "0x39509351" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x5c975abb" ] }, { @@ -443,11 +347,6 @@ "stack": [ "0xa9059cbb", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -459,12 +358,7 @@ "stack": [ "0xa9059cbb", "0x0", - "0x71" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0xa2" ] }, { @@ -475,11 +369,6 @@ "depth": 1, "stack": [ "0xa9059cbb" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -491,28 +380,18 @@ "stack": [ "0xa9059cbb", "0xa9059cbb" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { "pc": 49, - "op": "EQ", + "op": "GT", "gas": 3001249, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", "0xa9059cbb", - "0x39509351" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x95d89b41" ] }, { @@ -524,11 +403,6 @@ "stack": [ "0xa9059cbb", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -540,12 +414,7 @@ "stack": [ "0xa9059cbb", "0x0", - "0x168" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x71" ] }, { @@ -556,11 +425,6 @@ "depth": 1, "stack": [ "0xa9059cbb" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -572,11 +436,6 @@ "stack": [ "0xa9059cbb", "0xa9059cbb" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -588,12 +447,7 @@ "stack": [ "0xa9059cbb", "0xa9059cbb", - "0x70a08231" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x95d89b41" ] }, { @@ -605,11 +459,6 @@ "stack": [ "0xa9059cbb", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -621,12 +470,7 @@ "stack": [ "0xa9059cbb", "0x0", - "0x198" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x294" ] }, { @@ -637,11 +481,6 @@ "depth": 1, "stack": [ "0xa9059cbb" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -653,11 +492,6 @@ "stack": [ "0xa9059cbb", "0xa9059cbb" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -669,12 +503,7 @@ "stack": [ "0xa9059cbb", "0xa9059cbb", - "0x95d89b41" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x9dc29fac" ] }, { @@ -686,11 +515,6 @@ "stack": [ "0xa9059cbb", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -702,12 +526,7 @@ "stack": [ "0xa9059cbb", "0x0", - "0x1c8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x2b2" ] }, { @@ -718,11 +537,6 @@ "depth": 1, "stack": [ "0xa9059cbb" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -734,11 +548,6 @@ "stack": [ "0xa9059cbb", "0xa9059cbb" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -751,11 +560,6 @@ "0xa9059cbb", "0xa9059cbb", "0xa457c2d7" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -767,11 +571,6 @@ "stack": [ "0xa9059cbb", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -783,12 +582,7 @@ "stack": [ "0xa9059cbb", "0x0", - "0x1e6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x2ce" ] }, { @@ -799,11 +593,6 @@ "depth": 1, "stack": [ "0xa9059cbb" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -815,11 +604,6 @@ "stack": [ "0xa9059cbb", "0xa9059cbb" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -832,11 +616,6 @@ "0xa9059cbb", "0xa9059cbb", "0xa9059cbb" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -848,11 +627,6 @@ "stack": [ "0xa9059cbb", "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { @@ -864,398 +638,293 @@ "stack": [ "0xa9059cbb", "0x1", - "0x216" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x2fe" ] }, { - "pc": 534, + "pc": 766, "op": "JUMPDEST", "gas": 3001145, "gasCost": 1, "depth": 1, "stack": [ "0xa9059cbb" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 535, + "pc": 767, "op": "PUSH2", "gas": 3001144, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 538, + "pc": 770, "op": "PUSH1", "gas": 3001141, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x318" ] }, { - "pc": 540, + "pc": 772, "op": "DUP1", "gas": 3001138, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 541, + "pc": 773, "op": "CALLDATASIZE", "gas": 3001135, "gasCost": 2, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x4", "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 542, + "pc": 774, "op": "SUB", "gas": 3001133, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x4", "0x4", "0x44" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 543, + "pc": 775, "op": "DUP2", "gas": 3001130, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x4", "0x40" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 544, + "pc": 776, "op": "ADD", "gas": 3001127, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x4", "0x40", "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 545, + "pc": 777, "op": "SWAP1", "gas": 3001124, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x4", "0x44" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 546, + "pc": 778, "op": "PUSH2", "gas": 3001121, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x44", "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 549, + "pc": 781, "op": "SWAP2", "gas": 3001118, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x44", "0x4", - "0x22b" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x313" ] }, { - "pc": 550, + "pc": 782, "op": "SWAP1", "gas": 3001115, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x4", "0x44" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 551, + "pc": 783, "op": "PUSH2", "gas": 3001112, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x44", "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 554, + "pc": 786, "op": "JUMP", "gas": 3001109, "gasCost": 8, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x44", "0x4", - "0xc4d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x178a" ] }, { - "pc": 3149, + "pc": 6026, "op": "JUMPDEST", "gas": 3001101, "gasCost": 1, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x44", "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 3150, + "pc": 6027, "op": "PUSH1", "gas": 3001100, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x44", "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 3152, + "pc": 6029, "op": "DUP1", "gas": 3001097, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x44", "0x4", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 3153, + "pc": 6030, "op": "PUSH1", "gas": 3001094, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x44", "0x4", "0x0", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 3155, + "pc": 6032, "op": "DUP4", "gas": 3001091, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x44", "0x4", "0x0", "0x0", "0x40" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 3156, + "pc": 6033, "op": "DUP6", "gas": 3001088, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x44", "0x4", "0x0", "0x0", "0x40", "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 3157, + "pc": 6034, "op": "SUB", "gas": 3001085, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x44", "0x4", "0x0", @@ -1263,1806 +932,1491 @@ "0x40", "0x4", "0x44" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 3158, + "pc": 6035, "op": "SLT", "gas": 3001082, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x44", "0x4", "0x0", "0x0", "0x40", "0x40" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 3159, + "pc": 6036, "op": "ISZERO", "gas": 3001079, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x44", "0x4", "0x0", "0x0", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 3160, + "pc": 6037, "op": "PUSH2", "gas": 3001076, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x44", "0x4", "0x0", "0x0", "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 3163, + "pc": 6040, "op": "JUMPI", "gas": 3001073, "gasCost": 10, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x44", "0x4", "0x0", "0x0", "0x1", - "0xc60" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x179d" ] }, { - "pc": 3168, + "pc": 6045, "op": "JUMPDEST", "gas": 3001063, "gasCost": 1, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x44", "0x4", "0x0", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 3169, + "pc": 6046, "op": "PUSH1", "gas": 3001062, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x44", "0x4", "0x0", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 3171, + "pc": 6048, "op": "PUSH2", "gas": 3001059, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x44", "0x4", "0x0", "0x0", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 3174, + "pc": 6051, "op": "DUP6", "gas": 3001056, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x44", "0x4", "0x0", "0x0", "0x0", - "0xc6e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x17ab" ] }, { - "pc": 3175, + "pc": 6052, "op": "DUP3", "gas": 3001053, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x44", "0x4", "0x0", "0x0", "0x0", - "0xc6e", + "0x17ab", "0x44" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 3176, + "pc": 6053, "op": "DUP7", "gas": 3001050, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x44", "0x4", "0x0", "0x0", "0x0", - "0xc6e", + "0x17ab", "0x44", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 3177, + "pc": 6054, "op": "ADD", "gas": 3001047, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x44", "0x4", "0x0", "0x0", "0x0", - "0xc6e", + "0x17ab", "0x44", "0x0", "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 3178, + "pc": 6055, "op": "PUSH2", "gas": 3001044, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x44", "0x4", "0x0", "0x0", "0x0", - "0xc6e", + "0x17ab", "0x44", "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 3181, + "pc": 6058, "op": "JUMP", "gas": 3001041, "gasCost": 8, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x44", "0x4", "0x0", "0x0", "0x0", - "0xc6e", + "0x17ab", "0x44", "0x4", - "0xb6f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x16ac" ] }, { - "pc": 2927, + "pc": 5804, "op": "JUMPDEST", "gas": 3001033, "gasCost": 1, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x44", "0x4", "0x0", "0x0", "0x0", - "0xc6e", + "0x17ab", "0x44", "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 2928, + "pc": 5805, "op": "PUSH1", "gas": 3001032, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x44", "0x4", "0x0", "0x0", "0x0", - "0xc6e", + "0x17ab", "0x44", "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 2930, + "pc": 5807, "op": "DUP2", "gas": 3001029, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x44", "0x4", "0x0", "0x0", "0x0", - "0xc6e", + "0x17ab", "0x44", "0x4", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 2931, + "pc": 5808, "op": "CALLDATALOAD", "gas": 3001026, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x44", "0x4", "0x0", "0x0", "0x0", - "0xc6e", + "0x17ab", "0x44", "0x4", "0x0", "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 2932, + "pc": 5809, "op": "SWAP1", "gas": 3001023, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x44", "0x4", "0x0", "0x0", "0x0", - "0xc6e", + "0x17ab", "0x44", "0x4", "0x0", "0x8ba1f109551bd432803012645ac136ddd64dba72" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 2933, + "pc": 5810, "op": "POP", "gas": 3001020, "gasCost": 2, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x44", "0x4", "0x0", "0x0", "0x0", - "0xc6e", + "0x17ab", "0x44", "0x4", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 2934, + "pc": 5811, "op": "PUSH2", "gas": 3001018, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x44", "0x4", "0x0", "0x0", "0x0", - "0xc6e", + "0x17ab", "0x44", "0x4", "0x8ba1f109551bd432803012645ac136ddd64dba72" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 2937, + "pc": 5814, "op": "DUP2", "gas": 3001015, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x44", "0x4", "0x0", "0x0", "0x0", - "0xc6e", + "0x17ab", "0x44", "0x4", "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0xb7e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x16bb" ] }, { - "pc": 2938, + "pc": 5815, "op": "PUSH2", "gas": 3001012, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x44", "0x4", "0x0", "0x0", "0x0", - "0xc6e", + "0x17ab", "0x44", "0x4", "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0xb7e", + "0x16bb", "0x8ba1f109551bd432803012645ac136ddd64dba72" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 2941, + "pc": 5818, "op": "JUMP", "gas": 3001009, "gasCost": 8, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x44", "0x4", "0x0", "0x0", "0x0", - "0xc6e", + "0x17ab", "0x44", "0x4", "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0xb7e", + "0x16bb", "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x12d5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x20c2" ] }, { - "pc": 4821, + "pc": 8386, "op": "JUMPDEST", "gas": 3001001, "gasCost": 1, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x44", "0x4", "0x0", "0x0", "0x0", - "0xc6e", + "0x17ab", "0x44", "0x4", "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0xb7e", + "0x16bb", "0x8ba1f109551bd432803012645ac136ddd64dba72" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 4822, + "pc": 8387, "op": "PUSH2", "gas": 3001000, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x44", "0x4", "0x0", "0x0", "0x0", - "0xc6e", + "0x17ab", "0x44", "0x4", "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0xb7e", + "0x16bb", "0x8ba1f109551bd432803012645ac136ddd64dba72" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 4825, + "pc": 8390, "op": "DUP2", "gas": 3000997, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x44", "0x4", "0x0", "0x0", "0x0", - "0xc6e", + "0x17ab", "0x44", "0x4", "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0xb7e", + "0x16bb", "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x12de" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x20cb" ] }, { - "pc": 4826, + "pc": 8391, "op": "PUSH2", "gas": 3000994, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x44", "0x4", "0x0", "0x0", "0x0", - "0xc6e", + "0x17ab", "0x44", "0x4", "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0xb7e", + "0x16bb", "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x12de", + "0x20cb", "0x8ba1f109551bd432803012645ac136ddd64dba72" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 4829, + "pc": 8394, "op": "JUMP", "gas": 3000991, "gasCost": 8, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x44", "0x4", "0x0", "0x0", "0x0", - "0xc6e", + "0x17ab", "0x44", "0x4", "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0xb7e", + "0x16bb", "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x12de", + "0x20cb", "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0xfa9" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x1c93" ] }, { - "pc": 4009, + "pc": 7315, "op": "JUMPDEST", "gas": 3000983, "gasCost": 1, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x44", "0x4", "0x0", "0x0", "0x0", - "0xc6e", + "0x17ab", "0x44", "0x4", "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0xb7e", + "0x16bb", "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x12de", + "0x20cb", "0x8ba1f109551bd432803012645ac136ddd64dba72" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 4010, + "pc": 7316, "op": "PUSH1", "gas": 3000982, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x44", "0x4", "0x0", "0x0", "0x0", - "0xc6e", + "0x17ab", "0x44", "0x4", "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0xb7e", + "0x16bb", "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x12de", + "0x20cb", "0x8ba1f109551bd432803012645ac136ddd64dba72" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 4012, + "pc": 7318, "op": "PUSH2", "gas": 3000979, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x44", "0x4", "0x0", "0x0", "0x0", - "0xc6e", + "0x17ab", "0x44", "0x4", "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0xb7e", + "0x16bb", "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x12de", + "0x20cb", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 4015, + "pc": 7321, "op": "DUP3", "gas": 3000976, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x44", "0x4", "0x0", "0x0", "0x0", - "0xc6e", + "0x17ab", "0x44", "0x4", "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0xb7e", + "0x16bb", "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x12de", + "0x20cb", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x0", - "0xfb4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x1c9e" ] }, { - "pc": 4016, + "pc": 7322, "op": "PUSH2", "gas": 3000973, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x44", "0x4", "0x0", "0x0", "0x0", - "0xc6e", + "0x17ab", "0x44", "0x4", "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0xb7e", + "0x16bb", "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x12de", + "0x20cb", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x0", - "0xfb4", + "0x1c9e", "0x8ba1f109551bd432803012645ac136ddd64dba72" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 4019, + "pc": 7325, "op": "JUMP", "gas": 3000970, "gasCost": 8, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x44", "0x4", "0x0", "0x0", "0x0", - "0xc6e", + "0x17ab", "0x44", "0x4", "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0xb7e", + "0x16bb", "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x12de", + "0x20cb", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x0", - "0xfb4", + "0x1c9e", "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0xfc7" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x1cb1" ] }, { - "pc": 4039, + "pc": 7345, "op": "JUMPDEST", "gas": 3000962, "gasCost": 1, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x44", "0x4", "0x0", "0x0", "0x0", - "0xc6e", + "0x17ab", "0x44", "0x4", "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0xb7e", + "0x16bb", "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x12de", + "0x20cb", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x0", - "0xfb4", + "0x1c9e", "0x8ba1f109551bd432803012645ac136ddd64dba72" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 4040, + "pc": 7346, "op": "PUSH1", "gas": 3000961, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x44", "0x4", "0x0", "0x0", "0x0", - "0xc6e", + "0x17ab", "0x44", "0x4", "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0xb7e", + "0x16bb", "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x12de", + "0x20cb", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x0", - "0xfb4", + "0x1c9e", "0x8ba1f109551bd432803012645ac136ddd64dba72" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 4042, + "pc": 7348, "op": "PUSH20", "gas": 3000958, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x44", "0x4", "0x0", "0x0", "0x0", - "0xc6e", + "0x17ab", "0x44", "0x4", "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0xb7e", + "0x16bb", "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x12de", + "0x20cb", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x0", - "0xfb4", + "0x1c9e", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 4063, + "pc": 7369, "op": "DUP3", "gas": 3000955, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x44", "0x4", "0x0", "0x0", "0x0", - "0xc6e", + "0x17ab", "0x44", "0x4", "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0xb7e", + "0x16bb", "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x12de", + "0x20cb", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x0", - "0xfb4", + "0x1c9e", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x0", "0xffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 4064, + "pc": 7370, "op": "AND", "gas": 3000952, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x44", "0x4", "0x0", "0x0", "0x0", - "0xc6e", + "0x17ab", "0x44", "0x4", "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0xb7e", + "0x16bb", "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x12de", + "0x20cb", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x0", - "0xfb4", + "0x1c9e", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x0", "0xffffffffffffffffffffffffffffffffffffffff", "0x8ba1f109551bd432803012645ac136ddd64dba72" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 4065, + "pc": 7371, "op": "SWAP1", "gas": 3000949, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x44", "0x4", "0x0", "0x0", "0x0", - "0xc6e", + "0x17ab", "0x44", "0x4", "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0xb7e", + "0x16bb", "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x12de", + "0x20cb", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x0", - "0xfb4", + "0x1c9e", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x0", "0x8ba1f109551bd432803012645ac136ddd64dba72" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 4066, + "pc": 7372, "op": "POP", "gas": 3000946, "gasCost": 2, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x44", "0x4", "0x0", "0x0", "0x0", - "0xc6e", + "0x17ab", "0x44", "0x4", "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0xb7e", + "0x16bb", "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x12de", + "0x20cb", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x0", - "0xfb4", + "0x1c9e", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 4067, + "pc": 7373, "op": "SWAP2", "gas": 3000944, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x44", "0x4", "0x0", "0x0", "0x0", - "0xc6e", + "0x17ab", "0x44", "0x4", "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0xb7e", + "0x16bb", "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x12de", + "0x20cb", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x0", - "0xfb4", + "0x1c9e", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x8ba1f109551bd432803012645ac136ddd64dba72" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 4068, + "pc": 7374, "op": "SWAP1", "gas": 3000941, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x44", "0x4", "0x0", "0x0", "0x0", - "0xc6e", + "0x17ab", "0x44", "0x4", "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0xb7e", + "0x16bb", "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x12de", + "0x20cb", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x0", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0xfb4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x1c9e" ] }, { - "pc": 4069, + "pc": 7375, "op": "POP", "gas": 3000938, "gasCost": 2, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x44", "0x4", "0x0", "0x0", "0x0", - "0xc6e", + "0x17ab", "0x44", "0x4", "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0xb7e", + "0x16bb", "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x12de", + "0x20cb", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x0", "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0xfb4", + "0x1c9e", "0x8ba1f109551bd432803012645ac136ddd64dba72" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 4070, + "pc": 7376, "op": "JUMP", "gas": 3000936, "gasCost": 8, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x44", "0x4", "0x0", "0x0", "0x0", - "0xc6e", + "0x17ab", "0x44", "0x4", "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0xb7e", + "0x16bb", "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x12de", + "0x20cb", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x0", "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0xfb4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x1c9e" ] }, { - "pc": 4020, + "pc": 7326, "op": "JUMPDEST", "gas": 3000928, "gasCost": 1, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x44", "0x4", "0x0", "0x0", "0x0", - "0xc6e", + "0x17ab", "0x44", "0x4", "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0xb7e", + "0x16bb", "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x12de", + "0x20cb", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x0", "0x8ba1f109551bd432803012645ac136ddd64dba72" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 4021, + "pc": 7327, "op": "SWAP1", "gas": 3000927, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x44", "0x4", "0x0", "0x0", "0x0", - "0xc6e", + "0x17ab", "0x44", "0x4", "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0xb7e", + "0x16bb", "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x12de", + "0x20cb", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x0", "0x8ba1f109551bd432803012645ac136ddd64dba72" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 4022, + "pc": 7328, "op": "POP", "gas": 3000924, "gasCost": 2, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x44", "0x4", "0x0", "0x0", "0x0", - "0xc6e", + "0x17ab", "0x44", "0x4", "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0xb7e", + "0x16bb", "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x12de", + "0x20cb", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 4023, + "pc": 7329, "op": "SWAP2", "gas": 3000922, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x44", "0x4", "0x0", "0x0", "0x0", - "0xc6e", + "0x17ab", "0x44", "0x4", "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0xb7e", + "0x16bb", "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x12de", + "0x20cb", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x8ba1f109551bd432803012645ac136ddd64dba72" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 4024, + "pc": 7330, "op": "SWAP1", "gas": 3000919, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x44", "0x4", "0x0", "0x0", "0x0", - "0xc6e", + "0x17ab", "0x44", "0x4", "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0xb7e", + "0x16bb", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x12de" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x20cb" ] }, { - "pc": 4025, + "pc": 7331, "op": "POP", "gas": 3000916, "gasCost": 2, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x44", "0x4", "0x0", "0x0", "0x0", - "0xc6e", + "0x17ab", "0x44", "0x4", "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0xb7e", + "0x16bb", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x12de", + "0x20cb", "0x8ba1f109551bd432803012645ac136ddd64dba72" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 4026, + "pc": 7332, "op": "JUMP", "gas": 3000914, "gasCost": 8, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x44", "0x4", "0x0", "0x0", "0x0", - "0xc6e", + "0x17ab", "0x44", "0x4", "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0xb7e", + "0x16bb", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x12de" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x20cb" ] }, { - "pc": 4830, + "pc": 8395, "op": "JUMPDEST", "gas": 3000906, "gasCost": 1, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x44", "0x4", "0x0", "0x0", "0x0", - "0xc6e", + "0x17ab", "0x44", "0x4", "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0xb7e", + "0x16bb", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x8ba1f109551bd432803012645ac136ddd64dba72" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 4831, + "pc": 8396, "op": "DUP2", "gas": 3000905, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x44", "0x4", "0x0", "0x0", "0x0", - "0xc6e", + "0x17ab", "0x44", "0x4", "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0xb7e", + "0x16bb", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x8ba1f109551bd432803012645ac136ddd64dba72" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 4832, + "pc": 8397, "op": "EQ", "gas": 3000902, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x44", "0x4", "0x0", "0x0", "0x0", - "0xc6e", + "0x17ab", "0x44", "0x4", "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0xb7e", + "0x16bb", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x8ba1f109551bd432803012645ac136ddd64dba72" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 4833, + "pc": 8398, "op": "PUSH2", "gas": 3000899, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x44", "0x4", "0x0", "0x0", "0x0", - "0xc6e", + "0x17ab", "0x44", "0x4", "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0xb7e", + "0x16bb", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 4836, + "pc": 8401, "op": "JUMPI", "gas": 3000896, "gasCost": 10, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x44", "0x4", "0x0", "0x0", "0x0", - "0xc6e", + "0x17ab", "0x44", "0x4", "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0xb7e", + "0x16bb", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x1", - "0x12e9" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x20d6" ] }, { - "pc": 4841, + "pc": 8406, "op": "JUMPDEST", "gas": 3000886, "gasCost": 1, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x44", "0x4", "0x0", "0x0", "0x0", - "0xc6e", + "0x17ab", "0x44", "0x4", "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0xb7e", + "0x16bb", "0x8ba1f109551bd432803012645ac136ddd64dba72" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 4842, + "pc": 8407, "op": "POP", "gas": 3000885, "gasCost": 2, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x44", "0x4", "0x0", "0x0", "0x0", - "0xc6e", + "0x17ab", "0x44", "0x4", "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0xb7e", + "0x16bb", "0x8ba1f109551bd432803012645ac136ddd64dba72" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 4843, + "pc": 8408, "op": "JUMP", "gas": 3000883, "gasCost": 8, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x44", "0x4", "0x0", "0x0", "0x0", - "0xc6e", + "0x17ab", "0x44", "0x4", "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0xb7e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x16bb" ] }, { - "pc": 2942, + "pc": 5819, "op": "JUMPDEST", "gas": 3000875, "gasCost": 1, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x44", "0x4", "0x0", "0x0", "0x0", - "0xc6e", + "0x17ab", "0x44", "0x4", "0x8ba1f109551bd432803012645ac136ddd64dba72" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 2943, + "pc": 5820, "op": "SWAP3", "gas": 3000874, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x44", "0x4", "0x0", "0x0", "0x0", - "0xc6e", + "0x17ab", "0x44", "0x4", "0x8ba1f109551bd432803012645ac136ddd64dba72" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 2944, + "pc": 5821, "op": "SWAP2", "gas": 3000871, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x44", "0x4", "0x0", @@ -3071,1355 +2425,1105 @@ "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x44", "0x4", - "0xc6e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x17ab" ] }, { - "pc": 2945, + "pc": 5822, "op": "POP", "gas": 3000868, "gasCost": 2, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x44", "0x4", "0x0", "0x0", "0x0", "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0xc6e", + "0x17ab", "0x4", "0x44" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 2946, + "pc": 5823, "op": "POP", "gas": 3000866, "gasCost": 2, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x44", "0x4", "0x0", "0x0", "0x0", "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0xc6e", + "0x17ab", "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 2947, + "pc": 5824, "op": "JUMP", "gas": 3000864, "gasCost": 8, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x44", "0x4", "0x0", "0x0", "0x0", "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0xc6e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x17ab" ] }, { - "pc": 3182, + "pc": 6059, "op": "JUMPDEST", "gas": 3000856, "gasCost": 1, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x44", "0x4", "0x0", "0x0", "0x0", "0x8ba1f109551bd432803012645ac136ddd64dba72" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 3183, + "pc": 6060, "op": "SWAP3", "gas": 3000855, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x44", "0x4", "0x0", "0x0", "0x0", "0x8ba1f109551bd432803012645ac136ddd64dba72" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 3184, + "pc": 6061, "op": "POP", "gas": 3000852, "gasCost": 2, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x44", "0x4", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x0", "0x0", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 3185, + "pc": 6062, "op": "POP", "gas": 3000850, "gasCost": 2, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x44", "0x4", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x0", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 3186, + "pc": 6063, "op": "PUSH1", "gas": 3000848, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x44", "0x4", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 3188, + "pc": 6065, "op": "PUSH2", "gas": 3000845, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x44", "0x4", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x0", "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 3191, + "pc": 6068, "op": "DUP6", "gas": 3000842, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x44", "0x4", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x0", "0x20", - "0xc7f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x17bc" ] }, { - "pc": 3192, + "pc": 6069, "op": "DUP3", "gas": 3000839, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x44", "0x4", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x0", "0x20", - "0xc7f", + "0x17bc", "0x44" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 3193, + "pc": 6070, "op": "DUP7", "gas": 3000836, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x44", "0x4", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x0", "0x20", - "0xc7f", + "0x17bc", "0x44", "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 3194, + "pc": 6071, "op": "ADD", "gas": 3000833, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x44", "0x4", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x0", "0x20", - "0xc7f", + "0x17bc", "0x44", "0x20", "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 3195, + "pc": 6072, "op": "PUSH2", "gas": 3000830, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x44", "0x4", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x0", "0x20", - "0xc7f", + "0x17bc", "0x44", "0x24" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 3198, + "pc": 6075, "op": "JUMP", "gas": 3000827, "gasCost": 8, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x44", "0x4", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x0", "0x20", - "0xc7f", + "0x17bc", "0x44", "0x24", - "0xb84" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x16c1" ] }, { - "pc": 2948, + "pc": 5825, "op": "JUMPDEST", "gas": 3000819, "gasCost": 1, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x44", "0x4", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x0", "0x20", - "0xc7f", + "0x17bc", "0x44", "0x24" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 2949, + "pc": 5826, "op": "PUSH1", "gas": 3000818, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x44", "0x4", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x0", "0x20", - "0xc7f", + "0x17bc", "0x44", "0x24" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 2951, + "pc": 5828, "op": "DUP2", "gas": 3000815, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x44", "0x4", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x0", "0x20", - "0xc7f", + "0x17bc", "0x44", "0x24", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 2952, + "pc": 5829, "op": "CALLDATALOAD", "gas": 3000812, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x44", "0x4", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x0", "0x20", - "0xc7f", + "0x17bc", "0x44", "0x24", "0x0", "0x24" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 2953, + "pc": 5830, "op": "SWAP1", "gas": 3000809, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x44", "0x4", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x0", "0x20", - "0xc7f", + "0x17bc", "0x44", "0x24", "0x0", "0x3e8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 2954, + "pc": 5831, "op": "POP", "gas": 3000806, "gasCost": 2, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x44", "0x4", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x0", "0x20", - "0xc7f", + "0x17bc", "0x44", "0x24", "0x3e8", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 2955, + "pc": 5832, "op": "PUSH2", "gas": 3000804, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x44", "0x4", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x0", "0x20", - "0xc7f", + "0x17bc", "0x44", "0x24", "0x3e8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 2958, + "pc": 5835, "op": "DUP2", "gas": 3000801, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x44", "0x4", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x0", "0x20", - "0xc7f", + "0x17bc", "0x44", "0x24", "0x3e8", - "0xb93" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x16d0" ] }, { - "pc": 2959, + "pc": 5836, "op": "PUSH2", "gas": 3000798, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x44", "0x4", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x0", "0x20", - "0xc7f", + "0x17bc", "0x44", "0x24", "0x3e8", - "0xb93", + "0x16d0", "0x3e8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 2962, + "pc": 5839, "op": "JUMP", "gas": 3000795, "gasCost": 8, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x44", "0x4", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x0", "0x20", - "0xc7f", + "0x17bc", "0x44", "0x24", "0x3e8", - "0xb93", + "0x16d0", "0x3e8", - "0x12ec" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x20d9" ] }, { - "pc": 4844, + "pc": 8409, "op": "JUMPDEST", "gas": 3000787, "gasCost": 1, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x44", "0x4", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x0", "0x20", - "0xc7f", + "0x17bc", "0x44", "0x24", "0x3e8", - "0xb93", + "0x16d0", "0x3e8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 4845, + "pc": 8410, "op": "PUSH2", "gas": 3000786, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x44", "0x4", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x0", "0x20", - "0xc7f", + "0x17bc", "0x44", "0x24", "0x3e8", - "0xb93", + "0x16d0", "0x3e8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 4848, + "pc": 8413, "op": "DUP2", "gas": 3000783, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x44", "0x4", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x0", "0x20", - "0xc7f", + "0x17bc", "0x44", "0x24", "0x3e8", - "0xb93", + "0x16d0", "0x3e8", - "0x12f5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x20e2" ] }, { - "pc": 4849, + "pc": 8414, "op": "PUSH2", "gas": 3000780, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x44", "0x4", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x0", "0x20", - "0xc7f", + "0x17bc", "0x44", "0x24", "0x3e8", - "0xb93", + "0x16d0", "0x3e8", - "0x12f5", + "0x20e2", "0x3e8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 4852, + "pc": 8417, "op": "JUMP", "gas": 3000777, "gasCost": 8, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x44", "0x4", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x0", "0x20", - "0xc7f", + "0x17bc", "0x44", "0x24", "0x3e8", - "0xb93", + "0x16d0", "0x3e8", - "0x12f5", + "0x20e2", "0x3e8", - "0xfe7" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x1cd1" ] }, { - "pc": 4071, + "pc": 7377, "op": "JUMPDEST", "gas": 3000769, "gasCost": 1, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x44", "0x4", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x0", "0x20", - "0xc7f", + "0x17bc", "0x44", "0x24", "0x3e8", - "0xb93", + "0x16d0", "0x3e8", - "0x12f5", + "0x20e2", "0x3e8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 4072, + "pc": 7378, "op": "PUSH1", "gas": 3000768, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x44", "0x4", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x0", "0x20", - "0xc7f", + "0x17bc", "0x44", "0x24", "0x3e8", - "0xb93", + "0x16d0", "0x3e8", - "0x12f5", + "0x20e2", "0x3e8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 4074, + "pc": 7380, "op": "DUP2", "gas": 3000765, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x44", "0x4", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x0", "0x20", - "0xc7f", + "0x17bc", "0x44", "0x24", "0x3e8", - "0xb93", + "0x16d0", "0x3e8", - "0x12f5", + "0x20e2", "0x3e8", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 4075, + "pc": 7381, "op": "SWAP1", "gas": 3000762, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x44", "0x4", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x0", "0x20", - "0xc7f", + "0x17bc", "0x44", "0x24", "0x3e8", - "0xb93", + "0x16d0", "0x3e8", - "0x12f5", + "0x20e2", "0x3e8", "0x0", "0x3e8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 4076, + "pc": 7382, "op": "POP", "gas": 3000759, "gasCost": 2, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x44", "0x4", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x0", "0x20", - "0xc7f", + "0x17bc", "0x44", "0x24", "0x3e8", - "0xb93", + "0x16d0", "0x3e8", - "0x12f5", + "0x20e2", "0x3e8", "0x3e8", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 4077, + "pc": 7383, "op": "SWAP2", "gas": 3000757, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x44", "0x4", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x0", "0x20", - "0xc7f", + "0x17bc", "0x44", "0x24", "0x3e8", - "0xb93", + "0x16d0", "0x3e8", - "0x12f5", + "0x20e2", "0x3e8", "0x3e8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 4078, + "pc": 7384, "op": "SWAP1", "gas": 3000754, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x44", "0x4", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x0", "0x20", - "0xc7f", + "0x17bc", "0x44", "0x24", "0x3e8", - "0xb93", + "0x16d0", "0x3e8", "0x3e8", "0x3e8", - "0x12f5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x20e2" ] }, { - "pc": 4079, + "pc": 7385, "op": "POP", "gas": 3000751, "gasCost": 2, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x44", "0x4", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x0", "0x20", - "0xc7f", + "0x17bc", "0x44", "0x24", "0x3e8", - "0xb93", + "0x16d0", "0x3e8", "0x3e8", - "0x12f5", + "0x20e2", "0x3e8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 4080, + "pc": 7386, "op": "JUMP", "gas": 3000749, "gasCost": 8, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x44", "0x4", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x0", "0x20", - "0xc7f", + "0x17bc", "0x44", "0x24", "0x3e8", - "0xb93", + "0x16d0", "0x3e8", "0x3e8", - "0x12f5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x20e2" ] }, { - "pc": 4853, + "pc": 8418, "op": "JUMPDEST", "gas": 3000741, "gasCost": 1, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x44", "0x4", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x0", "0x20", - "0xc7f", + "0x17bc", "0x44", "0x24", "0x3e8", - "0xb93", + "0x16d0", "0x3e8", "0x3e8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 4854, + "pc": 8419, "op": "DUP2", "gas": 3000740, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x44", "0x4", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x0", "0x20", - "0xc7f", + "0x17bc", "0x44", "0x24", "0x3e8", - "0xb93", + "0x16d0", "0x3e8", "0x3e8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 4855, + "pc": 8420, "op": "EQ", "gas": 3000737, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x44", "0x4", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x0", "0x20", - "0xc7f", + "0x17bc", "0x44", "0x24", "0x3e8", - "0xb93", + "0x16d0", "0x3e8", "0x3e8", "0x3e8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 4856, + "pc": 8421, "op": "PUSH2", "gas": 3000734, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x44", "0x4", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x0", "0x20", - "0xc7f", + "0x17bc", "0x44", "0x24", "0x3e8", - "0xb93", + "0x16d0", "0x3e8", "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 4859, + "pc": 8424, "op": "JUMPI", "gas": 3000731, "gasCost": 10, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x44", "0x4", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x0", "0x20", - "0xc7f", + "0x17bc", "0x44", "0x24", "0x3e8", - "0xb93", + "0x16d0", "0x3e8", "0x1", - "0x1300" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x20ed" ] }, { - "pc": 4864, + "pc": 8429, "op": "JUMPDEST", "gas": 3000721, "gasCost": 1, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x44", "0x4", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x0", "0x20", - "0xc7f", + "0x17bc", "0x44", "0x24", "0x3e8", - "0xb93", + "0x16d0", "0x3e8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 4865, + "pc": 8430, "op": "POP", "gas": 3000720, "gasCost": 2, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x44", "0x4", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x0", "0x20", - "0xc7f", + "0x17bc", "0x44", "0x24", "0x3e8", - "0xb93", + "0x16d0", "0x3e8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 4866, + "pc": 8431, "op": "JUMP", "gas": 3000718, "gasCost": 8, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x44", "0x4", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x0", "0x20", - "0xc7f", + "0x17bc", "0x44", "0x24", "0x3e8", - "0xb93" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x16d0" ] }, { - "pc": 2963, + "pc": 5840, "op": "JUMPDEST", "gas": 3000710, "gasCost": 1, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x44", "0x4", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x0", "0x20", - "0xc7f", + "0x17bc", "0x44", "0x24", "0x3e8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 2964, + "pc": 5841, "op": "SWAP3", "gas": 3000709, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x44", "0x4", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x0", "0x20", - "0xc7f", + "0x17bc", "0x44", "0x24", "0x3e8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 2965, + "pc": 5842, "op": "SWAP2", "gas": 3000706, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x44", "0x4", "0x8ba1f109551bd432803012645ac136ddd64dba72", @@ -4428,8779 +3532,11133 @@ "0x3e8", "0x44", "0x24", - "0xc7f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x17bc" ] }, { - "pc": 2966, + "pc": 5843, "op": "POP", "gas": 3000703, "gasCost": 2, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x44", "0x4", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x0", "0x20", "0x3e8", - "0xc7f", + "0x17bc", "0x24", "0x44" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 2967, + "pc": 5844, "op": "POP", "gas": 3000701, "gasCost": 2, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x44", "0x4", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x0", "0x20", "0x3e8", - "0xc7f", + "0x17bc", "0x24" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 2968, + "pc": 5845, "op": "JUMP", "gas": 3000699, "gasCost": 8, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x44", "0x4", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x0", "0x20", "0x3e8", - "0xc7f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x17bc" ] }, { - "pc": 3199, + "pc": 6076, "op": "JUMPDEST", "gas": 3000691, "gasCost": 1, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x44", "0x4", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x0", "0x20", "0x3e8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 3200, + "pc": 6077, "op": "SWAP2", "gas": 3000690, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x44", "0x4", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x0", "0x20", "0x3e8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 3201, + "pc": 6078, "op": "POP", "gas": 3000687, "gasCost": 2, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x44", "0x4", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x20", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 3202, + "pc": 6079, "op": "POP", "gas": 3000685, "gasCost": 2, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x44", "0x4", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 3203, + "pc": 6080, "op": "SWAP3", "gas": 3000683, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x44", "0x4", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 3204, + "pc": 6081, "op": "POP", "gas": 3000680, "gasCost": 2, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x3e8", "0x4", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x44" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 3205, + "pc": 6082, "op": "SWAP3", "gas": 3000678, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", - "0x22b", + "0x318", + "0x313", "0x3e8", "0x4", "0x8ba1f109551bd432803012645ac136ddd64dba72" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 3206, + "pc": 6083, "op": "SWAP1", "gas": 3000675, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x4", - "0x22b" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x313" ] }, { - "pc": 3207, + "pc": 6084, "op": "POP", "gas": 3000672, "gasCost": 2, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", - "0x22b", + "0x313", "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 3208, + "pc": 6085, "op": "JUMP", "gas": 3000670, "gasCost": 8, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", - "0x22b" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x313" ] }, { - "pc": 555, + "pc": 787, "op": "JUMPDEST", "gas": 3000662, "gasCost": 1, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 556, + "pc": 788, "op": "PUSH2", "gas": 3000661, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 559, + "pc": 791, "op": "JUMP", "gas": 3000658, "gasCost": 8, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", - "0x5db" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0xb9f" ] }, { - "pc": 1499, + "pc": 2975, "op": "JUMPDEST", "gas": 3000650, "gasCost": 1, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 1500, + "pc": 2976, "op": "PUSH1", "gas": 3000649, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 1502, - "op": "DUP1", + "pc": 2978, + "op": "PUSH2", "gas": 3000646, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 1503, + "pc": 2981, "op": "PUSH2", "gas": 3000643, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0xbb3" ] }, { - "pc": 1506, + "pc": 2984, "op": "PUSH2", "gas": 3000640, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x0", - "0x5e6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0xbb3", + "0xbac" ] }, { - "pc": 1509, + "pc": 2987, "op": "JUMP", "gas": 3000637, "gasCost": 8, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x0", - "0x5e6", - "0x685" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0xbb3", + "0xbac", + "0xc44" ] }, { - "pc": 1669, + "pc": 3140, "op": "JUMPDEST", "gas": 3000629, "gasCost": 1, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x0", - "0x5e6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0xbb3", + "0xbac" ] }, { - "pc": 1670, + "pc": 3141, "op": "PUSH1", "gas": 3000628, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x0", - "0x5e6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0xbb3", + "0xbac" ] }, { - "pc": 1672, + "pc": 3143, "op": "CALLER", "gas": 3000625, "gasCost": 2, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x0", - "0x5e6", + "0xbb3", + "0xbac", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 1673, + "pc": 3144, "op": "SWAP1", "gas": 3000623, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x0", - "0x5e6", + "0xbb3", + "0xbac", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 1674, + "pc": 3145, "op": "POP", "gas": 3000620, "gasCost": 2, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x0", - "0x5e6", + "0xbb3", + "0xbac", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 1675, + "pc": 3146, "op": "SWAP1", "gas": 3000618, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x0", - "0x5e6", + "0xbb3", + "0xbac", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 1676, + "pc": 3147, "op": "JUMP", "gas": 3000615, "gasCost": 8, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x0", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5e6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0xbac" ] }, { - "pc": 1510, + "pc": 2988, "op": "JUMPDEST", "gas": 3000607, "gasCost": 1, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x0", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 1511, - "op": "SWAP1", + "pc": 2989, + "op": "DUP5", "gas": 3000606, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x0", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 1512, - "op": "POP", + "pc": 2990, + "op": "DUP5", "gas": 3000603, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 1513, - "op": "PUSH2", - "gas": 3000601, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 1516, - "op": "DUP2", - "gas": 3000598, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 1517, - "op": "DUP6", - "gas": 3000595, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 1518, - "op": "DUP6", - "gas": 3000592, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 1519, + "pc": 2991, "op": "PUSH2", + "gas": 3000600, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8" + ] + }, + { + "pc": 2994, + "op": "JUMP", + "gas": 3000597, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xe17" + ] + }, + { + "pc": 3607, + "op": "JUMPDEST", "gas": 3000589, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 1522, - "op": "JUMP", - "gas": 3000586, - "gasCost": 8, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x8e4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2276, - "op": "JUMPDEST", - "gas": 3000578, "gasCost": 1, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 2277, + "pc": 3608, "op": "PUSH1", - "gas": 3000577, + "gas": 3000588, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 2279, + "pc": 3610, "op": "PUSH20", - "gas": 3000574, + "gas": 3000585, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 2300, + "pc": 3631, "op": "AND", - "gas": 3000571, + "gas": 3000582, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", "0xffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 2301, + "pc": 3632, "op": "DUP4", - "gas": 3000568, + "gas": 3000579, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 2302, + "pc": 3633, "op": "PUSH20", - "gas": 3000565, + "gas": 3000576, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 2323, + "pc": 3654, "op": "AND", - "gas": 3000562, + "gas": 3000573, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 2324, + "pc": 3655, "op": "EQ", - "gas": 3000559, + "gas": 3000570, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 2325, + "pc": 3656, "op": "ISZERO", - "gas": 3000556, + "gas": 3000567, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 2326, + "pc": 3657, "op": "PUSH2", - "gas": 3000553, + "gas": 3000564, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 2329, + "pc": 3660, "op": "JUMPI", + "gas": 3000561, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1", + "0xe87" + ] + }, + { + "pc": 3719, + "op": "JUMPDEST", + "gas": 3000551, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8" + ] + }, + { + "pc": 3720, + "op": "PUSH1", "gas": 3000550, - "gasCost": 10, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x1", - "0x954" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2388, - "op": "JUMPDEST", - "gas": 3000540, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2389, - "op": "PUSH1", - "gas": 3000539, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 2391, + "pc": 3722, "op": "PUSH20", - "gas": 3000536, + "gas": 3000547, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 2412, + "pc": 3743, "op": "AND", - "gas": 3000533, + "gas": 3000544, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", "0xffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 2413, + "pc": 3744, "op": "DUP3", - "gas": 3000530, + "gas": 3000541, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 2414, + "pc": 3745, "op": "PUSH20", - "gas": 3000527, + "gas": 3000538, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", "0x8ba1f109551bd432803012645ac136ddd64dba72" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 2435, + "pc": 3766, "op": "AND", - "gas": 3000524, + "gas": 3000535, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0xffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 2436, + "pc": 3767, "op": "EQ", - "gas": 3000521, + "gas": 3000532, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", "0x8ba1f109551bd432803012645ac136ddd64dba72" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 2437, + "pc": 3768, "op": "ISZERO", - "gas": 3000518, + "gas": 3000529, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 2438, + "pc": 3769, "op": "PUSH2", - "gas": 3000515, + "gas": 3000526, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 2441, + "pc": 3772, "op": "JUMPI", - "gas": 3000512, + "gas": 3000523, "gasCost": 10, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x1", - "0x9c4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0xef7" ] }, { - "pc": 2500, + "pc": 3831, "op": "JUMPDEST", - "gas": 3000502, + "gas": 3000513, "gasCost": 1, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 2501, + "pc": 3832, "op": "PUSH2", - "gas": 3000501, + "gas": 3000512, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 2504, + "pc": 3835, "op": "DUP4", - "gas": 3000498, + "gas": 3000509, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", - "0x9cf" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0xf02" ] }, { - "pc": 2505, + "pc": 3836, "op": "DUP4", - "gas": 3000495, + "gas": 3000506, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", - "0x9cf", + "0xf02", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 2506, + "pc": 3837, "op": "DUP4", - "gas": 3000492, + "gas": 3000503, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", - "0x9cf", + "0xf02", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 2507, + "pc": 3838, "op": "PUSH2", + "gas": 3000500, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8" + ] + }, + { + "pc": 3841, + "op": "JUMP", + "gas": 3000497, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1605" + ] + }, + { + "pc": 5637, + "op": "JUMPDEST", "gas": 3000489, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x9cf", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2510, - "op": "JUMP", - "gas": 3000486, - "gasCost": 8, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x9cf", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0xb65" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2917, - "op": "JUMPDEST", - "gas": 3000478, "gasCost": 1, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", - "0x9cf", + "0xf02", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 2918, - "op": "POP", - "gas": 3000477, - "gasCost": 2, + "pc": 5638, + "op": "PUSH2", + "gas": 3000488, + "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", - "0x9cf", + "0xf02", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 2919, - "op": "POP", - "gas": 3000475, - "gasCost": 2, + "pc": 5641, + "op": "DUP4", + "gas": 3000485, + "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", - "0x9cf", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1610" + ] + }, + { + "pc": 5642, + "op": "DUP4", + "gas": 3000482, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1610", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 5643, + "op": "DUP4", + "gas": 3000479, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1610", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 2920, - "op": "POP", - "gas": 3000473, - "gasCost": 2, + "pc": 5644, + "op": "PUSH2", + "gas": 3000476, + "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", - "0x9cf", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1610", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8" ] }, { - "pc": 2921, + "pc": 5647, "op": "JUMP", - "gas": 3000471, + "gas": 3000473, "gasCost": 8, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", - "0x9cf" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1610", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x16a7" ] }, { - "pc": 2511, + "pc": 5799, "op": "JUMPDEST", - "gas": 3000463, + "gas": 3000465, "gasCost": 1, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1610", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 2512, - "op": "PUSH1", + "pc": 5800, + "op": "POP", + "gas": 3000464, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1610", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8" + ] + }, + { + "pc": 5801, + "op": "POP", "gas": 3000462, - "gasCost": 3, + "gasCost": 2, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1610", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72" + ] + }, + { + "pc": 5802, + "op": "POP", + "gas": 3000460, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1610", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 5803, + "op": "JUMP", + "gas": 3000458, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1610" + ] + }, + { + "pc": 5648, + "op": "JUMPDEST", + "gas": 3000450, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xf02", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 2514, - "op": "DUP1", - "gas": 3000459, + "pc": 5649, + "op": "PUSH2", + "gas": 3000449, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8" ] }, { - "pc": 2515, - "op": "PUSH1", - "gas": 3000456, + "pc": 5652, + "op": "PUSH2", + "gas": 3000446, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1618" ] }, { - "pc": 2517, - "op": "DUP6", - "gas": 3000453, - "gasCost": 3, + "pc": 5655, + "op": "JUMP", + "gas": 3000443, + "gasCost": 8, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", - "0x0", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1618", + "0x743" ] }, { - "pc": 2518, - "op": "PUSH20", - "gas": 3000450, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x0", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2539, - "op": "AND", - "gas": 3000447, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x0", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0xffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2540, - "op": "PUSH20", - "gas": 3000444, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x0", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2561, - "op": "AND", - "gas": 3000441, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x0", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0xffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2562, - "op": "DUP2", - "gas": 3000438, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x0", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2563, - "op": "MSTORE", + "pc": 1859, + "op": "JUMPDEST", "gas": 3000435, - "gasCost": 3, + "gasCost": 1, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", - "0x0", - "0x0", - "0x0", + "0xf02", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1618" ] }, { - "pc": 2564, + "pc": 1860, "op": "PUSH1", - "gas": 3000432, + "gas": 3000434, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1618" + ] + }, + { + "pc": 1862, + "op": "PUSH1", + "gas": 3000431, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", "0x0", - "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1618", "0x0" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 2566, - "op": "ADD", - "gas": 3000429, + "pc": 1864, + "op": "PUSH1", + "gas": 3000428, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1618", "0x0", - "0x0", - "0x0", - "0x20" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x5" ] }, { - "pc": 2567, + "pc": 1866, "op": "SWAP1", - "gas": 3000426, + "gas": 3000425, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1618", "0x0", - "0x0", - "0x20" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x5", + "0x1" ] }, { - "pc": 2568, - "op": "DUP2", - "gas": 3000423, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x20", - "0x0" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2569, - "op": "MSTORE", - "gas": 3000420, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x20", - "0x0", - "0x20" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2570, - "op": "PUSH1", - "gas": 3000417, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x20" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2572, - "op": "ADD", - "gas": 3000414, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x20", - "0x20" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2573, - "op": "PUSH1", - "gas": 3000411, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x40" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2575, - "op": "SHA3", - "gas": 3000408, - "gasCost": 42, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x40", - "0x0" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2576, + "pc": 1867, "op": "SLOAD", - "gas": 3000366, + "gas": 3000422, "gasCost": 2100, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1618", "0x0", - "0x5a158573daab1c353835da34297290f5f813859e4bb52de641691b875502523f" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x1", + "0x5" ], "storage": { - "0x5a158573daab1c353835da34297290f5f813859e4bb52de641691b875502523f": "0x00000000000000000000000000000000000000007f228daac38a51833dbbfc18" + "0x0000000000000000000000000000000000000000000000000000000000000005": "0x000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd65710012" }, "extraData": { "proofList": [ { - "address": "0xee0e03c1a621084ca3c542f36e4a5d0230304471", + "address": "0x34041eff1f32989bdaa95875e0f41afd6294dcd4", "nonce": 1, "balance": "0x0", - "codeHash": "0x178763dea206ad5ecfbf211ddeb69d930d18811bc617cb4bbb0c0e7f0d28a3aa", + "codeHash": "0x9b5ea0519f6e20c36338989b6accc7cf3384eac2f0a083e82730bca177544409", "storage": { - "key": "0x5a158573daab1c353835da34297290f5f813859e4bb52de641691b875502523f", - "value": "0x00000000000000000000000000000000000000007f228daac38a51833dbbfc18" + "key": "0x0000000000000000000000000000000000000000000000000000000000000005", + "value": "0x000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd65710012" } } ] } }, { - "pc": 2577, + "pc": 1868, "op": "SWAP1", - "gas": 2998266, + "gas": 2998322, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1618", "0x0", - "0x7f228daac38a51833dbbfc18" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x1", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd65710012" ] }, { - "pc": 2578, + "pc": 1869, + "op": "PUSH2", + "gas": 2998319, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1618", + "0x0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd65710012", + "0x1" + ] + }, + { + "pc": 1872, + "op": "EXP", + "gas": 2998316, + "gasCost": 60, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1618", + "0x0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd65710012", + "0x1", + "0x100" + ] + }, + { + "pc": 1873, + "op": "SWAP1", + "gas": 2998256, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1618", + "0x0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd65710012", + "0x100" + ] + }, + { + "pc": 1874, + "op": "DIV", + "gas": 2998253, + "gasCost": 5, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1618", + "0x0", + "0x100", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd65710012" + ] + }, + { + "pc": 1875, + "op": "PUSH1", + "gas": 2998248, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1618", + "0x0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd657100" + ] + }, + { + "pc": 1877, + "op": "AND", + "gas": 2998245, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1618", + "0x0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd657100", + "0xff" + ] + }, + { + "pc": 1878, + "op": "SWAP1", + "gas": 2998242, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1618", + "0x0", + "0x0" + ] + }, + { + "pc": 1879, "op": "POP", - "gas": 2998263, + "gas": 2998239, "gasCost": 2, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", - "0x7f228daac38a51833dbbfc18", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1618", + "0x0", "0x0" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 2579, - "op": "DUP2", - "gas": 2998261, + "pc": 1880, + "op": "SWAP1", + "gas": 2998237, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", - "0x7f228daac38a51833dbbfc18" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2580, - "op": "DUP2", - "gas": 2998258, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xf02", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", - "0x7f228daac38a51833dbbfc18", - "0x3e8" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2581, - "op": "LT", - "gas": 2998255, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbfc18", - "0x3e8", - "0x7f228daac38a51833dbbfc18" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2582, - "op": "ISZERO", - "gas": 2998252, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbfc18", + "0x1618", "0x0" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 2583, - "op": "PUSH2", - "gas": 2998249, - "gasCost": 3, + "pc": 1881, + "op": "JUMP", + "gas": 2998234, + "gasCost": 8, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", - "0x7f228daac38a51833dbbfc18", - "0x1" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2586, - "op": "JUMPI", - "gas": 2998246, - "gasCost": 10, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbfc18", - "0x1", - "0xa55" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x1618" ] }, { - "pc": 2645, + "pc": 5656, "op": "JUMPDEST", - "gas": 2998236, + "gas": 2998226, "gasCost": 1, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", - "0x7f228daac38a51833dbbfc18" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0" ] }, { - "pc": 2646, - "op": "DUP2", - "gas": 2998235, + "pc": 5657, + "op": "ISZERO", + "gas": 2998225, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", - "0x7f228daac38a51833dbbfc18" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0" ] }, { - "pc": 2647, - "op": "DUP2", - "gas": 2998232, + "pc": 5658, + "op": "PUSH2", + "gas": 2998222, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", - "0x7f228daac38a51833dbbfc18", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1" + ] + }, + { + "pc": 5661, + "op": "JUMPI", + "gas": 2998219, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1", + "0x1658" + ] + }, + { + "pc": 5720, + "op": "JUMPDEST", + "gas": 2998209, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 2648, - "op": "SUB", - "gas": 2998229, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbfc18", - "0x3e8", - "0x7f228daac38a51833dbbfc18" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2649, - "op": "PUSH1", - "gas": 2998226, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbfc18", - "0x7f228daac38a51833dbbf830" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2651, - "op": "DUP1", - "gas": 2998223, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbfc18", - "0x7f228daac38a51833dbbf830", - "0x0" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2652, - "op": "DUP7", - "gas": 2998220, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbfc18", - "0x7f228daac38a51833dbbf830", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2653, - "op": "PUSH20", - "gas": 2998217, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbfc18", - "0x7f228daac38a51833dbbf830", - "0x0", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2674, - "op": "AND", - "gas": 2998214, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbfc18", - "0x7f228daac38a51833dbbf830", - "0x0", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0xffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2675, - "op": "PUSH20", - "gas": 2998211, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbfc18", - "0x7f228daac38a51833dbbf830", - "0x0", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2696, - "op": "AND", + "pc": 5721, + "op": "POP", "gas": 2998208, - "gasCost": 3, + "gasCost": 2, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", - "0x7f228daac38a51833dbbfc18", - "0x7f228daac38a51833dbbf830", - "0x0", - "0x0", + "0xf02", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0xffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8" ] }, { - "pc": 2697, - "op": "DUP2", - "gas": 2998205, - "gasCost": 3, + "pc": 5722, + "op": "POP", + "gas": 2998206, + "gasCost": 2, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", - "0x7f228daac38a51833dbbfc18", - "0x7f228daac38a51833dbbf830", - "0x0", + "0xf02", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72" + ] + }, + { + "pc": 5723, + "op": "POP", + "gas": 2998204, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xf02", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 2698, - "op": "MSTORE", + "pc": 5724, + "op": "JUMP", "gas": 2998202, - "gasCost": 3, + "gasCost": 8, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", - "0x7f228daac38a51833dbbfc18", - "0x7f228daac38a51833dbbf830", - "0x0", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x0" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0xf02" ] }, { - "pc": 2699, - "op": "PUSH1", - "gas": 2998199, - "gasCost": 3, + "pc": 3842, + "op": "JUMPDEST", + "gas": 2998194, + "gasCost": 1, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbfc18", - "0x7f228daac38a51833dbbf830", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x3e8" ] }, { - "pc": 2701, - "op": "ADD", - "gas": 2998196, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbfc18", - "0x7f228daac38a51833dbbf830", - "0x0", - "0x0", - "0x20" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2702, - "op": "SWAP1", + "pc": 3843, + "op": "PUSH2", "gas": 2998193, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbfc18", - "0x7f228daac38a51833dbbf830", - "0x0", - "0x20" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x3e8" ] }, { - "pc": 2703, + "pc": 3846, "op": "DUP2", "gas": 2998190, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", - "0x7f228daac38a51833dbbfc18", - "0x7f228daac38a51833dbbf830", - "0x20", - "0x0" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0xf6d" ] }, { - "pc": 2704, - "op": "MSTORE", + "pc": 3847, + "op": "PUSH1", "gas": 2998187, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", - "0x7f228daac38a51833dbbfc18", - "0x7f228daac38a51833dbbf830", - "0x20", - "0x0", - "0x20" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0xf6d", + "0x3e8" ] }, { - "pc": 2705, - "op": "PUSH1", + "pc": 3849, + "op": "MLOAD", "gas": 2998184, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", - "0x7f228daac38a51833dbbfc18", - "0x7f228daac38a51833dbbf830", - "0x20" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0xf6d", + "0x3e8", + "0x40" ] }, { - "pc": 2707, - "op": "ADD", + "pc": 3850, + "op": "DUP1", "gas": 2998181, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", - "0x7f228daac38a51833dbbfc18", - "0x7f228daac38a51833dbbf830", - "0x20", - "0x20" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0xf6d", + "0x3e8", + "0x80" ] }, { - "pc": 2708, + "pc": 3851, "op": "PUSH1", "gas": 2998178, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", - "0x7f228daac38a51833dbbfc18", - "0x7f228daac38a51833dbbf830", - "0x40" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0xf6d", + "0x3e8", + "0x80", + "0x80" ] }, { - "pc": 2710, - "op": "SHA3", + "pc": 3853, + "op": "ADD", "gas": 2998175, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x80", + "0x60" + ] + }, + { + "pc": 3854, + "op": "PUSH1", + "gas": 2998172, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0xe0" + ] + }, + { + "pc": 3856, + "op": "MSTORE", + "gas": 2998169, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0xe0", + "0x40" + ] + }, + { + "pc": 3857, + "op": "DUP1", + "gas": 2998166, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80" + ] + }, + { + "pc": 3858, + "op": "PUSH1", + "gas": 2998163, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x80" + ] + }, + { + "pc": 3860, + "op": "DUP2", + "gas": 2998160, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x80", + "0x26" + ] + }, + { + "pc": 3861, + "op": "MSTORE", + "gas": 2998157, + "gasCost": 9, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x80", + "0x26", + "0x80" + ] + }, + { + "pc": 3862, + "op": "PUSH1", + "gas": 2998148, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x80" + ] + }, + { + "pc": 3864, + "op": "ADD", + "gas": 2998145, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x80", + "0x20" + ] + }, + { + "pc": 3865, + "op": "PUSH2", + "gas": 2998142, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0xa0" + ] + }, + { + "pc": 3868, + "op": "PUSH1", + "gas": 2998139, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0xa0", + "0x2113" + ] + }, + { + "pc": 3870, + "op": "SWAP2", + "gas": 2998136, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0xa0", + "0x2113", + "0x26" + ] + }, + { + "pc": 3871, + "op": "CODECOPY", + "gas": 2998133, + "gasCost": 15, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x26", + "0x2113", + "0xa0" + ], + "extraData": { + "codeList": [ + "0x608060405234801561001057600080fd5b506004361061010b5760003560e01c80635c975abb116100a257806395d89b411161007157806395d89b41146102945780639dc29fac146102b2578063a457c2d7146102ce578063a9059cbb146102fe578063dd62ed3e1461032e5761010b565b80635c975abb1461022057806370a082311461023e5780638456cb591461026e5780638e50817a146102785761010b565b8063313ce567116100de578063313ce567146101ac57806339509351146101ca5780633f4ba83a146101fa57806340c10f19146102045761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015e57806323b872dd1461017c575b600080fd5b61011861035e565b6040516101259190611a15565b60405180910390f35b6101486004803603810190610143919061178a565b6103f0565b60405161015591906119fa565b60405180910390f35b61016661040e565b6040516101739190611bb7565b60405180910390f35b6101966004803603810190610191919061173b565b610418565b6040516101a391906119fa565b60405180910390f35b6101b46104f1565b6040516101c19190611bd2565b60405180910390f35b6101e460048036038101906101df919061178a565b610508565b6040516101f191906119fa565b60405180910390f35b6102026105bb565b005b61021e6004803603810190610219919061178a565b610655565b005b610228610743565b60405161023591906119fa565b60405180910390f35b610258600480360381019061025391906116d6565b61075a565b6040516102659190611bb7565b60405180910390f35b6102766107a2565b005b610292600480360381019061028d91906116ff565b61083c565b005b61029c610952565b6040516102a99190611a15565b60405180910390f35b6102cc60048036038101906102c7919061178a565b6109e4565b005b6102e860048036038101906102e3919061178a565b610ad2565b6040516102f591906119fa565b60405180910390f35b6103186004803603810190610313919061178a565b610b9f565b60405161032591906119fa565b60405180910390f35b610348600480360381019061034391906116ff565b610bbd565b6040516103559190611bb7565b60405180910390f35b60606003805461036d90611d51565b80601f016020809104026020016040519081016040528092919081815260200182805461039990611d51565b80156103e65780601f106103bb576101008083540402835291602001916103e6565b820191906000526020600020905b8154815290600101906020018083116103c957829003601f168201915b5050505050905090565b60006104046103fd610c44565b8484610c4c565b6001905092915050565b6000600254905090565b6000610425848484610e17565b6104e684610431610c44565b6104e18560405180606001604052806028815260200161213960289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610497610c44565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110ac9092919063ffffffff16565b610c4c565b600190509392505050565b6000600560009054906101000a900460ff16905090565b60006105b1610515610c44565b846105ac8560016000610526610c44565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461111090919063ffffffff16565b610c4c565b6001905092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461064b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161064290611ab7565b60405180910390fd5b61065361116e565b565b600560019054906101000a900460ff16156106a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161069c90611ad7565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610735576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161072c90611ab7565b60405180910390fd5b61073f8282611218565b5050565b6000600560019054906101000a900460ff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610832576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082990611ab7565b60405180910390fd5b61083a6113ac565b565b600560029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146108cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c390611b37565b60405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b60606004805461096190611d51565b80601f016020809104026020016040519081016040528092919081815260200182805461098d90611d51565b80156109da5780601f106109af576101008083540402835291602001916109da565b820191906000526020600020905b8154815290600101906020018083116109bd57829003601f168201915b5050505050905090565b600560019054906101000a900460ff1615610a34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2b90611ad7565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610ac4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abb90611ab7565b60405180910390fd5b610ace8282611457565b5050565b6000610b95610adf610c44565b84610b90856040518060600160405280602581526020016121616025913960016000610b09610c44565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110ac9092919063ffffffff16565b610c4c565b6001905092915050565b6000610bb3610bac610c44565b8484610e17565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb390611b57565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2390611a77565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e0a9190611bb7565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7e90611b17565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ef7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eee90611a37565b60405180910390fd5b610f02838383611605565b610f6d81604051806060016040528060268152602001612113602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110ac9092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611000816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461111090919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161109f9190611bb7565b60405180910390a3505050565b60008383111582906110f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110eb9190611a15565b60405180910390fd5b50600083856111039190611c5f565b9050809150509392505050565b600080828461111f9190611c09565b905083811015611164576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115b90611a97565b60405180910390fd5b8091505092915050565b600560019054906101000a900460ff166111bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b490611a57565b60405180910390fd5b6000600560016101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611201610c44565b60405161120e91906119df565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611288576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127f90611b77565b60405180910390fd5b61129460008383611605565b6112a98160025461111090919063ffffffff16565b600281905550611300816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461111090919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516113a09190611bb7565b60405180910390a35050565b600560019054906101000a900460ff16156113fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f390611ad7565b60405180910390fd5b6001600560016101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611440610c44565b60405161144d91906119df565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114be90611af7565b60405180910390fd5b6114d382600083611605565b61153e816040518060600160405280602281526020016120f1602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110ac9092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506115958160025461165d90919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516115f99190611bb7565b60405180910390a35050565b6116108383836116a7565b611618610743565b15611658576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164f90611b97565b60405180910390fd5b505050565b600061169f83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506110ac565b905092915050565b505050565b6000813590506116bb816120c2565b92915050565b6000813590506116d0816120d9565b92915050565b6000602082840312156116e857600080fd5b60006116f6848285016116ac565b91505092915050565b6000806040838503121561171257600080fd5b6000611720858286016116ac565b9250506020611731858286016116ac565b9150509250929050565b60008060006060848603121561175057600080fd5b600061175e868287016116ac565b935050602061176f868287016116ac565b9250506040611780868287016116c1565b9150509250925092565b6000806040838503121561179d57600080fd5b60006117ab858286016116ac565b92505060206117bc858286016116c1565b9150509250929050565b6117cf81611ce8565b82525050565b6117de81611ca5565b82525050565b60006117ef82611bed565b6117f98185611bf8565b9350611809818560208601611d1e565b61181281611de1565b840191505092915050565b600061182a602383611bf8565b915061183582611df2565b604082019050919050565b600061184d601483611bf8565b915061185882611e41565b602082019050919050565b6000611870602283611bf8565b915061187b82611e6a565b604082019050919050565b6000611893601b83611bf8565b915061189e82611eb9565b602082019050919050565b60006118b6600b83611bf8565b91506118c182611ee2565b602082019050919050565b60006118d9601083611bf8565b91506118e482611f0b565b602082019050919050565b60006118fc602183611bf8565b915061190782611f34565b604082019050919050565b600061191f602583611bf8565b915061192a82611f83565b604082019050919050565b6000611942600c83611bf8565b915061194d82611fd2565b602082019050919050565b6000611965602483611bf8565b915061197082611ffb565b604082019050919050565b6000611988601f83611bf8565b91506119938261204a565b602082019050919050565b60006119ab602a83611bf8565b91506119b682612073565b604082019050919050565b6119ca81611cd1565b82525050565b6119d981611cdb565b82525050565b60006020820190506119f460008301846117c6565b92915050565b6000602082019050611a0f60008301846117d5565b92915050565b60006020820190508181036000830152611a2f81846117e4565b905092915050565b60006020820190508181036000830152611a508161181d565b9050919050565b60006020820190508181036000830152611a7081611840565b9050919050565b60006020820190508181036000830152611a9081611863565b9050919050565b60006020820190508181036000830152611ab081611886565b9050919050565b60006020820190508181036000830152611ad0816118a9565b9050919050565b60006020820190508181036000830152611af0816118cc565b9050919050565b60006020820190508181036000830152611b10816118ef565b9050919050565b60006020820190508181036000830152611b3081611912565b9050919050565b60006020820190508181036000830152611b5081611935565b9050919050565b60006020820190508181036000830152611b7081611958565b9050919050565b60006020820190508181036000830152611b908161197b565b9050919050565b60006020820190508181036000830152611bb08161199e565b9050919050565b6000602082019050611bcc60008301846119c1565b92915050565b6000602082019050611be760008301846119d0565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611c1482611cd1565b9150611c1f83611cd1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611c5457611c53611d83565b5b828201905092915050565b6000611c6a82611cd1565b9150611c7583611cd1565b925082821015611c8857611c87611d83565b5b828203905092915050565b6000611c9e82611cb1565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b6000611cf382611cfa565b9050919050565b6000611d0582611d0c565b9050919050565b6000611d1782611cb1565b9050919050565b60005b83811015611d3c578082015181840152602081019050611d21565b83811115611d4b576000848401525b50505050565b60006002820490506001821680611d6957607f821691505b60208210811415611d7d57611d7c611db2565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b7f6e6f7420616c6c6f776564000000000000000000000000000000000000000000600082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f6f6e6c7920466163746f72790000000000000000000000000000000000000000600082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b7f45524332305061757361626c653a20746f6b656e207472616e7366657220776860008201527f696c652070617573656400000000000000000000000000000000000000000000602082015250565b6120cb81611c93565b81146120d657600080fd5b50565b6120e281611cd1565b81146120ed57600080fd5b5056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122050720249c11bf2bf6da8b1770af05168068be0eee81154cac03b74b0ab3b6a3f64736f6c63430008040033" + ] + } + }, + { + "pc": 3872, + "op": "PUSH1", + "gas": 2998118, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80" + ] + }, + { + "pc": 3874, + "op": "DUP1", + "gas": 2998115, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x0" + ] + }, + { + "pc": 3875, + "op": "DUP8", + "gas": 2998112, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x0", + "0x0" + ] + }, + { + "pc": 3876, + "op": "PUSH20", + "gas": 2998109, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 3897, + "op": "AND", + "gas": 2998106, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 3898, + "op": "PUSH20", + "gas": 2998103, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 3919, + "op": "AND", + "gas": 2998100, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 3920, + "op": "DUP2", + "gas": 2998097, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 3921, + "op": "MSTORE", + "gas": 2998094, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0" + ] + }, + { + "pc": 3922, + "op": "PUSH1", + "gas": 2998091, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x0", + "0x0" + ] + }, + { + "pc": 3924, + "op": "ADD", + "gas": 2998088, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x20" + ] + }, + { + "pc": 3925, + "op": "SWAP1", + "gas": 2998085, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x0", + "0x20" + ] + }, + { + "pc": 3926, + "op": "DUP2", + "gas": 2998082, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x20", + "0x0" + ] + }, + { + "pc": 3927, + "op": "MSTORE", + "gas": 2998079, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x20", + "0x0", + "0x20" + ] + }, + { + "pc": 3928, + "op": "PUSH1", + "gas": 2998076, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x20" + ] + }, + { + "pc": 3930, + "op": "ADD", + "gas": 2998073, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x20", + "0x20" + ] + }, + { + "pc": 3931, + "op": "PUSH1", + "gas": 2998070, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x40" + ] + }, + { + "pc": 3933, + "op": "SHA3", + "gas": 2998067, "gasCost": 42, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", - "0x7f228daac38a51833dbbfc18", - "0x7f228daac38a51833dbbf830", + "0xf6d", + "0x3e8", + "0x80", "0x40", "0x0" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 2711, - "op": "DUP2", - "gas": 2998133, - "gasCost": 3, + "pc": 3934, + "op": "SLOAD", + "gas": 2998025, + "gasCost": 2100, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", - "0x7f228daac38a51833dbbfc18", - "0x7f228daac38a51833dbbf830", + "0xf6d", + "0x3e8", + "0x80", "0x5a158573daab1c353835da34297290f5f813859e4bb52de641691b875502523f" ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2712, - "op": "SWAP1", - "gas": 2998130, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbfc18", - "0x7f228daac38a51833dbbf830", - "0x5a158573daab1c353835da34297290f5f813859e4bb52de641691b875502523f", - "0x7f228daac38a51833dbbf830" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2713, - "op": "SSTORE", - "gas": 2998127, - "gasCost": 2900, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbfc18", - "0x7f228daac38a51833dbbf830", - "0x7f228daac38a51833dbbf830", - "0x5a158573daab1c353835da34297290f5f813859e4bb52de641691b875502523f" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], "storage": { - "0x5a158573daab1c353835da34297290f5f813859e4bb52de641691b875502523f": "0x00000000000000000000000000000000000000007f228daac38a51833dbbf830" + "0x0000000000000000000000000000000000000000000000000000000000000005": "0x000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd65710012", + "0x5a158573daab1c353835da34297290f5f813859e4bb52de641691b875502523f": "0x00000000000000000000000000000000000000000000000000038d7ea4c68000" }, "extraData": { "proofList": [ { - "address": "0xee0e03c1a621084ca3c542f36e4a5d0230304471", + "address": "0x34041eff1f32989bdaa95875e0f41afd6294dcd4", "nonce": 1, "balance": "0x0", - "codeHash": "0x178763dea206ad5ecfbf211ddeb69d930d18811bc617cb4bbb0c0e7f0d28a3aa", + "codeHash": "0x9b5ea0519f6e20c36338989b6accc7cf3384eac2f0a083e82730bca177544409", "storage": { "key": "0x5a158573daab1c353835da34297290f5f813859e4bb52de641691b875502523f", - "value": "0x00000000000000000000000000000000000000007f228daac38a51833dbbfc18" + "value": "0x00000000000000000000000000000000000000000000000000038d7ea4c68000" } } ] } }, { - "pc": 2714, + "pc": 3935, + "op": "PUSH2", + "gas": 2995925, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x38d7ea4c68000" + ] + }, + { + "pc": 3938, + "op": "SWAP1", + "gas": 2995922, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x38d7ea4c68000", + "0x10ac" + ] + }, + { + "pc": 3939, + "op": "SWAP3", + "gas": 2995919, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xf6d", + "0x3e8", + "0x80", + "0x10ac", + "0x38d7ea4c68000" + ] + }, + { + "pc": 3940, + "op": "SWAP2", + "gas": 2995916, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xf6d", + "0x38d7ea4c68000", + "0x80", + "0x10ac", + "0x3e8" + ] + }, + { + "pc": 3941, + "op": "SWAP1", + "gas": 2995913, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xf6d", + "0x38d7ea4c68000", + "0x3e8", + "0x10ac", + "0x80" + ] + }, + { + "pc": 3942, + "op": "PUSH4", + "gas": 2995910, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xf6d", + "0x38d7ea4c68000", + "0x3e8", + "0x80", + "0x10ac" + ] + }, + { + "pc": 3947, + "op": "AND", + "gas": 2995907, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xf6d", + "0x38d7ea4c68000", + "0x3e8", + "0x80", + "0x10ac", + "0xffffffff" + ] + }, + { + "pc": 3948, + "op": "JUMP", + "gas": 2995904, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xf6d", + "0x38d7ea4c68000", + "0x3e8", + "0x80", + "0x10ac" + ] + }, + { + "pc": 4268, + "op": "JUMPDEST", + "gas": 2995896, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xf6d", + "0x38d7ea4c68000", + "0x3e8", + "0x80" + ] + }, + { + "pc": 4269, + "op": "PUSH1", + "gas": 2995895, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xf6d", + "0x38d7ea4c68000", + "0x3e8", + "0x80" + ] + }, + { + "pc": 4271, + "op": "DUP4", + "gas": 2995892, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xf6d", + "0x38d7ea4c68000", + "0x3e8", + "0x80", + "0x0" + ] + }, + { + "pc": 4272, + "op": "DUP4", + "gas": 2995889, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xf6d", + "0x38d7ea4c68000", + "0x3e8", + "0x80", + "0x0", + "0x38d7ea4c68000" + ] + }, + { + "pc": 4273, + "op": "GT", + "gas": 2995886, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xf6d", + "0x38d7ea4c68000", + "0x3e8", + "0x80", + "0x0", + "0x38d7ea4c68000", + "0x3e8" + ] + }, + { + "pc": 4274, + "op": "ISZERO", + "gas": 2995883, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xf6d", + "0x38d7ea4c68000", + "0x3e8", + "0x80", + "0x0", + "0x0" + ] + }, + { + "pc": 4275, + "op": "DUP3", + "gas": 2995880, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xf6d", + "0x38d7ea4c68000", + "0x3e8", + "0x80", + "0x0", + "0x1" + ] + }, + { + "pc": 4276, + "op": "SWAP1", + "gas": 2995877, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xf6d", + "0x38d7ea4c68000", + "0x3e8", + "0x80", + "0x0", + "0x1", + "0x80" + ] + }, + { + "pc": 4277, + "op": "PUSH2", + "gas": 2995874, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xf6d", + "0x38d7ea4c68000", + "0x3e8", + "0x80", + "0x0", + "0x80", + "0x1" + ] + }, + { + "pc": 4280, + "op": "JUMPI", + "gas": 2995871, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xf6d", + "0x38d7ea4c68000", + "0x3e8", + "0x80", + "0x0", + "0x80", + "0x1", + "0x10f4" + ] + }, + { + "pc": 4340, + "op": "JUMPDEST", + "gas": 2995861, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xf6d", + "0x38d7ea4c68000", + "0x3e8", + "0x80", + "0x0", + "0x80" + ] + }, + { + "pc": 4341, "op": "POP", - "gas": 2995227, + "gas": 2995860, "gasCost": 2, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", - "0x7f228daac38a51833dbbfc18", - "0x7f228daac38a51833dbbf830" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2715, - "op": "DUP2", - "gas": 2995225, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0xf6d", + "0x38d7ea4c68000", "0x3e8", + "0x80", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbfc18" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x80" ] }, { - "pc": 2716, + "pc": 4342, "op": "PUSH1", - "gas": 2995222, + "gas": 2995858, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", - "0x7f228daac38a51833dbbfc18", - "0x3e8" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2718, - "op": "DUP1", - "gas": 2995219, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbfc18", + "0xf6d", + "0x38d7ea4c68000", "0x3e8", + "0x80", "0x0" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 2719, + "pc": 4344, + "op": "DUP4", + "gas": 2995855, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xf6d", + "0x38d7ea4c68000", + "0x3e8", + "0x80", + "0x0", + "0x0" + ] + }, + { + "pc": 4345, "op": "DUP6", - "gas": 2995216, + "gas": 2995852, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", - "0x7f228daac38a51833dbbfc18", + "0xf6d", + "0x38d7ea4c68000", "0x3e8", + "0x80", "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x0", + "0x3e8" ] }, { - "pc": 2720, - "op": "PUSH20", - "gas": 2995213, + "pc": 4346, + "op": "PUSH2", + "gas": 2995849, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", - "0x7f228daac38a51833dbbfc18", + "0xf6d", + "0x38d7ea4c68000", "0x3e8", + "0x80", "0x0", "0x0", - "0x8ba1f109551bd432803012645ac136ddd64dba72" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x3e8", + "0x38d7ea4c68000" ] }, { - "pc": 2741, - "op": "AND", - "gas": 2995210, + "pc": 4349, + "op": "SWAP2", + "gas": 2995846, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", - "0x7f228daac38a51833dbbfc18", + "0xf6d", + "0x38d7ea4c68000", "0x3e8", + "0x80", "0x0", "0x0", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0xffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x3e8", + "0x38d7ea4c68000", + "0x1103" ] }, { - "pc": 2742, - "op": "PUSH20", - "gas": 2995207, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbfc18", - "0x3e8", - "0x0", - "0x0", - "0x8ba1f109551bd432803012645ac136ddd64dba72" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2763, - "op": "AND", - "gas": 2995204, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbfc18", - "0x3e8", - "0x0", - "0x0", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0xffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2764, - "op": "DUP2", - "gas": 2995201, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbfc18", - "0x3e8", - "0x0", - "0x0", - "0x8ba1f109551bd432803012645ac136ddd64dba72" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2765, - "op": "MSTORE", - "gas": 2995198, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbfc18", - "0x3e8", - "0x0", - "0x0", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x0" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2766, - "op": "PUSH1", - "gas": 2995195, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbfc18", - "0x3e8", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2768, - "op": "ADD", - "gas": 2995192, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbfc18", - "0x3e8", - "0x0", - "0x0", - "0x20" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2769, + "pc": 4350, "op": "SWAP1", - "gas": 2995189, + "gas": 2995843, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", - "0x7f228daac38a51833dbbfc18", + "0xf6d", + "0x38d7ea4c68000", "0x3e8", + "0x80", "0x0", - "0x20" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x0", + "0x1103", + "0x38d7ea4c68000", + "0x3e8" ] }, { - "pc": 2770, - "op": "DUP2", - "gas": 2995186, + "pc": 4351, + "op": "PUSH2", + "gas": 2995840, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", - "0x7f228daac38a51833dbbfc18", + "0xf6d", + "0x38d7ea4c68000", "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c68000" + ] + }, + { + "pc": 4354, + "op": "JUMP", + "gas": 2995837, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xf6d", + "0x38d7ea4c68000", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c68000", + "0x1c5f" + ] + }, + { + "pc": 7263, + "op": "JUMPDEST", + "gas": 2995829, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xf6d", + "0x38d7ea4c68000", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c68000" + ] + }, + { + "pc": 7264, + "op": "PUSH1", + "gas": 2995828, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xf6d", + "0x38d7ea4c68000", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c68000" + ] + }, + { + "pc": 7266, + "op": "PUSH2", + "gas": 2995825, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xf6d", + "0x38d7ea4c68000", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c68000", + "0x0" + ] + }, + { + "pc": 7269, + "op": "DUP3", + "gas": 2995822, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xf6d", + "0x38d7ea4c68000", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c68000", + "0x0", + "0x1c6a" + ] + }, + { + "pc": 7270, + "op": "PUSH2", + "gas": 2995819, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xf6d", + "0x38d7ea4c68000", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c68000", + "0x0", + "0x1c6a", + "0x38d7ea4c68000" + ] + }, + { + "pc": 7273, + "op": "JUMP", + "gas": 2995816, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xf6d", + "0x38d7ea4c68000", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c68000", + "0x0", + "0x1c6a", + "0x38d7ea4c68000", + "0x1cd1" + ] + }, + { + "pc": 7377, + "op": "JUMPDEST", + "gas": 2995808, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xf6d", + "0x38d7ea4c68000", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c68000", + "0x0", + "0x1c6a", + "0x38d7ea4c68000" + ] + }, + { + "pc": 7378, + "op": "PUSH1", + "gas": 2995807, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xf6d", + "0x38d7ea4c68000", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c68000", + "0x0", + "0x1c6a", + "0x38d7ea4c68000" + ] + }, + { + "pc": 7380, + "op": "DUP2", + "gas": 2995804, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xf6d", + "0x38d7ea4c68000", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c68000", + "0x0", + "0x1c6a", + "0x38d7ea4c68000", + "0x0" + ] + }, + { + "pc": 7381, + "op": "SWAP1", + "gas": 2995801, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xf6d", + "0x38d7ea4c68000", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c68000", + "0x0", + "0x1c6a", + "0x38d7ea4c68000", + "0x0", + "0x38d7ea4c68000" + ] + }, + { + "pc": 7382, + "op": "POP", + "gas": 2995798, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xf6d", + "0x38d7ea4c68000", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c68000", + "0x0", + "0x1c6a", + "0x38d7ea4c68000", + "0x38d7ea4c68000", + "0x0" + ] + }, + { + "pc": 7383, + "op": "SWAP2", + "gas": 2995796, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xf6d", + "0x38d7ea4c68000", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c68000", + "0x0", + "0x1c6a", + "0x38d7ea4c68000", + "0x38d7ea4c68000" + ] + }, + { + "pc": 7384, + "op": "SWAP1", + "gas": 2995793, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xf6d", + "0x38d7ea4c68000", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c68000", + "0x0", + "0x38d7ea4c68000", + "0x38d7ea4c68000", + "0x1c6a" + ] + }, + { + "pc": 7385, + "op": "POP", + "gas": 2995790, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xf6d", + "0x38d7ea4c68000", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c68000", + "0x0", + "0x38d7ea4c68000", + "0x1c6a", + "0x38d7ea4c68000" + ] + }, + { + "pc": 7386, + "op": "JUMP", + "gas": 2995788, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xf6d", + "0x38d7ea4c68000", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c68000", + "0x0", + "0x38d7ea4c68000", + "0x1c6a" + ] + }, + { + "pc": 7274, + "op": "JUMPDEST", + "gas": 2995780, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xf6d", + "0x38d7ea4c68000", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c68000", + "0x0", + "0x38d7ea4c68000" + ] + }, + { + "pc": 7275, + "op": "SWAP2", + "gas": 2995779, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xf6d", + "0x38d7ea4c68000", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c68000", + "0x0", + "0x38d7ea4c68000" + ] + }, + { + "pc": 7276, + "op": "POP", + "gas": 2995776, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xf6d", + "0x38d7ea4c68000", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c68000", + "0x0", + "0x38d7ea4c68000" + ] + }, + { + "pc": 7277, + "op": "PUSH2", + "gas": 2995774, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xf6d", + "0x38d7ea4c68000", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c68000", + "0x0" + ] + }, + { + "pc": 7280, + "op": "DUP4", + "gas": 2995771, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xf6d", + "0x38d7ea4c68000", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c68000", + "0x0", + "0x1c75" + ] + }, + { + "pc": 7281, + "op": "PUSH2", + "gas": 2995768, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xf6d", + "0x38d7ea4c68000", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c68000", + "0x0", + "0x1c75", + "0x3e8" + ] + }, + { + "pc": 7284, + "op": "JUMP", + "gas": 2995765, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xf6d", + "0x38d7ea4c68000", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c68000", + "0x0", + "0x1c75", + "0x3e8", + "0x1cd1" + ] + }, + { + "pc": 7377, + "op": "JUMPDEST", + "gas": 2995757, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xf6d", + "0x38d7ea4c68000", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c68000", + "0x0", + "0x1c75", + "0x3e8" + ] + }, + { + "pc": 7378, + "op": "PUSH1", + "gas": 2995756, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xf6d", + "0x38d7ea4c68000", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c68000", + "0x0", + "0x1c75", + "0x3e8" + ] + }, + { + "pc": 7380, + "op": "DUP2", + "gas": 2995753, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xf6d", + "0x38d7ea4c68000", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c68000", + "0x0", + "0x1c75", + "0x3e8", + "0x0" + ] + }, + { + "pc": 7381, + "op": "SWAP1", + "gas": 2995750, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xf6d", + "0x38d7ea4c68000", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c68000", + "0x0", + "0x1c75", + "0x3e8", + "0x0", + "0x3e8" + ] + }, + { + "pc": 7382, + "op": "POP", + "gas": 2995747, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xf6d", + "0x38d7ea4c68000", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c68000", + "0x0", + "0x1c75", + "0x3e8", + "0x3e8", + "0x0" + ] + }, + { + "pc": 7383, + "op": "SWAP2", + "gas": 2995745, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xf6d", + "0x38d7ea4c68000", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c68000", + "0x0", + "0x1c75", + "0x3e8", + "0x3e8" + ] + }, + { + "pc": 7384, + "op": "SWAP1", + "gas": 2995742, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xf6d", + "0x38d7ea4c68000", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c68000", + "0x0", + "0x3e8", + "0x3e8", + "0x1c75" + ] + }, + { + "pc": 7385, + "op": "POP", + "gas": 2995739, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xf6d", + "0x38d7ea4c68000", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c68000", + "0x0", + "0x3e8", + "0x1c75", + "0x3e8" + ] + }, + { + "pc": 7386, + "op": "JUMP", + "gas": 2995737, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xf6d", + "0x38d7ea4c68000", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c68000", + "0x0", + "0x3e8", + "0x1c75" + ] + }, + { + "pc": 7285, + "op": "JUMPDEST", + "gas": 2995729, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xf6d", + "0x38d7ea4c68000", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c68000", + "0x0", + "0x3e8" + ] + }, + { + "pc": 7286, + "op": "SWAP3", + "gas": 2995728, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xf6d", + "0x38d7ea4c68000", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c68000", + "0x0", + "0x3e8" + ] + }, + { + "pc": 7287, + "op": "POP", + "gas": 2995725, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xf6d", + "0x38d7ea4c68000", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c68000", + "0x0", + "0x3e8" + ] + }, + { + "pc": 7288, + "op": "DUP3", + "gas": 2995723, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xf6d", + "0x38d7ea4c68000", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c68000", + "0x0" + ] + }, + { + "pc": 7289, + "op": "DUP3", + "gas": 2995720, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xf6d", + "0x38d7ea4c68000", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c68000", + "0x0", + "0x3e8" + ] + }, + { + "pc": 7290, + "op": "LT", + "gas": 2995717, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xf6d", + "0x38d7ea4c68000", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c68000", + "0x0", + "0x3e8", + "0x38d7ea4c68000" + ] + }, + { + "pc": 7291, + "op": "ISZERO", + "gas": 2995714, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xf6d", + "0x38d7ea4c68000", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c68000", + "0x0", + "0x0" + ] + }, + { + "pc": 7292, + "op": "PUSH2", + "gas": 2995711, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xf6d", + "0x38d7ea4c68000", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c68000", + "0x0", + "0x1" + ] + }, + { + "pc": 7295, + "op": "JUMPI", + "gas": 2995708, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xf6d", + "0x38d7ea4c68000", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c68000", + "0x0", + "0x1", + "0x1c88" + ] + }, + { + "pc": 7304, + "op": "JUMPDEST", + "gas": 2995698, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xf6d", + "0x38d7ea4c68000", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c68000", + "0x0" + ] + }, + { + "pc": 7305, + "op": "DUP3", + "gas": 2995697, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xf6d", + "0x38d7ea4c68000", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c68000", + "0x0" + ] + }, + { + "pc": 7306, + "op": "DUP3", + "gas": 2995694, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xf6d", + "0x38d7ea4c68000", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c68000", + "0x0", + "0x3e8" + ] + }, + { + "pc": 7307, + "op": "SUB", + "gas": 2995691, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xf6d", + "0x38d7ea4c68000", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c68000", + "0x0", + "0x3e8", + "0x38d7ea4c68000" + ] + }, + { + "pc": 7308, + "op": "SWAP1", + "gas": 2995688, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xf6d", + "0x38d7ea4c68000", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c68000", + "0x0", + "0x38d7ea4c67c18" + ] + }, + { + "pc": 7309, + "op": "POP", + "gas": 2995685, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xf6d", + "0x38d7ea4c68000", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c68000", + "0x38d7ea4c67c18", + "0x0" + ] + }, + { + "pc": 7310, + "op": "SWAP3", + "gas": 2995683, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xf6d", + "0x38d7ea4c68000", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x1103", + "0x3e8", + "0x38d7ea4c68000", + "0x38d7ea4c67c18" + ] + }, + { + "pc": 7311, + "op": "SWAP2", + "gas": 2995680, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xf6d", + "0x38d7ea4c68000", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x38d7ea4c67c18", + "0x3e8", + "0x38d7ea4c68000", + "0x1103" + ] + }, + { + "pc": 7312, + "op": "POP", + "gas": 2995677, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xf6d", + "0x38d7ea4c68000", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x38d7ea4c67c18", + "0x1103", + "0x38d7ea4c68000", + "0x3e8" + ] + }, + { + "pc": 7313, + "op": "POP", + "gas": 2995675, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xf6d", + "0x38d7ea4c68000", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x38d7ea4c67c18", + "0x1103", + "0x38d7ea4c68000" + ] + }, + { + "pc": 7314, + "op": "JUMP", + "gas": 2995673, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xf6d", + "0x38d7ea4c68000", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x38d7ea4c67c18", + "0x1103" + ] + }, + { + "pc": 4355, + "op": "JUMPDEST", + "gas": 2995665, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xf6d", + "0x38d7ea4c68000", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x38d7ea4c67c18" + ] + }, + { + "pc": 4356, + "op": "SWAP1", + "gas": 2995664, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xf6d", + "0x38d7ea4c68000", + "0x3e8", + "0x80", + "0x0", + "0x0", + "0x38d7ea4c67c18" + ] + }, + { + "pc": 4357, + "op": "POP", + "gas": 2995661, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xf6d", + "0x38d7ea4c68000", + "0x3e8", + "0x80", + "0x0", + "0x38d7ea4c67c18", + "0x0" + ] + }, + { + "pc": 4358, + "op": "DUP1", + "gas": 2995659, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xf6d", + "0x38d7ea4c68000", + "0x3e8", + "0x80", + "0x0", + "0x38d7ea4c67c18" + ] + }, + { + "pc": 4359, + "op": "SWAP2", + "gas": 2995656, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xf6d", + "0x38d7ea4c68000", + "0x3e8", + "0x80", + "0x0", + "0x38d7ea4c67c18", + "0x38d7ea4c67c18" + ] + }, + { + "pc": 4360, + "op": "POP", + "gas": 2995653, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xf6d", + "0x38d7ea4c68000", + "0x3e8", + "0x80", + "0x38d7ea4c67c18", + "0x38d7ea4c67c18", + "0x0" + ] + }, + { + "pc": 4361, + "op": "POP", + "gas": 2995651, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xf6d", + "0x38d7ea4c68000", + "0x3e8", + "0x80", + "0x38d7ea4c67c18", + "0x38d7ea4c67c18" + ] + }, + { + "pc": 4362, + "op": "SWAP4", + "gas": 2995649, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0xf6d", + "0x38d7ea4c68000", + "0x3e8", + "0x80", + "0x38d7ea4c67c18" + ] + }, + { + "pc": 4363, + "op": "SWAP3", + "gas": 2995646, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x38d7ea4c67c18", + "0x38d7ea4c68000", + "0x3e8", + "0x80", + "0xf6d" + ] + }, + { + "pc": 4364, + "op": "POP", + "gas": 2995643, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x38d7ea4c67c18", + "0xf6d", + "0x3e8", + "0x80", + "0x38d7ea4c68000" + ] + }, + { + "pc": 4365, + "op": "POP", + "gas": 2995641, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x38d7ea4c67c18", + "0xf6d", + "0x3e8", + "0x80" + ] + }, + { + "pc": 4366, + "op": "POP", + "gas": 2995639, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x38d7ea4c67c18", + "0xf6d", + "0x3e8" + ] + }, + { + "pc": 4367, + "op": "JUMP", + "gas": 2995637, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x38d7ea4c67c18", + "0xf6d" + ] + }, + { + "pc": 3949, + "op": "JUMPDEST", + "gas": 2995629, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x38d7ea4c67c18" + ] + }, + { + "pc": 3950, + "op": "PUSH1", + "gas": 2995628, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x38d7ea4c67c18" + ] + }, + { + "pc": 3952, + "op": "DUP1", + "gas": 2995625, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x38d7ea4c67c18", + "0x0" + ] + }, + { + "pc": 3953, + "op": "DUP6", + "gas": 2995622, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x38d7ea4c67c18", + "0x0", + "0x0" + ] + }, + { + "pc": 3954, + "op": "PUSH20", + "gas": 2995619, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x38d7ea4c67c18", + "0x0", + "0x0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 3975, + "op": "AND", + "gas": 2995616, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x38d7ea4c67c18", + "0x0", + "0x0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 3976, + "op": "PUSH20", + "gas": 2995613, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x38d7ea4c67c18", + "0x0", + "0x0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 3997, + "op": "AND", + "gas": 2995610, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x38d7ea4c67c18", + "0x0", + "0x0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 3998, + "op": "DUP2", + "gas": 2995607, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x38d7ea4c67c18", + "0x0", + "0x0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 3999, + "op": "MSTORE", + "gas": 2995604, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x38d7ea4c67c18", + "0x0", + "0x0", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x0" + ] + }, + { + "pc": 4000, + "op": "PUSH1", + "gas": 2995601, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x38d7ea4c67c18", + "0x0", + "0x0" + ] + }, + { + "pc": 4002, + "op": "ADD", + "gas": 2995598, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x38d7ea4c67c18", + "0x0", + "0x0", + "0x20" + ] + }, + { + "pc": 4003, + "op": "SWAP1", + "gas": 2995595, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x38d7ea4c67c18", + "0x0", + "0x20" + ] + }, + { + "pc": 4004, + "op": "DUP2", + "gas": 2995592, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x38d7ea4c67c18", "0x20", "0x0" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 2771, + "pc": 4005, "op": "MSTORE", - "gas": 2995183, + "gas": 2995589, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", - "0x7f228daac38a51833dbbfc18", - "0x3e8", + "0x38d7ea4c67c18", "0x20", "0x0", "0x20" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 2772, + "pc": 4006, "op": "PUSH1", - "gas": 2995180, + "gas": 2995586, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", - "0x7f228daac38a51833dbbfc18", - "0x3e8", + "0x38d7ea4c67c18", "0x20" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 2774, + "pc": 4008, "op": "ADD", - "gas": 2995177, + "gas": 2995583, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", - "0x7f228daac38a51833dbbfc18", - "0x3e8", + "0x38d7ea4c67c18", "0x20", "0x20" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 2775, + "pc": 4009, "op": "PUSH1", - "gas": 2995174, + "gas": 2995580, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", - "0x7f228daac38a51833dbbfc18", - "0x3e8", + "0x38d7ea4c67c18", "0x40" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 2777, + "pc": 4011, "op": "SHA3", - "gas": 2995171, + "gas": 2995577, "gasCost": 42, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", - "0x7f228daac38a51833dbbfc18", + "0x38d7ea4c67c18", + "0x40", + "0x0" + ] + }, + { + "pc": 4012, + "op": "DUP2", + "gas": 2995535, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x38d7ea4c67c18", + "0x5a158573daab1c353835da34297290f5f813859e4bb52de641691b875502523f" + ] + }, + { + "pc": 4013, + "op": "SWAP1", + "gas": 2995532, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x38d7ea4c67c18", + "0x5a158573daab1c353835da34297290f5f813859e4bb52de641691b875502523f", + "0x38d7ea4c67c18" + ] + }, + { + "pc": 4014, + "op": "SSTORE", + "gas": 2995529, + "gasCost": 2900, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x38d7ea4c67c18", + "0x38d7ea4c67c18", + "0x5a158573daab1c353835da34297290f5f813859e4bb52de641691b875502523f" + ], + "storage": { + "0x0000000000000000000000000000000000000000000000000000000000000005": "0x000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd65710012", + "0x5a158573daab1c353835da34297290f5f813859e4bb52de641691b875502523f": "0x00000000000000000000000000000000000000000000000000038d7ea4c67c18" + }, + "extraData": { + "proofList": [ + { + "address": "0x34041eff1f32989bdaa95875e0f41afd6294dcd4", + "nonce": 1, + "balance": "0x0", + "codeHash": "0x9b5ea0519f6e20c36338989b6accc7cf3384eac2f0a083e82730bca177544409", + "storage": { + "key": "0x5a158573daab1c353835da34297290f5f813859e4bb52de641691b875502523f", + "value": "0x00000000000000000000000000000000000000000000000000038d7ea4c68000" + } + } + ] + } + }, + { + "pc": 4015, + "op": "POP", + "gas": 2992629, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x38d7ea4c67c18" + ] + }, + { + "pc": 4016, + "op": "PUSH2", + "gas": 2992627, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8" + ] + }, + { + "pc": 4019, + "op": "DUP2", + "gas": 2992624, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1000" + ] + }, + { + "pc": 4020, + "op": "PUSH1", + "gas": 2992621, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1000", + "0x3e8" + ] + }, + { + "pc": 4022, + "op": "DUP1", + "gas": 2992618, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1000", + "0x3e8", + "0x0" + ] + }, + { + "pc": 4023, + "op": "DUP6", + "gas": 2992615, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1000", + "0x3e8", + "0x0", + "0x0" + ] + }, + { + "pc": 4024, + "op": "PUSH20", + "gas": 2992612, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1000", + "0x3e8", + "0x0", + "0x0", + "0x8ba1f109551bd432803012645ac136ddd64dba72" + ] + }, + { + "pc": 4045, + "op": "AND", + "gas": 2992609, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1000", + "0x3e8", + "0x0", + "0x0", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 4046, + "op": "PUSH20", + "gas": 2992606, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1000", + "0x3e8", + "0x0", + "0x0", + "0x8ba1f109551bd432803012645ac136ddd64dba72" + ] + }, + { + "pc": 4067, + "op": "AND", + "gas": 2992603, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1000", + "0x3e8", + "0x0", + "0x0", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 4068, + "op": "DUP2", + "gas": 2992600, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1000", + "0x3e8", + "0x0", + "0x0", + "0x8ba1f109551bd432803012645ac136ddd64dba72" + ] + }, + { + "pc": 4069, + "op": "MSTORE", + "gas": 2992597, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1000", + "0x3e8", + "0x0", + "0x0", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x0" + ] + }, + { + "pc": 4070, + "op": "PUSH1", + "gas": 2992594, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1000", + "0x3e8", + "0x0", + "0x0" + ] + }, + { + "pc": 4072, + "op": "ADD", + "gas": 2992591, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1000", + "0x3e8", + "0x0", + "0x0", + "0x20" + ] + }, + { + "pc": 4073, + "op": "SWAP1", + "gas": 2992588, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1000", + "0x3e8", + "0x0", + "0x20" + ] + }, + { + "pc": 4074, + "op": "DUP2", + "gas": 2992585, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1000", + "0x3e8", + "0x20", + "0x0" + ] + }, + { + "pc": 4075, + "op": "MSTORE", + "gas": 2992582, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1000", + "0x3e8", + "0x20", + "0x0", + "0x20" + ] + }, + { + "pc": 4076, + "op": "PUSH1", + "gas": 2992579, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1000", + "0x3e8", + "0x20" + ] + }, + { + "pc": 4078, + "op": "ADD", + "gas": 2992576, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1000", + "0x3e8", + "0x20", + "0x20" + ] + }, + { + "pc": 4079, + "op": "PUSH1", + "gas": 2992573, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1000", + "0x3e8", + "0x40" + ] + }, + { + "pc": 4081, + "op": "SHA3", + "gas": 2992570, + "gasCost": 42, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1000", "0x3e8", "0x40", "0x0" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 2778, - "op": "PUSH1", - "gas": 2995129, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbfc18", - "0x3e8", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2780, - "op": "DUP3", - "gas": 2995126, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbfc18", - "0x3e8", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0x0" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2781, - "op": "DUP3", - "gas": 2995123, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbfc18", - "0x3e8", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0x0", - "0x3e8" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2782, + "pc": 4082, "op": "SLOAD", - "gas": 2995120, + "gas": 2992528, "gasCost": 2100, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", - "0x7f228daac38a51833dbbfc18", - "0x3e8", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0x0", + "0x1000", "0x3e8", "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f" ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "storage": { + "0x0000000000000000000000000000000000000000000000000000000000000005": "0x000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd65710012", + "0x5a158573daab1c353835da34297290f5f813859e4bb52de641691b875502523f": "0x00000000000000000000000000000000000000000000000000038d7ea4c67c18", + "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "extraData": { + "proofList": [ + { + "address": "0x34041eff1f32989bdaa95875e0f41afd6294dcd4", + "nonce": 1, + "balance": "0x0", + "codeHash": "0x9b5ea0519f6e20c36338989b6accc7cf3384eac2f0a083e82730bca177544409", + "storage": { + "key": "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", + "value": "0x0000000000000000000000000000000000000000000000000000000000000000" + } + } + ] + } + }, + { + "pc": 4083, + "op": "PUSH2", + "gas": 2990428, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1000", + "0x3e8", + "0x0" + ] + }, + { + "pc": 4086, + "op": "SWAP1", + "gas": 2990425, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1000", + "0x3e8", + "0x0", + "0x1110" + ] + }, + { + "pc": 4087, + "op": "SWAP2", + "gas": 2990422, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1000", + "0x3e8", + "0x1110", + "0x0" + ] + }, + { + "pc": 4088, + "op": "SWAP1", + "gas": 2990419, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1000", + "0x0", + "0x1110", + "0x3e8" + ] + }, + { + "pc": 4089, + "op": "PUSH4", + "gas": 2990416, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x1110" + ] + }, + { + "pc": 4094, + "op": "AND", + "gas": 2990413, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x1110", + "0xffffffff" + ] + }, + { + "pc": 4095, + "op": "JUMP", + "gas": 2990410, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x1110" + ] + }, + { + "pc": 4368, + "op": "JUMPDEST", + "gas": 2990402, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1000", + "0x0", + "0x3e8" + ] + }, + { + "pc": 4369, + "op": "PUSH1", + "gas": 2990401, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1000", + "0x0", + "0x3e8" + ] + }, + { + "pc": 4371, + "op": "DUP1", + "gas": 2990398, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0" + ] + }, + { + "pc": 4372, + "op": "DUP3", + "gas": 2990395, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0" + ] + }, + { + "pc": 4373, + "op": "DUP5", + "gas": 2990392, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x3e8" + ] + }, + { + "pc": 4374, + "op": "PUSH2", + "gas": 2990389, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x3e8", + "0x0" + ] + }, + { + "pc": 4377, + "op": "SWAP2", + "gas": 2990386, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x3e8", + "0x0", + "0x111f" + ] + }, + { + "pc": 4378, + "op": "SWAP1", + "gas": 2990383, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x0", + "0x3e8" + ] + }, + { + "pc": 4379, + "op": "PUSH2", + "gas": 2990380, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0" + ] + }, + { + "pc": 4382, + "op": "JUMP", + "gas": 2990377, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x1c09" + ] + }, + { + "pc": 7177, + "op": "JUMPDEST", + "gas": 2990369, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0" + ] + }, + { + "pc": 7178, + "op": "PUSH1", + "gas": 2990368, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0" + ] + }, + { + "pc": 7180, + "op": "PUSH2", + "gas": 2990365, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0" + ] + }, + { + "pc": 7183, + "op": "DUP3", + "gas": 2990362, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x1c14" + ] + }, + { + "pc": 7184, + "op": "PUSH2", + "gas": 2990359, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x1c14", + "0x0" + ] + }, + { + "pc": 7187, + "op": "JUMP", + "gas": 2990356, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x1c14", + "0x0", + "0x1cd1" + ] + }, + { + "pc": 7377, + "op": "JUMPDEST", + "gas": 2990348, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x1c14", + "0x0" + ] + }, + { + "pc": 7378, + "op": "PUSH1", + "gas": 2990347, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x1c14", + "0x0" + ] + }, + { + "pc": 7380, + "op": "DUP2", + "gas": 2990344, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x1c14", + "0x0", + "0x0" + ] + }, + { + "pc": 7381, + "op": "SWAP1", + "gas": 2990341, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x1c14", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 7382, + "op": "POP", + "gas": 2990338, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x1c14", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 7383, + "op": "SWAP2", + "gas": 2990336, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x1c14", + "0x0", + "0x0" + ] + }, + { + "pc": 7384, + "op": "SWAP1", + "gas": 2990333, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x0", + "0x0", + "0x1c14" + ] + }, + { + "pc": 7385, + "op": "POP", + "gas": 2990330, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x0", + "0x1c14", + "0x0" + ] + }, + { + "pc": 7386, + "op": "JUMP", + "gas": 2990328, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x0", + "0x1c14" + ] + }, + { + "pc": 7188, + "op": "JUMPDEST", + "gas": 2990320, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 7189, + "op": "SWAP2", + "gas": 2990319, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 7190, + "op": "POP", + "gas": 2990316, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 7191, + "op": "PUSH2", + "gas": 2990314, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0" + ] + }, + { + "pc": 7194, + "op": "DUP4", + "gas": 2990311, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x1c1f" + ] + }, + { + "pc": 7195, + "op": "PUSH2", + "gas": 2990308, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x1c1f", + "0x3e8" + ] + }, + { + "pc": 7198, + "op": "JUMP", + "gas": 2990305, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x1c1f", + "0x3e8", + "0x1cd1" + ] + }, + { + "pc": 7377, + "op": "JUMPDEST", + "gas": 2990297, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x1c1f", + "0x3e8" + ] + }, + { + "pc": 7378, + "op": "PUSH1", + "gas": 2990296, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x1c1f", + "0x3e8" + ] + }, + { + "pc": 7380, + "op": "DUP2", + "gas": 2990293, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x1c1f", + "0x3e8", + "0x0" + ] + }, + { + "pc": 7381, + "op": "SWAP1", + "gas": 2990290, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x1c1f", + "0x3e8", + "0x0", + "0x3e8" + ] + }, + { + "pc": 7382, + "op": "POP", + "gas": 2990287, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x1c1f", + "0x3e8", + "0x3e8", + "0x0" + ] + }, + { + "pc": 7383, + "op": "SWAP2", + "gas": 2990285, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x1c1f", + "0x3e8", + "0x3e8" + ] + }, + { + "pc": 7384, + "op": "SWAP1", + "gas": 2990282, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x3e8", + "0x3e8", + "0x1c1f" + ] + }, + { + "pc": 7385, + "op": "POP", + "gas": 2990279, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x3e8", + "0x1c1f", + "0x3e8" + ] + }, + { + "pc": 7386, + "op": "JUMP", + "gas": 2990277, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x3e8", + "0x1c1f" + ] + }, + { + "pc": 7199, + "op": "JUMPDEST", + "gas": 2990269, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x3e8" + ] + }, + { + "pc": 7200, + "op": "SWAP3", + "gas": 2990268, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x3e8" + ] + }, + { + "pc": 7201, + "op": "POP", + "gas": 2990265, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x3e8" + ] + }, + { + "pc": 7202, + "op": "DUP3", + "gas": 2990263, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0" + ] + }, + { + "pc": 7203, + "op": "PUSH32", + "gas": 2990260, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x3e8" + ] + }, + { + "pc": 7236, + "op": "SUB", + "gas": 2990257, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x3e8", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 7237, + "op": "DUP3", + "gas": 2990254, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc17" + ] + }, + { + "pc": 7238, + "op": "GT", + "gas": 2990251, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc17", + "0x0" + ] + }, + { + "pc": 7239, + "op": "ISZERO", + "gas": 2990248, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 7240, + "op": "PUSH2", + "gas": 2990245, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x1" + ] + }, + { + "pc": 7243, + "op": "JUMPI", + "gas": 2990242, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x1", + "0x1c54" + ] + }, + { + "pc": 7252, + "op": "JUMPDEST", + "gas": 2990232, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0" + ] + }, + { + "pc": 7253, + "op": "DUP3", + "gas": 2990231, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0" + ] + }, + { + "pc": 7254, + "op": "DUP3", + "gas": 2990228, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x3e8" + ] + }, + { + "pc": 7255, + "op": "ADD", + "gas": 2990225, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x3e8", + "0x0" + ] + }, + { + "pc": 7256, + "op": "SWAP1", + "gas": 2990222, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x0", + "0x3e8" + ] + }, + { + "pc": 7257, + "op": "POP", + "gas": 2990219, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x3e8", + "0x0" + ] + }, + { + "pc": 7258, + "op": "SWAP3", + "gas": 2990217, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x111f", + "0x3e8", + "0x0", + "0x3e8" + ] + }, + { + "pc": 7259, + "op": "SWAP2", + "gas": 2990214, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x3e8", + "0x3e8", + "0x0", + "0x111f" + ] + }, + { + "pc": 7260, + "op": "POP", + "gas": 2990211, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x3e8", + "0x111f", + "0x0", + "0x3e8" + ] + }, + { + "pc": 7261, + "op": "POP", + "gas": 2990209, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x3e8", + "0x111f", + "0x0" + ] + }, + { + "pc": 7262, + "op": "JUMP", + "gas": 2990207, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x3e8", + "0x111f" + ] + }, + { + "pc": 4383, + "op": "JUMPDEST", + "gas": 2990199, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x3e8" + ] + }, + { + "pc": 4384, + "op": "SWAP1", + "gas": 2990198, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x3e8" + ] + }, + { + "pc": 4385, + "op": "POP", + "gas": 2990195, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x3e8", + "0x0" + ] + }, + { + "pc": 4386, + "op": "DUP4", + "gas": 2990193, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x3e8" + ] + }, + { + "pc": 4387, + "op": "DUP2", + "gas": 2990190, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x3e8", + "0x0" + ] + }, + { + "pc": 4388, + "op": "LT", + "gas": 2990187, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x3e8", + "0x0", + "0x3e8" + ] + }, + { + "pc": 4389, + "op": "ISZERO", + "gas": 2990184, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x3e8", + "0x0" + ] + }, + { + "pc": 4390, + "op": "PUSH2", + "gas": 2990181, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x3e8", + "0x1" + ] + }, + { + "pc": 4393, + "op": "JUMPI", + "gas": 2990178, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x3e8", + "0x1", + "0x1164" + ] + }, + { + "pc": 4452, + "op": "JUMPDEST", + "gas": 2990168, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x3e8" + ] + }, + { + "pc": 4453, + "op": "DUP1", + "gas": 2990167, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x3e8" + ] + }, + { + "pc": 4454, + "op": "SWAP2", + "gas": 2990164, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x0", + "0x3e8", + "0x3e8" + ] + }, + { + "pc": 4455, + "op": "POP", + "gas": 2990161, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x3e8", + "0x3e8", + "0x0" + ] + }, + { + "pc": 4456, + "op": "POP", + "gas": 2990159, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x3e8", + "0x3e8" + ] + }, + { + "pc": 4457, + "op": "SWAP3", + "gas": 2990157, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1000", + "0x0", + "0x3e8", + "0x3e8" + ] + }, + { + "pc": 4458, + "op": "SWAP2", + "gas": 2990154, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x3e8", + "0x0", + "0x3e8", + "0x1000" + ] + }, + { + "pc": 4459, + "op": "POP", + "gas": 2990151, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x3e8", + "0x1000", + "0x3e8", + "0x0" + ] + }, + { + "pc": 4460, + "op": "POP", + "gas": 2990149, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x3e8", + "0x1000", + "0x3e8" + ] + }, + { + "pc": 4461, + "op": "JUMP", + "gas": 2990147, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x3e8", + "0x1000" + ] + }, + { + "pc": 4096, + "op": "JUMPDEST", + "gas": 2990139, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x3e8" + ] + }, + { + "pc": 4097, + "op": "PUSH1", + "gas": 2990138, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x3e8" + ] + }, + { + "pc": 4099, + "op": "DUP1", + "gas": 2990135, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x3e8", + "0x0" + ] + }, + { + "pc": 4100, + "op": "DUP5", + "gas": 2990132, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x3e8", + "0x0", + "0x0" + ] + }, + { + "pc": 4101, + "op": "PUSH20", + "gas": 2990129, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x3e8", + "0x0", + "0x0", + "0x8ba1f109551bd432803012645ac136ddd64dba72" + ] + }, + { + "pc": 4122, + "op": "AND", + "gas": 2990126, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x3e8", + "0x0", + "0x0", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 4123, + "op": "PUSH20", + "gas": 2990123, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x3e8", + "0x0", + "0x0", + "0x8ba1f109551bd432803012645ac136ddd64dba72" + ] + }, + { + "pc": 4144, + "op": "AND", + "gas": 2990120, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x3e8", + "0x0", + "0x0", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 4145, + "op": "DUP2", + "gas": 2990117, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x3e8", + "0x0", + "0x0", + "0x8ba1f109551bd432803012645ac136ddd64dba72" + ] + }, + { + "pc": 4146, + "op": "MSTORE", + "gas": 2990114, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x3e8", + "0x0", + "0x0", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x0" + ] + }, + { + "pc": 4147, + "op": "PUSH1", + "gas": 2990111, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x3e8", + "0x0", + "0x0" + ] + }, + { + "pc": 4149, + "op": "ADD", + "gas": 2990108, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x3e8", + "0x0", + "0x0", + "0x20" + ] + }, + { + "pc": 4150, + "op": "SWAP1", + "gas": 2990105, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x3e8", + "0x0", + "0x20" + ] + }, + { + "pc": 4151, + "op": "DUP2", + "gas": 2990102, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x3e8", + "0x20", + "0x0" + ] + }, + { + "pc": 4152, + "op": "MSTORE", + "gas": 2990099, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x3e8", + "0x20", + "0x0", + "0x20" + ] + }, + { + "pc": 4153, + "op": "PUSH1", + "gas": 2990096, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x3e8", + "0x20" + ] + }, + { + "pc": 4155, + "op": "ADD", + "gas": 2990093, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x3e8", + "0x20", + "0x20" + ] + }, + { + "pc": 4156, + "op": "PUSH1", + "gas": 2990090, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x3e8", + "0x40" + ] + }, + { + "pc": 4158, + "op": "SHA3", + "gas": 2990087, + "gasCost": 42, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x3e8", + "0x40", + "0x0" + ] + }, + { + "pc": 4159, + "op": "DUP2", + "gas": 2990045, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x3e8", + "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f" + ] + }, + { + "pc": 4160, + "op": "SWAP1", + "gas": 2990042, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x3e8", + "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", + "0x3e8" + ] + }, + { + "pc": 4161, + "op": "SSTORE", + "gas": 2990039, + "gasCost": 20000, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x3e8", + "0x3e8", + "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f" ], "storage": { - "0x5a158573daab1c353835da34297290f5f813859e4bb52de641691b875502523f": "0x00000000000000000000000000000000000000007f228daac38a51833dbbf830", + "0x0000000000000000000000000000000000000000000000000000000000000005": "0x000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd65710012", + "0x5a158573daab1c353835da34297290f5f813859e4bb52de641691b875502523f": "0x00000000000000000000000000000000000000000000000000038d7ea4c67c18", "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f": "0x00000000000000000000000000000000000000000000000000000000000003e8" }, "extraData": { "proofList": [ { - "address": "0xee0e03c1a621084ca3c542f36e4a5d0230304471", + "address": "0x34041eff1f32989bdaa95875e0f41afd6294dcd4", "nonce": 1, "balance": "0x0", - "codeHash": "0x178763dea206ad5ecfbf211ddeb69d930d18811bc617cb4bbb0c0e7f0d28a3aa", + "codeHash": "0x9b5ea0519f6e20c36338989b6accc7cf3384eac2f0a083e82730bca177544409", "storage": { "key": "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "value": "0x00000000000000000000000000000000000000000000000000000000000003e8" + "value": "0x0000000000000000000000000000000000000000000000000000000000000000" } } ] } }, { - "pc": 2783, - "op": "PUSH2", - "gas": 2993020, - "gasCost": 3, + "pc": 4162, + "op": "POP", + "gas": 2970039, + "gasCost": 2, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", - "0x7f228daac38a51833dbbfc18", - "0x3e8", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0x0", - "0x3e8", "0x3e8" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 2786, - "op": "SWAP2", - "gas": 2993017, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbfc18", - "0x3e8", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0x0", - "0x3e8", - "0x3e8", - "0xae8" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2787, - "op": "SWAP1", - "gas": 2993014, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbfc18", - "0x3e8", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0x0", - "0xae8", - "0x3e8", - "0x3e8" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2788, - "op": "PUSH2", - "gas": 2993011, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbfc18", - "0x3e8", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0x0", - "0xae8", - "0x3e8", - "0x3e8" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2791, - "op": "JUMP", - "gas": 2993008, - "gasCost": 8, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbfc18", - "0x3e8", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0x0", - "0xae8", - "0x3e8", - "0x3e8", - "0xf53" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 3923, - "op": "JUMPDEST", - "gas": 2993000, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbfc18", - "0x3e8", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0x0", - "0xae8", - "0x3e8", - "0x3e8" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 3924, - "op": "PUSH1", - "gas": 2992999, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbfc18", - "0x3e8", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0x0", - "0xae8", - "0x3e8", - "0x3e8" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 3926, - "op": "PUSH2", - "gas": 2992996, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbfc18", - "0x3e8", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0x0", - "0xae8", - "0x3e8", - "0x3e8", - "0x0" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 3929, - "op": "DUP3", - "gas": 2992993, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbfc18", - "0x3e8", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0x0", - "0xae8", - "0x3e8", - "0x3e8", - "0x0", - "0xf5e" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 3930, - "op": "PUSH2", - "gas": 2992990, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbfc18", - "0x3e8", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0x0", - "0xae8", - "0x3e8", - "0x3e8", - "0x0", - "0xf5e", - "0x3e8" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 3933, - "op": "JUMP", - "gas": 2992987, - "gasCost": 8, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbfc18", - "0x3e8", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0x0", - "0xae8", - "0x3e8", - "0x3e8", - "0x0", - "0xf5e", - "0x3e8", - "0xfe7" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 4071, - "op": "JUMPDEST", - "gas": 2992979, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbfc18", - "0x3e8", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0x0", - "0xae8", - "0x3e8", - "0x3e8", - "0x0", - "0xf5e", - "0x3e8" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 4072, - "op": "PUSH1", - "gas": 2992978, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbfc18", - "0x3e8", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0x0", - "0xae8", - "0x3e8", - "0x3e8", - "0x0", - "0xf5e", - "0x3e8" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 4074, + "pc": 4163, "op": "DUP2", - "gas": 2992975, + "gas": 2970037, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbfc18", - "0x3e8", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0x0", - "0xae8", - "0x3e8", - "0x3e8", - "0x0", - "0xf5e", - "0x3e8", - "0x0" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x3e8" ] }, { - "pc": 4075, - "op": "SWAP1", - "gas": 2992972, + "pc": 4164, + "op": "PUSH20", + "gas": 2970034, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", - "0x7f228daac38a51833dbbfc18", - "0x3e8", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0x0", - "0xae8", - "0x3e8", - "0x3e8", - "0x0", - "0xf5e", - "0x3e8", - "0x0", - "0x3e8" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x8ba1f109551bd432803012645ac136ddd64dba72" ] }, { - "pc": 4076, - "op": "POP", - "gas": 2992969, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbfc18", - "0x3e8", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0x0", - "0xae8", - "0x3e8", - "0x3e8", - "0x0", - "0xf5e", - "0x3e8", - "0x3e8", - "0x0" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 4077, - "op": "SWAP2", - "gas": 2992967, + "pc": 4185, + "op": "AND", + "gas": 2970031, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", - "0x7f228daac38a51833dbbfc18", - "0x3e8", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0x0", - "0xae8", - "0x3e8", - "0x3e8", - "0x0", - "0xf5e", - "0x3e8", - "0x3e8" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0xffffffffffffffffffffffffffffffffffffffff" ] }, { - "pc": 4078, - "op": "SWAP1", - "gas": 2992964, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbfc18", - "0x3e8", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0x0", - "0xae8", - "0x3e8", - "0x3e8", - "0x0", - "0x3e8", - "0x3e8", - "0xf5e" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 4079, - "op": "POP", - "gas": 2992961, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbfc18", - "0x3e8", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0x0", - "0xae8", - "0x3e8", - "0x3e8", - "0x0", - "0x3e8", - "0xf5e", - "0x3e8" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 4080, - "op": "JUMP", - "gas": 2992959, - "gasCost": 8, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbfc18", - "0x3e8", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0x0", - "0xae8", - "0x3e8", - "0x3e8", - "0x0", - "0x3e8", - "0xf5e" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 3934, - "op": "JUMPDEST", - "gas": 2992951, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbfc18", - "0x3e8", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0x0", - "0xae8", - "0x3e8", - "0x3e8", - "0x0", - "0x3e8" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 3935, - "op": "SWAP2", - "gas": 2992950, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbfc18", - "0x3e8", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0x0", - "0xae8", - "0x3e8", - "0x3e8", - "0x0", - "0x3e8" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 3936, - "op": "POP", - "gas": 2992947, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbfc18", - "0x3e8", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0x0", - "0xae8", - "0x3e8", - "0x3e8", - "0x0", - "0x3e8" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 3937, - "op": "PUSH2", - "gas": 2992945, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbfc18", - "0x3e8", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0x0", - "0xae8", - "0x3e8", - "0x3e8", - "0x0" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 3940, + "pc": 4186, "op": "DUP4", - "gas": 2992942, + "gas": 2970028, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbfc18", - "0x3e8", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0x0", - "0xae8", - "0x3e8", - "0x3e8", - "0x0", - "0xf69" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 3941, - "op": "PUSH2", - "gas": 2992939, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbfc18", - "0x3e8", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0x0", - "0xae8", - "0x3e8", - "0x3e8", - "0x0", - "0xf69", - "0x3e8" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 3944, - "op": "JUMP", - "gas": 2992936, - "gasCost": 8, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbfc18", - "0x3e8", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0x0", - "0xae8", - "0x3e8", - "0x3e8", - "0x0", - "0xf69", - "0x3e8", - "0xfe7" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 4071, - "op": "JUMPDEST", - "gas": 2992928, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbfc18", - "0x3e8", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0x0", - "0xae8", - "0x3e8", - "0x3e8", - "0x0", - "0xf69", - "0x3e8" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 4072, - "op": "PUSH1", - "gas": 2992927, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbfc18", - "0x3e8", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0x0", - "0xae8", - "0x3e8", - "0x3e8", - "0x0", - "0xf69", - "0x3e8" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 4074, - "op": "DUP2", - "gas": 2992924, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbfc18", - "0x3e8", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0x0", - "0xae8", - "0x3e8", - "0x3e8", - "0x0", - "0xf69", - "0x3e8", - "0x0" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 4075, - "op": "SWAP1", - "gas": 2992921, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbfc18", - "0x3e8", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0x0", - "0xae8", - "0x3e8", - "0x3e8", - "0x0", - "0xf69", - "0x3e8", - "0x0", - "0x3e8" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 4076, - "op": "POP", - "gas": 2992918, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbfc18", - "0x3e8", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0x0", - "0xae8", - "0x3e8", - "0x3e8", - "0x0", - "0xf69", - "0x3e8", - "0x3e8", - "0x0" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 4077, - "op": "SWAP2", - "gas": 2992916, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbfc18", - "0x3e8", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0x0", - "0xae8", - "0x3e8", - "0x3e8", - "0x0", - "0xf69", - "0x3e8", - "0x3e8" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 4078, - "op": "SWAP1", - "gas": 2992913, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbfc18", - "0x3e8", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0x0", - "0xae8", - "0x3e8", - "0x3e8", - "0x0", - "0x3e8", - "0x3e8", - "0xf69" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 4079, - "op": "POP", - "gas": 2992910, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbfc18", - "0x3e8", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0x0", - "0xae8", - "0x3e8", - "0x3e8", - "0x0", - "0x3e8", - "0xf69", - "0x3e8" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 4080, - "op": "JUMP", - "gas": 2992908, - "gasCost": 8, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbfc18", - "0x3e8", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0x0", - "0xae8", - "0x3e8", - "0x3e8", - "0x0", - "0x3e8", - "0xf69" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 3945, - "op": "JUMPDEST", - "gas": 2992900, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbfc18", - "0x3e8", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0x0", - "0xae8", - "0x3e8", - "0x3e8", - "0x0", - "0x3e8" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 3946, - "op": "SWAP3", - "gas": 2992899, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbfc18", - "0x3e8", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0x0", - "0xae8", - "0x3e8", - "0x3e8", - "0x0", - "0x3e8" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 3947, - "op": "POP", - "gas": 2992896, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbfc18", - "0x3e8", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0x0", - "0xae8", - "0x3e8", - "0x3e8", - "0x0", - "0x3e8" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 3948, - "op": "DUP3", - "gas": 2992894, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbfc18", - "0x3e8", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0x0", - "0xae8", - "0x3e8", - "0x3e8", - "0x0" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 3949, - "op": "PUSH32", - "gas": 2992891, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbfc18", - "0x3e8", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0x0", - "0xae8", - "0x3e8", - "0x3e8", - "0x0", - "0x3e8" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 3982, - "op": "SUB", - "gas": 2992888, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbfc18", - "0x3e8", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0x0", - "0xae8", - "0x3e8", - "0x3e8", - "0x0", - "0x3e8", - "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 3983, - "op": "DUP3", - "gas": 2992885, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbfc18", - "0x3e8", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0x0", - "0xae8", - "0x3e8", - "0x3e8", - "0x0", - "0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc17" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 3984, - "op": "GT", - "gas": 2992882, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbfc18", - "0x3e8", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0x0", - "0xae8", - "0x3e8", - "0x3e8", - "0x0", - "0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc17", - "0x3e8" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 3985, - "op": "ISZERO", - "gas": 2992879, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbfc18", - "0x3e8", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0x0", - "0xae8", - "0x3e8", - "0x3e8", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 3986, - "op": "PUSH2", - "gas": 2992876, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbfc18", - "0x3e8", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0x0", - "0xae8", - "0x3e8", - "0x3e8", - "0x0", - "0x1" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 3989, - "op": "JUMPI", - "gas": 2992873, - "gasCost": 10, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbfc18", - "0x3e8", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0x0", - "0xae8", - "0x3e8", - "0x3e8", - "0x0", - "0x1", - "0xf9e" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 3998, - "op": "JUMPDEST", - "gas": 2992863, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbfc18", - "0x3e8", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0x0", - "0xae8", - "0x3e8", - "0x3e8", - "0x0" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 3999, - "op": "DUP3", - "gas": 2992862, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbfc18", - "0x3e8", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0x0", - "0xae8", - "0x3e8", - "0x3e8", - "0x0" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 4000, - "op": "DUP3", - "gas": 2992859, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbfc18", - "0x3e8", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0x0", - "0xae8", - "0x3e8", - "0x3e8", - "0x0", - "0x3e8" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 4001, - "op": "ADD", - "gas": 2992856, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbfc18", - "0x3e8", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0x0", - "0xae8", - "0x3e8", - "0x3e8", - "0x0", - "0x3e8", - "0x3e8" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 4002, - "op": "SWAP1", - "gas": 2992853, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbfc18", - "0x3e8", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0x0", - "0xae8", - "0x3e8", - "0x3e8", - "0x0", - "0x7d0" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 4003, - "op": "POP", - "gas": 2992850, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbfc18", - "0x3e8", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0x0", - "0xae8", - "0x3e8", - "0x3e8", - "0x7d0", - "0x0" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 4004, - "op": "SWAP3", - "gas": 2992848, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbfc18", - "0x3e8", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0x0", - "0xae8", - "0x3e8", - "0x3e8", - "0x7d0" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 4005, - "op": "SWAP2", - "gas": 2992845, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbfc18", - "0x3e8", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0x0", - "0x7d0", - "0x3e8", - "0x3e8", - "0xae8" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 4006, - "op": "POP", - "gas": 2992842, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbfc18", - "0x3e8", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0x0", - "0x7d0", - "0xae8", - "0x3e8", - "0x3e8" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 4007, - "op": "POP", - "gas": 2992840, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbfc18", - "0x3e8", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0x0", - "0x7d0", - "0xae8", - "0x3e8" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 4008, - "op": "JUMP", - "gas": 2992838, - "gasCost": 8, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbfc18", - "0x3e8", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0x0", - "0x7d0", - "0xae8" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2792, - "op": "JUMPDEST", - "gas": 2992830, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbfc18", - "0x3e8", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0x0", - "0x7d0" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2793, - "op": "SWAP3", - "gas": 2992829, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbfc18", - "0x3e8", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0x0", - "0x7d0" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2794, - "op": "POP", - "gas": 2992826, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbfc18", - "0x7d0", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0x0", - "0x3e8" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2795, - "op": "POP", - "gas": 2992824, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbfc18", - "0x7d0", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0x0" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2796, - "op": "DUP2", - "gas": 2992822, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbfc18", - "0x7d0", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2797, - "op": "SWAP1", - "gas": 2992819, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbfc18", - "0x7d0", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0x7d0" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2798, - "op": "SSTORE", - "gas": 2992816, - "gasCost": 2900, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbfc18", - "0x7d0", - "0x7d0", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0x5a158573daab1c353835da34297290f5f813859e4bb52de641691b875502523f": "0x00000000000000000000000000000000000000007f228daac38a51833dbbf830", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f": "0x00000000000000000000000000000000000000000000000000000000000007d0" - }, - "extraData": { - "proofList": [ - { - "address": "0xee0e03c1a621084ca3c542f36e4a5d0230304471", - "nonce": 1, - "balance": "0x0", - "codeHash": "0x178763dea206ad5ecfbf211ddeb69d930d18811bc617cb4bbb0c0e7f0d28a3aa", - "storage": { - "key": "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "value": "0x00000000000000000000000000000000000000000000000000000000000003e8" - } - } - ] - } - }, - { - "pc": 2799, - "op": "POP", - "gas": 2989916, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbfc18", - "0x7d0" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2800, - "op": "DUP3", - "gas": 2989914, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbfc18" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2801, - "op": "PUSH20", - "gas": 2989911, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", - "0x7f228daac38a51833dbbfc18", "0x8ba1f109551bd432803012645ac136ddd64dba72" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 2822, - "op": "AND", - "gas": 2989908, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbfc18", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0xffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2823, - "op": "DUP5", - "gas": 2989905, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbfc18", - "0x8ba1f109551bd432803012645ac136ddd64dba72" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2824, + "pc": 4187, "op": "PUSH20", - "gas": 2989902, + "gas": 2970025, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", - "0x7f228daac38a51833dbbfc18", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 2845, + "pc": 4208, "op": "AND", - "gas": 2989899, + "gas": 2970022, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", - "0x7f228daac38a51833dbbfc18", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 2846, + "pc": 4209, "op": "PUSH32", - "gas": 2989896, + "gas": 2970019, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", - "0x7f228daac38a51833dbbfc18", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 2879, - "op": "DUP5", - "gas": 2989893, + "pc": 4242, + "op": "DUP4", + "gas": 2970016, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", - "0x7f228daac38a51833dbbfc18", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 2880, + "pc": 4243, "op": "PUSH1", - "gas": 2989890, + "gas": 2970013, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", - "0x7f228daac38a51833dbbfc18", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", "0x3e8" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 2882, + "pc": 4245, "op": "MLOAD", - "gas": 2989887, + "gas": 2970010, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", - "0x7f228daac38a51833dbbfc18", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", "0x3e8", "0x40" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 2883, + "pc": 4246, "op": "PUSH2", - "gas": 2989884, + "gas": 2970007, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", - "0x7f228daac38a51833dbbfc18", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", "0x3e8", - "0x80" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0xe0" ] }, { - "pc": 2886, + "pc": 4249, "op": "SWAP2", - "gas": 2989881, + "gas": 2970004, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", - "0x7f228daac38a51833dbbfc18", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", "0x3e8", - "0x80", - "0xb4c" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0xe0", + "0x109f" ] }, { - "pc": 2887, + "pc": 4250, "op": "SWAP1", - "gas": 2989878, + "gas": 2970001, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", - "0x7f228daac38a51833dbbfc18", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0xb4c", - "0x80", + "0x109f", + "0xe0", "0x3e8" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 2888, + "pc": 4251, "op": "PUSH2", - "gas": 2989875, + "gas": 2969998, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", - "0x7f228daac38a51833dbbfc18", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0xb4c", + "0x109f", "0x3e8", - "0x80" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0xe0" ] }, { - "pc": 2891, + "pc": 4254, "op": "JUMP", - "gas": 2989872, + "gas": 2969995, "gasCost": 8, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", - "0x7f228daac38a51833dbbfc18", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0xb4c", + "0x109f", "0x3e8", - "0x80", - "0xf01" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0xe0", + "0x1bb7" ] }, { - "pc": 3841, + "pc": 7095, "op": "JUMPDEST", - "gas": 2989864, + "gas": 2969987, "gasCost": 1, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", - "0x7f228daac38a51833dbbfc18", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0xb4c", + "0x109f", "0x3e8", - "0x80" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0xe0" ] }, { - "pc": 3842, + "pc": 7096, "op": "PUSH1", - "gas": 2989863, + "gas": 2969986, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", - "0x7f228daac38a51833dbbfc18", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0xb4c", + "0x109f", "0x3e8", - "0x80" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0xe0" ] }, { - "pc": 3844, + "pc": 7098, "op": "PUSH1", - "gas": 2989860, + "gas": 2969983, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", - "0x7f228daac38a51833dbbfc18", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0xb4c", + "0x109f", "0x3e8", - "0x80", + "0xe0", "0x0" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 3846, + "pc": 7100, "op": "DUP3", - "gas": 2989857, + "gas": 2969980, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", - "0x7f228daac38a51833dbbfc18", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0xb4c", + "0x109f", "0x3e8", - "0x80", + "0xe0", "0x0", "0x20" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 3847, + "pc": 7101, "op": "ADD", - "gas": 2989854, + "gas": 2969977, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", - "0x7f228daac38a51833dbbfc18", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0xb4c", + "0x109f", "0x3e8", - "0x80", + "0xe0", "0x0", "0x20", - "0x80" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0xe0" ] }, { - "pc": 3848, + "pc": 7102, "op": "SWAP1", - "gas": 2989851, + "gas": 2969974, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", - "0x7f228daac38a51833dbbfc18", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0xb4c", + "0x109f", "0x3e8", - "0x80", + "0xe0", "0x0", - "0xa0" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x100" ] }, { - "pc": 3849, + "pc": 7103, "op": "POP", - "gas": 2989848, + "gas": 2969971, "gasCost": 2, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", - "0x7f228daac38a51833dbbfc18", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0xb4c", + "0x109f", "0x3e8", - "0x80", - "0xa0", + "0xe0", + "0x100", "0x0" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 3850, + "pc": 7104, "op": "PUSH2", - "gas": 2989846, + "gas": 2969969, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", - "0x7f228daac38a51833dbbfc18", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0xb4c", + "0x109f", "0x3e8", - "0x80", - "0xa0" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0xe0", + "0x100" ] }, { - "pc": 3853, + "pc": 7107, "op": "PUSH1", - "gas": 2989843, + "gas": 2969966, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", - "0x7f228daac38a51833dbbfc18", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0xb4c", + "0x109f", "0x3e8", - "0x80", - "0xa0", - "0xf16" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0xe0", + "0x100", + "0x1bcc" ] }, { - "pc": 3855, + "pc": 7109, "op": "DUP4", - "gas": 2989840, + "gas": 2969963, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", - "0x7f228daac38a51833dbbfc18", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0xb4c", + "0x109f", "0x3e8", - "0x80", - "0xa0", - "0xf16", + "0xe0", + "0x100", + "0x1bcc", "0x0" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 3856, + "pc": 7110, "op": "ADD", - "gas": 2989837, + "gas": 2969960, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", - "0x7f228daac38a51833dbbfc18", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0xb4c", + "0x109f", "0x3e8", - "0x80", - "0xa0", - "0xf16", + "0xe0", + "0x100", + "0x1bcc", "0x0", - "0x80" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0xe0" ] }, { - "pc": 3857, + "pc": 7111, "op": "DUP5", - "gas": 2989834, + "gas": 2969957, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", - "0x7f228daac38a51833dbbfc18", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0xb4c", + "0x109f", "0x3e8", - "0x80", - "0xa0", - "0xf16", - "0x80" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0xe0", + "0x100", + "0x1bcc", + "0xe0" ] }, { - "pc": 3858, + "pc": 7112, "op": "PUSH2", - "gas": 2989831, + "gas": 2969954, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", - "0x7f228daac38a51833dbbfc18", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0xb4c", + "0x109f", "0x3e8", - "0x80", - "0xa0", - "0xf16", - "0x80", + "0xe0", + "0x100", + "0x1bcc", + "0xe0", "0x3e8" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 3861, + "pc": 7115, "op": "JUMP", - "gas": 2989828, + "gas": 2969951, "gasCost": 8, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", - "0x7f228daac38a51833dbbfc18", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0xb4c", + "0x109f", "0x3e8", - "0x80", - "0xa0", - "0xf16", - "0x80", + "0xe0", + "0x100", + "0x1bcc", + "0xe0", "0x3e8", - "0xdc6" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x19c1" ] }, { - "pc": 3526, + "pc": 6593, "op": "JUMPDEST", - "gas": 2989820, + "gas": 2969943, "gasCost": 1, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", - "0x7f228daac38a51833dbbfc18", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0xb4c", + "0x109f", "0x3e8", - "0x80", - "0xa0", - "0xf16", - "0x80", + "0xe0", + "0x100", + "0x1bcc", + "0xe0", "0x3e8" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 3527, + "pc": 6594, "op": "PUSH2", - "gas": 2989819, + "gas": 2969942, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", - "0x7f228daac38a51833dbbfc18", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0xb4c", + "0x109f", "0x3e8", - "0x80", - "0xa0", - "0xf16", - "0x80", + "0xe0", + "0x100", + "0x1bcc", + "0xe0", "0x3e8" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 3530, + "pc": 6597, "op": "DUP2", - "gas": 2989816, + "gas": 2969939, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", - "0x7f228daac38a51833dbbfc18", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0xb4c", + "0x109f", "0x3e8", - "0x80", - "0xa0", - "0xf16", - "0x80", + "0xe0", + "0x100", + "0x1bcc", + "0xe0", "0x3e8", - "0xdcf" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x19ca" ] }, { - "pc": 3531, + "pc": 6598, "op": "PUSH2", - "gas": 2989813, + "gas": 2969936, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", - "0x7f228daac38a51833dbbfc18", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0xb4c", + "0x109f", "0x3e8", - "0x80", - "0xa0", - "0xf16", - "0x80", + "0xe0", + "0x100", + "0x1bcc", + "0xe0", "0x3e8", - "0xdcf", + "0x19ca", "0x3e8" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 3534, + "pc": 6601, "op": "JUMP", - "gas": 2989810, + "gas": 2969933, "gasCost": 8, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", - "0x7f228daac38a51833dbbfc18", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0xb4c", + "0x109f", "0x3e8", - "0x80", - "0xa0", - "0xf16", - "0x80", + "0xe0", + "0x100", + "0x1bcc", + "0xe0", "0x3e8", - "0xdcf", + "0x19ca", "0x3e8", - "0xfe7" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x1cd1" ] }, { - "pc": 4071, + "pc": 7377, "op": "JUMPDEST", - "gas": 2989802, + "gas": 2969925, "gasCost": 1, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", - "0x7f228daac38a51833dbbfc18", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0xb4c", + "0x109f", "0x3e8", - "0x80", - "0xa0", - "0xf16", - "0x80", + "0xe0", + "0x100", + "0x1bcc", + "0xe0", "0x3e8", - "0xdcf", + "0x19ca", "0x3e8" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 4072, + "pc": 7378, "op": "PUSH1", - "gas": 2989801, + "gas": 2969924, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", - "0x7f228daac38a51833dbbfc18", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0xb4c", + "0x109f", "0x3e8", - "0x80", - "0xa0", - "0xf16", - "0x80", + "0xe0", + "0x100", + "0x1bcc", + "0xe0", "0x3e8", - "0xdcf", + "0x19ca", "0x3e8" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 4074, + "pc": 7380, "op": "DUP2", - "gas": 2989798, + "gas": 2969921, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", - "0x7f228daac38a51833dbbfc18", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0xb4c", + "0x109f", "0x3e8", - "0x80", - "0xa0", - "0xf16", - "0x80", + "0xe0", + "0x100", + "0x1bcc", + "0xe0", "0x3e8", - "0xdcf", + "0x19ca", "0x3e8", "0x0" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 4075, + "pc": 7381, "op": "SWAP1", - "gas": 2989795, + "gas": 2969918, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", - "0x7f228daac38a51833dbbfc18", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0xb4c", + "0x109f", "0x3e8", - "0x80", - "0xa0", - "0xf16", - "0x80", + "0xe0", + "0x100", + "0x1bcc", + "0xe0", "0x3e8", - "0xdcf", + "0x19ca", "0x3e8", "0x0", "0x3e8" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 4076, + "pc": 7382, "op": "POP", - "gas": 2989792, + "gas": 2969915, "gasCost": 2, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", - "0x7f228daac38a51833dbbfc18", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0xb4c", + "0x109f", "0x3e8", - "0x80", - "0xa0", - "0xf16", - "0x80", + "0xe0", + "0x100", + "0x1bcc", + "0xe0", "0x3e8", - "0xdcf", + "0x19ca", "0x3e8", "0x3e8", "0x0" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 4077, + "pc": 7383, "op": "SWAP2", - "gas": 2989790, + "gas": 2969913, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", - "0x7f228daac38a51833dbbfc18", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0xb4c", + "0x109f", "0x3e8", - "0x80", - "0xa0", - "0xf16", - "0x80", + "0xe0", + "0x100", + "0x1bcc", + "0xe0", "0x3e8", - "0xdcf", + "0x19ca", "0x3e8", "0x3e8" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 4078, + "pc": 7384, "op": "SWAP1", - "gas": 2989787, + "gas": 2969910, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", - "0x7f228daac38a51833dbbfc18", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0xb4c", + "0x109f", "0x3e8", - "0x80", - "0xa0", - "0xf16", - "0x80", + "0xe0", + "0x100", + "0x1bcc", + "0xe0", "0x3e8", "0x3e8", "0x3e8", - "0xdcf" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x19ca" ] }, { - "pc": 4079, + "pc": 7385, "op": "POP", - "gas": 2989784, + "gas": 2969907, "gasCost": 2, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", - "0x7f228daac38a51833dbbfc18", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0xb4c", + "0x109f", "0x3e8", - "0x80", - "0xa0", - "0xf16", - "0x80", + "0xe0", + "0x100", + "0x1bcc", + "0xe0", "0x3e8", "0x3e8", - "0xdcf", + "0x19ca", "0x3e8" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 4080, + "pc": 7386, "op": "JUMP", - "gas": 2989782, + "gas": 2969905, "gasCost": 8, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", - "0x7f228daac38a51833dbbfc18", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0xb4c", + "0x109f", "0x3e8", - "0x80", - "0xa0", - "0xf16", - "0x80", + "0xe0", + "0x100", + "0x1bcc", + "0xe0", "0x3e8", "0x3e8", - "0xdcf" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" + "0x19ca" ] }, { - "pc": 3535, + "pc": 6602, "op": "JUMPDEST", - "gas": 2989774, + "gas": 2969897, "gasCost": 1, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", - "0x7f228daac38a51833dbbfc18", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0xb4c", + "0x109f", "0x3e8", - "0x80", - "0xa0", - "0xf16", - "0x80", + "0xe0", + "0x100", + "0x1bcc", + "0xe0", "0x3e8", "0x3e8" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 3536, + "pc": 6603, "op": "DUP3", - "gas": 2989773, + "gas": 2969896, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", - "0x7f228daac38a51833dbbfc18", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0xb4c", + "0x109f", "0x3e8", - "0x80", - "0xa0", - "0xf16", - "0x80", + "0xe0", + "0x100", + "0x1bcc", + "0xe0", "0x3e8", "0x3e8" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" ] }, { - "pc": 3537, + "pc": 6604, "op": "MSTORE", - "gas": 2989770, - "gasCost": 9, + "gas": 2969893, + "gasCost": 6, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", - "0x7f228daac38a51833dbbfc18", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0xb4c", + "0x109f", "0x3e8", - "0x80", - "0xa0", - "0xf16", - "0x80", + "0xe0", + "0x100", + "0x1bcc", + "0xe0", "0x3e8", "0x3e8", - "0x80" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" + "0xe0" ] }, { - "pc": 3538, + "pc": 6605, "op": "POP", - "gas": 2989761, + "gas": 2969887, "gasCost": 2, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", - "0x7f228daac38a51833dbbfc18", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0xb4c", + "0x109f", "0x3e8", - "0x80", - "0xa0", - "0xf16", - "0x80", + "0xe0", + "0x100", + "0x1bcc", + "0xe0", "0x3e8" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" ] }, { - "pc": 3539, + "pc": 6606, "op": "POP", - "gas": 2989759, + "gas": 2969885, "gasCost": 2, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", - "0x7f228daac38a51833dbbfc18", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0xb4c", + "0x109f", "0x3e8", - "0x80", - "0xa0", - "0xf16", - "0x80" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" + "0xe0", + "0x100", + "0x1bcc", + "0xe0" ] }, { - "pc": 3540, + "pc": 6607, "op": "JUMP", - "gas": 2989757, + "gas": 2969883, "gasCost": 8, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", - "0x7f228daac38a51833dbbfc18", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0xb4c", + "0x109f", "0x3e8", - "0x80", - "0xa0", - "0xf16" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" + "0xe0", + "0x100", + "0x1bcc" ] }, { - "pc": 3862, + "pc": 7116, "op": "JUMPDEST", - "gas": 2989749, + "gas": 2969875, "gasCost": 1, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", - "0x7f228daac38a51833dbbfc18", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0xb4c", + "0x109f", "0x3e8", - "0x80", - "0xa0" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" + "0xe0", + "0x100" ] }, { - "pc": 3863, + "pc": 7117, "op": "SWAP3", - "gas": 2989748, + "gas": 2969874, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", - "0x7f228daac38a51833dbbfc18", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0xb4c", + "0x109f", "0x3e8", - "0x80", - "0xa0" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" + "0xe0", + "0x100" ] }, { - "pc": 3864, + "pc": 7118, "op": "SWAP2", - "gas": 2989745, + "gas": 2969871, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", - "0x7f228daac38a51833dbbfc18", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0xa0", + "0x100", "0x3e8", - "0x80", - "0xb4c" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" + "0xe0", + "0x109f" ] }, { - "pc": 3865, + "pc": 7119, "op": "POP", - "gas": 2989742, + "gas": 2969868, "gasCost": 2, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", - "0x7f228daac38a51833dbbfc18", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0xa0", - "0xb4c", - "0x80", + "0x100", + "0x109f", + "0xe0", "0x3e8" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" ] }, { - "pc": 3866, + "pc": 7120, "op": "POP", - "gas": 2989740, + "gas": 2969866, "gasCost": 2, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", - "0x7f228daac38a51833dbbfc18", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0xa0", - "0xb4c", - "0x80" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" + "0x100", + "0x109f", + "0xe0" ] }, { - "pc": 3867, + "pc": 7121, "op": "JUMP", - "gas": 2989738, + "gas": 2969864, "gasCost": 8, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", - "0x7f228daac38a51833dbbfc18", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0xa0", - "0xb4c" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" + "0x100", + "0x109f" ] }, { - "pc": 2892, + "pc": 4255, "op": "JUMPDEST", - "gas": 2989730, + "gas": 2969856, "gasCost": 1, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", - "0x7f228daac38a51833dbbfc18", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0xa0" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" + "0x100" ] }, { - "pc": 2893, + "pc": 4256, "op": "PUSH1", - "gas": 2989729, + "gas": 2969855, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", - "0x7f228daac38a51833dbbfc18", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0xa0" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" + "0x100" ] }, { - "pc": 2895, + "pc": 4258, "op": "MLOAD", - "gas": 2989726, + "gas": 2969852, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", - "0x7f228daac38a51833dbbfc18", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0xa0", + "0x100", "0x40" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" ] }, { - "pc": 2896, + "pc": 4259, "op": "DUP1", - "gas": 2989723, + "gas": 2969849, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", - "0x7f228daac38a51833dbbfc18", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0xa0", - "0x80" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" + "0x100", + "0xe0" ] }, { - "pc": 2897, + "pc": 4260, "op": "SWAP2", - "gas": 2989720, + "gas": 2969846, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", - "0x7f228daac38a51833dbbfc18", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0xa0", - "0x80", - "0x80" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" + "0x100", + "0xe0", + "0xe0" ] }, { - "pc": 2898, + "pc": 4261, "op": "SUB", - "gas": 2989717, + "gas": 2969843, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", - "0x7f228daac38a51833dbbfc18", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0x80", - "0x80", - "0xa0" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" + "0xe0", + "0xe0", + "0x100" ] }, { - "pc": 2899, + "pc": 4262, "op": "SWAP1", - "gas": 2989714, + "gas": 2969840, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", - "0x7f228daac38a51833dbbfc18", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0x80", + "0xe0", "0x20" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" ] }, { - "pc": 2900, + "pc": 4263, "op": "LOG3", - "gas": 2989711, + "gas": 2969837, "gasCost": 1756, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", - "0x7f228daac38a51833dbbfc18", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", "0x20", - "0x80" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" + "0xe0" ] }, { - "pc": 2901, - "op": "PUSH2", - "gas": 2987955, - "gasCost": 3, + "pc": 4264, + "op": "POP", + "gas": 2968081, + "gasCost": 2, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbfc18" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" - ] - }, - { - "pc": 2904, - "op": "DUP5", - "gas": 2987952, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbfc18", - "0xb5f" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" - ] - }, - { - "pc": 2905, - "op": "DUP5", - "gas": 2987949, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbfc18", - "0xb5f", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" - ] - }, - { - "pc": 2906, - "op": "DUP5", - "gas": 2987946, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbfc18", - "0xb5f", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" - ] - }, - { - "pc": 2907, - "op": "PUSH2", - "gas": 2987943, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbfc18", - "0xb5f", + "0xbb3", "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" ] }, { - "pc": 2910, + "pc": 4265, + "op": "POP", + "gas": 2968079, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", + "0x8ba1f109551bd432803012645ac136ddd64dba72" + ] + }, + { + "pc": 4266, + "op": "POP", + "gas": 2968077, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0xbb3", + "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" + ] + }, + { + "pc": 4267, "op": "JUMP", - "gas": 2987940, + "gas": 2968075, "gasCost": 8, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbfc18", - "0xb5f", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0xb6a" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" + "0xbb3" ] }, { - "pc": 2922, + "pc": 2995, "op": "JUMPDEST", - "gas": 2987932, + "gas": 2968067, "gasCost": 1, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbfc18", - "0xb5f", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" - ] - }, - { - "pc": 2923, - "op": "POP", - "gas": 2987931, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbfc18", - "0xb5f", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" - ] - }, - { - "pc": 2924, - "op": "POP", - "gas": 2987929, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbfc18", - "0xb5f", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" - ] - }, - { - "pc": 2925, - "op": "POP", - "gas": 2987927, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbfc18", - "0xb5f", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" - ] - }, - { - "pc": 2926, - "op": "JUMP", - "gas": 2987925, - "gasCost": 8, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbfc18", - "0xb5f" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" - ] - }, - { - "pc": 2911, - "op": "JUMPDEST", - "gas": 2987917, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbfc18" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" - ] - }, - { - "pc": 2912, - "op": "POP", - "gas": 2987916, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbfc18" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" - ] - }, - { - "pc": 2913, - "op": "POP", - "gas": 2987914, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" - ] - }, - { - "pc": 2914, - "op": "POP", - "gas": 2987912, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" - ] - }, - { - "pc": 2915, - "op": "POP", - "gas": 2987910, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" - ] - }, - { - "pc": 2916, - "op": "JUMP", - "gas": 2987908, - "gasCost": 8, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" - ] - }, - { - "pc": 1523, - "op": "JUMPDEST", - "gas": 2987900, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" - ] - }, - { - "pc": 1524, - "op": "PUSH1", - "gas": 2987899, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" - ] - }, - { - "pc": 1526, - "op": "SWAP2", - "gas": 2987896, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" - ] - }, - { - "pc": 1527, - "op": "POP", - "gas": 2987893, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x1", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", "0x0" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" ] }, { - "pc": 1528, - "op": "POP", - "gas": 2987891, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x1", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" - ] - }, - { - "pc": 1529, - "op": "SWAP3", - "gas": 2987889, + "pc": 2996, + "op": "PUSH1", + "gas": 2968066, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x230", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0" + ] + }, + { + "pc": 2998, + "op": "SWAP1", + "gas": 2968063, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x0", + "0x1" + ] + }, + { + "pc": 2999, + "op": "POP", + "gas": 2968060, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", + "0x8ba1f109551bd432803012645ac136ddd64dba72", + "0x3e8", + "0x1", + "0x0" + ] + }, + { + "pc": 3000, + "op": "SWAP3", + "gas": 2968058, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa9059cbb", + "0x318", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", "0x1" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" ] }, { - "pc": 1530, + "pc": 3001, "op": "SWAP2", - "gas": 2987886, + "gas": 2968055, "gasCost": 3, "depth": 1, "stack": [ @@ -13208,1385 +14666,951 @@ "0x1", "0x8ba1f109551bd432803012645ac136ddd64dba72", "0x3e8", - "0x230" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" + "0x318" ] }, { - "pc": 1531, + "pc": 3002, "op": "POP", - "gas": 2987883, + "gas": 2968052, "gasCost": 2, "depth": 1, "stack": [ "0xa9059cbb", "0x1", - "0x230", + "0x318", "0x3e8", "0x8ba1f109551bd432803012645ac136ddd64dba72" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" ] }, { - "pc": 1532, + "pc": 3003, "op": "POP", - "gas": 2987881, + "gas": 2968050, "gasCost": 2, "depth": 1, "stack": [ "0xa9059cbb", "0x1", - "0x230", + "0x318", "0x3e8" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" ] }, { - "pc": 1533, + "pc": 3004, "op": "JUMP", - "gas": 2987879, + "gas": 2968048, "gasCost": 8, "depth": 1, "stack": [ "0xa9059cbb", "0x1", - "0x230" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" + "0x318" ] }, { - "pc": 560, + "pc": 792, "op": "JUMPDEST", - "gas": 2987871, + "gas": 2968040, "gasCost": 1, "depth": 1, "stack": [ "0xa9059cbb", "0x1" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" ] }, { - "pc": 561, + "pc": 793, "op": "PUSH1", - "gas": 2987870, + "gas": 2968039, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", "0x1" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" ] }, { - "pc": 563, + "pc": 795, "op": "MLOAD", - "gas": 2987867, + "gas": 2968036, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", "0x1", "0x40" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" ] }, { - "pc": 564, + "pc": 796, "op": "PUSH2", - "gas": 2987864, + "gas": 2968033, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", "0x1", - "0x80" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" + "0xe0" ] }, { - "pc": 567, + "pc": 799, "op": "SWAP2", - "gas": 2987861, + "gas": 2968030, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", "0x1", - "0x80", - "0x23d" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" + "0xe0", + "0x325" ] }, { - "pc": 568, + "pc": 800, "op": "SWAP1", - "gas": 2987858, + "gas": 2968027, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x23d", - "0x80", + "0x325", + "0xe0", "0x1" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" ] }, { - "pc": 569, + "pc": 801, "op": "PUSH2", - "gas": 2987855, + "gas": 2968024, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x23d", + "0x325", "0x1", - "0x80" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" + "0xe0" ] }, { - "pc": 572, + "pc": 804, "op": "JUMP", - "gas": 2987852, + "gas": 2968021, "gasCost": 8, "depth": 1, "stack": [ "0xa9059cbb", - "0x23d", + "0x325", "0x1", - "0x80", - "0xde4" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" + "0xe0", + "0x19fa" ] }, { - "pc": 3556, + "pc": 6650, "op": "JUMPDEST", - "gas": 2987844, + "gas": 2968013, "gasCost": 1, "depth": 1, "stack": [ "0xa9059cbb", - "0x23d", + "0x325", "0x1", - "0x80" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" + "0xe0" ] }, { - "pc": 3557, + "pc": 6651, "op": "PUSH1", - "gas": 2987843, + "gas": 2968012, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x23d", + "0x325", "0x1", - "0x80" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" + "0xe0" ] }, { - "pc": 3559, + "pc": 6653, "op": "PUSH1", - "gas": 2987840, + "gas": 2968009, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x23d", + "0x325", "0x1", - "0x80", + "0xe0", "0x0" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" ] }, { - "pc": 3561, + "pc": 6655, "op": "DUP3", - "gas": 2987837, + "gas": 2968006, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x23d", + "0x325", "0x1", - "0x80", + "0xe0", "0x0", "0x20" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" ] }, { - "pc": 3562, + "pc": 6656, "op": "ADD", - "gas": 2987834, + "gas": 2968003, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x23d", + "0x325", "0x1", - "0x80", + "0xe0", "0x0", "0x20", - "0x80" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" + "0xe0" ] }, { - "pc": 3563, + "pc": 6657, "op": "SWAP1", - "gas": 2987831, + "gas": 2968000, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x23d", + "0x325", "0x1", - "0x80", + "0xe0", "0x0", - "0xa0" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" + "0x100" ] }, { - "pc": 3564, + "pc": 6658, "op": "POP", - "gas": 2987828, + "gas": 2967997, "gasCost": 2, "depth": 1, "stack": [ "0xa9059cbb", - "0x23d", + "0x325", "0x1", - "0x80", - "0xa0", + "0xe0", + "0x100", "0x0" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" ] }, { - "pc": 3565, + "pc": 6659, "op": "PUSH2", - "gas": 2987826, + "gas": 2967995, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x23d", + "0x325", "0x1", - "0x80", - "0xa0" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" + "0xe0", + "0x100" ] }, { - "pc": 3568, + "pc": 6662, "op": "PUSH1", - "gas": 2987823, + "gas": 2967992, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x23d", + "0x325", "0x1", - "0x80", - "0xa0", - "0xdf9" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" + "0xe0", + "0x100", + "0x1a0f" ] }, { - "pc": 3570, + "pc": 6664, "op": "DUP4", - "gas": 2987820, + "gas": 2967989, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x23d", + "0x325", "0x1", - "0x80", - "0xa0", - "0xdf9", + "0xe0", + "0x100", + "0x1a0f", "0x0" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" ] }, { - "pc": 3571, + "pc": 6665, "op": "ADD", - "gas": 2987817, + "gas": 2967986, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x23d", + "0x325", "0x1", - "0x80", - "0xa0", - "0xdf9", + "0xe0", + "0x100", + "0x1a0f", "0x0", - "0x80" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" + "0xe0" ] }, { - "pc": 3572, + "pc": 6666, "op": "DUP5", - "gas": 2987814, + "gas": 2967983, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x23d", + "0x325", "0x1", - "0x80", - "0xa0", - "0xdf9", - "0x80" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" + "0xe0", + "0x100", + "0x1a0f", + "0xe0" ] }, { - "pc": 3573, + "pc": 6667, "op": "PUSH2", - "gas": 2987811, + "gas": 2967980, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x23d", + "0x325", "0x1", - "0x80", - "0xa0", - "0xdf9", - "0x80", + "0xe0", + "0x100", + "0x1a0f", + "0xe0", "0x1" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" ] }, { - "pc": 3576, + "pc": 6670, "op": "JUMP", - "gas": 2987808, + "gas": 2967977, "gasCost": 8, "depth": 1, "stack": [ "0xa9059cbb", - "0x23d", + "0x325", "0x1", - "0x80", - "0xa0", - "0xdf9", - "0x80", + "0xe0", + "0x100", + "0x1a0f", + "0xe0", "0x1", - "0xc89" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" + "0x17d5" ] }, { - "pc": 3209, + "pc": 6101, "op": "JUMPDEST", - "gas": 2987800, + "gas": 2967969, "gasCost": 1, "depth": 1, "stack": [ "0xa9059cbb", - "0x23d", + "0x325", "0x1", - "0x80", - "0xa0", - "0xdf9", - "0x80", + "0xe0", + "0x100", + "0x1a0f", + "0xe0", "0x1" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" ] }, { - "pc": 3210, + "pc": 6102, "op": "PUSH2", - "gas": 2987799, + "gas": 2967968, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x23d", + "0x325", "0x1", - "0x80", - "0xa0", - "0xdf9", - "0x80", + "0xe0", + "0x100", + "0x1a0f", + "0xe0", "0x1" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" ] }, { - "pc": 3213, + "pc": 6105, "op": "DUP2", - "gas": 2987796, + "gas": 2967965, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x23d", + "0x325", "0x1", - "0x80", - "0xa0", - "0xdf9", - "0x80", + "0xe0", + "0x100", + "0x1a0f", + "0xe0", "0x1", - "0xc92" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" + "0x17de" ] }, { - "pc": 3214, + "pc": 6106, "op": "PUSH2", - "gas": 2987793, + "gas": 2967962, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x23d", + "0x325", "0x1", - "0x80", - "0xa0", - "0xdf9", - "0x80", + "0xe0", + "0x100", + "0x1a0f", + "0xe0", "0x1", - "0xc92", + "0x17de", "0x1" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" ] }, { - "pc": 3217, + "pc": 6109, "op": "JUMP", - "gas": 2987790, + "gas": 2967959, "gasCost": 8, "depth": 1, "stack": [ "0xa9059cbb", - "0x23d", + "0x325", "0x1", - "0x80", - "0xa0", - "0xdf9", - "0x80", + "0xe0", + "0x100", + "0x1a0f", + "0xe0", "0x1", - "0xc92", + "0x17de", "0x1", - "0xfbb" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" + "0x1ca5" ] }, { - "pc": 4027, + "pc": 7333, "op": "JUMPDEST", - "gas": 2987782, + "gas": 2967951, "gasCost": 1, "depth": 1, "stack": [ "0xa9059cbb", - "0x23d", + "0x325", "0x1", - "0x80", - "0xa0", - "0xdf9", - "0x80", + "0xe0", + "0x100", + "0x1a0f", + "0xe0", "0x1", - "0xc92", + "0x17de", "0x1" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" ] }, { - "pc": 4028, + "pc": 7334, "op": "PUSH1", - "gas": 2987781, + "gas": 2967950, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x23d", + "0x325", "0x1", - "0x80", - "0xa0", - "0xdf9", - "0x80", + "0xe0", + "0x100", + "0x1a0f", + "0xe0", "0x1", - "0xc92", + "0x17de", "0x1" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" ] }, { - "pc": 4030, + "pc": 7336, "op": "DUP2", - "gas": 2987778, + "gas": 2967947, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x23d", + "0x325", "0x1", - "0x80", - "0xa0", - "0xdf9", - "0x80", + "0xe0", + "0x100", + "0x1a0f", + "0xe0", "0x1", - "0xc92", + "0x17de", "0x1", "0x0" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" ] }, { - "pc": 4031, + "pc": 7337, "op": "ISZERO", - "gas": 2987775, + "gas": 2967944, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x23d", + "0x325", "0x1", - "0x80", - "0xa0", - "0xdf9", - "0x80", + "0xe0", + "0x100", + "0x1a0f", + "0xe0", "0x1", - "0xc92", + "0x17de", "0x1", "0x0", "0x1" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" ] }, { - "pc": 4032, + "pc": 7338, "op": "ISZERO", - "gas": 2987772, + "gas": 2967941, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x23d", + "0x325", "0x1", - "0x80", - "0xa0", - "0xdf9", - "0x80", + "0xe0", + "0x100", + "0x1a0f", + "0xe0", "0x1", - "0xc92", + "0x17de", "0x1", "0x0", "0x0" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" ] }, { - "pc": 4033, + "pc": 7339, "op": "SWAP1", - "gas": 2987769, + "gas": 2967938, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x23d", + "0x325", "0x1", - "0x80", - "0xa0", - "0xdf9", - "0x80", + "0xe0", + "0x100", + "0x1a0f", + "0xe0", "0x1", - "0xc92", + "0x17de", "0x1", "0x0", "0x1" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" ] }, { - "pc": 4034, + "pc": 7340, "op": "POP", - "gas": 2987766, + "gas": 2967935, "gasCost": 2, "depth": 1, "stack": [ "0xa9059cbb", - "0x23d", + "0x325", "0x1", - "0x80", - "0xa0", - "0xdf9", - "0x80", + "0xe0", + "0x100", + "0x1a0f", + "0xe0", "0x1", - "0xc92", + "0x17de", "0x1", "0x1", "0x0" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" ] }, { - "pc": 4035, + "pc": 7341, "op": "SWAP2", - "gas": 2987764, + "gas": 2967933, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x23d", + "0x325", "0x1", - "0x80", - "0xa0", - "0xdf9", - "0x80", + "0xe0", + "0x100", + "0x1a0f", + "0xe0", "0x1", - "0xc92", + "0x17de", "0x1", "0x1" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" ] }, { - "pc": 4036, + "pc": 7342, "op": "SWAP1", - "gas": 2987761, + "gas": 2967930, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x23d", + "0x325", "0x1", - "0x80", - "0xa0", - "0xdf9", - "0x80", + "0xe0", + "0x100", + "0x1a0f", + "0xe0", "0x1", "0x1", "0x1", - "0xc92" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" + "0x17de" ] }, { - "pc": 4037, + "pc": 7343, "op": "POP", - "gas": 2987758, + "gas": 2967927, "gasCost": 2, "depth": 1, "stack": [ "0xa9059cbb", - "0x23d", + "0x325", "0x1", - "0x80", - "0xa0", - "0xdf9", - "0x80", + "0xe0", + "0x100", + "0x1a0f", + "0xe0", "0x1", "0x1", - "0xc92", + "0x17de", "0x1" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" ] }, { - "pc": 4038, + "pc": 7344, "op": "JUMP", - "gas": 2987756, + "gas": 2967925, "gasCost": 8, "depth": 1, "stack": [ "0xa9059cbb", - "0x23d", + "0x325", "0x1", - "0x80", - "0xa0", - "0xdf9", - "0x80", + "0xe0", + "0x100", + "0x1a0f", + "0xe0", "0x1", "0x1", - "0xc92" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" + "0x17de" ] }, { - "pc": 3218, + "pc": 6110, "op": "JUMPDEST", - "gas": 2987748, + "gas": 2967917, "gasCost": 1, "depth": 1, "stack": [ "0xa9059cbb", - "0x23d", + "0x325", "0x1", - "0x80", - "0xa0", - "0xdf9", - "0x80", + "0xe0", + "0x100", + "0x1a0f", + "0xe0", "0x1", "0x1" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" ] }, { - "pc": 3219, + "pc": 6111, "op": "DUP3", - "gas": 2987747, + "gas": 2967916, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x23d", + "0x325", "0x1", - "0x80", - "0xa0", - "0xdf9", - "0x80", + "0xe0", + "0x100", + "0x1a0f", + "0xe0", "0x1", "0x1" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" ] }, { - "pc": 3220, + "pc": 6112, "op": "MSTORE", - "gas": 2987744, + "gas": 2967913, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x23d", + "0x325", "0x1", - "0x80", - "0xa0", - "0xdf9", - "0x80", + "0xe0", + "0x100", + "0x1a0f", + "0xe0", "0x1", "0x1", - "0x80" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" + "0xe0" ] }, { - "pc": 3221, + "pc": 6113, "op": "POP", - "gas": 2987741, + "gas": 2967910, "gasCost": 2, "depth": 1, "stack": [ "0xa9059cbb", - "0x23d", + "0x325", "0x1", - "0x80", - "0xa0", - "0xdf9", - "0x80", + "0xe0", + "0x100", + "0x1a0f", + "0xe0", "0x1" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" ] }, { - "pc": 3222, + "pc": 6114, "op": "POP", - "gas": 2987739, + "gas": 2967908, "gasCost": 2, "depth": 1, "stack": [ "0xa9059cbb", - "0x23d", + "0x325", "0x1", - "0x80", - "0xa0", - "0xdf9", - "0x80" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" + "0xe0", + "0x100", + "0x1a0f", + "0xe0" ] }, { - "pc": 3223, + "pc": 6115, "op": "JUMP", - "gas": 2987737, + "gas": 2967906, "gasCost": 8, "depth": 1, "stack": [ "0xa9059cbb", - "0x23d", + "0x325", "0x1", - "0x80", - "0xa0", - "0xdf9" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" + "0xe0", + "0x100", + "0x1a0f" ] }, { - "pc": 3577, + "pc": 6671, "op": "JUMPDEST", - "gas": 2987729, + "gas": 2967898, "gasCost": 1, "depth": 1, "stack": [ "0xa9059cbb", - "0x23d", + "0x325", "0x1", - "0x80", - "0xa0" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" + "0xe0", + "0x100" ] }, { - "pc": 3578, + "pc": 6672, "op": "SWAP3", - "gas": 2987728, + "gas": 2967897, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x23d", + "0x325", "0x1", - "0x80", - "0xa0" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" + "0xe0", + "0x100" ] }, { - "pc": 3579, + "pc": 6673, "op": "SWAP2", - "gas": 2987725, + "gas": 2967894, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0xa0", + "0x100", "0x1", - "0x80", - "0x23d" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" + "0xe0", + "0x325" ] }, { - "pc": 3580, + "pc": 6674, "op": "POP", - "gas": 2987722, + "gas": 2967891, "gasCost": 2, "depth": 1, "stack": [ "0xa9059cbb", - "0xa0", - "0x23d", - "0x80", + "0x100", + "0x325", + "0xe0", "0x1" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" ] }, { - "pc": 3581, + "pc": 6675, "op": "POP", - "gas": 2987720, + "gas": 2967889, "gasCost": 2, "depth": 1, "stack": [ "0xa9059cbb", - "0xa0", - "0x23d", - "0x80" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x100", + "0x325", + "0xe0" ] }, { - "pc": 3582, + "pc": 6676, "op": "JUMP", - "gas": 2987718, + "gas": 2967887, "gasCost": 8, "depth": 1, "stack": [ "0xa9059cbb", - "0xa0", - "0x23d" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x100", + "0x325" ] }, { - "pc": 573, + "pc": 805, "op": "JUMPDEST", - "gas": 2987710, + "gas": 2967879, "gasCost": 1, "depth": 1, "stack": [ "0xa9059cbb", - "0xa0" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x100" ] }, { - "pc": 574, + "pc": 806, "op": "PUSH1", - "gas": 2987709, + "gas": 2967878, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0xa0" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x100" ] }, { - "pc": 576, + "pc": 808, "op": "MLOAD", - "gas": 2987706, + "gas": 2967875, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0xa0", + "0x100", "0x40" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" ] }, { - "pc": 577, + "pc": 809, "op": "DUP1", - "gas": 2987703, + "gas": 2967872, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0xa0", - "0x80" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x100", + "0xe0" ] }, { - "pc": 578, + "pc": 810, "op": "SWAP2", - "gas": 2987700, + "gas": 2967869, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0xa0", - "0x80", - "0x80" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" + "0x100", + "0xe0", + "0xe0" ] }, { - "pc": 579, + "pc": 811, "op": "SUB", - "gas": 2987697, + "gas": 2967866, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x80", - "0x80", - "0xa0" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" + "0xe0", + "0xe0", + "0x100" ] }, { - "pc": 580, + "pc": 812, "op": "SWAP1", - "gas": 2987694, + "gas": 2967863, "gasCost": 3, "depth": 1, "stack": [ "0xa9059cbb", - "0x80", + "0xe0", "0x20" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" ] }, { - "pc": 581, + "pc": 813, "op": "RETURN", - "gas": 2987691, + "gas": 2967860, "gasCost": 0, "depth": 1, "stack": [ "0xa9059cbb", "0x20", - "0x80" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" + "0xe0" ] } ] diff --git a/trie/zkproof/writer_test.go b/internal/utesting/blocktraces/zktrie_gen_witness_test.go similarity index 54% rename from trie/zkproof/writer_test.go rename to internal/utesting/blocktraces/zktrie_gen_witness_test.go index c06c525fd5..e42f0ee33e 100644 --- a/trie/zkproof/writer_test.go +++ b/internal/utesting/blocktraces/zktrie_gen_witness_test.go @@ -1,4 +1,4 @@ -package zkproof +package blocktraces import ( "encoding/json" @@ -9,6 +9,7 @@ import ( "github.com/scroll-tech/go-ethereum/common" "github.com/scroll-tech/go-ethereum/core/types" + "github.com/scroll-tech/go-ethereum/trie/zkproof" ) func init() { @@ -16,7 +17,7 @@ func init() { var orderSchemeI int if orderScheme != "" { if n, err := fmt.Sscanf(orderScheme, "%d", &orderSchemeI); err == nil && n == 1 { - usedOrdererScheme = MPTWitnessType(orderSchemeI) + zkproof.SetOrderScheme(zkproof.MPTWitnessType(orderSchemeI)) } } } @@ -43,59 +44,47 @@ func loadStaff(t *testing.T, fname string) *types.BlockResult { } func TestWriterCreation(t *testing.T) { - trace := loadStaff(t, "deploy_trace.json") - writer, err := NewZkTrieProofWriter(trace.StorageTrace) + trace := loadStaff(t, "deploy.json") + writer, err := zkproof.NewZkTrieProofWriter(trace.StorageTrace) if err != nil { t.Fatal(err) } - if len(writer.tracingAccounts) != 4 { - t.Error("unexpected tracing account data", writer.tracingAccounts) + if len(writer.TracingAccounts()) != 3 { + t.Error("unexpected tracing account data", writer.TracingAccounts()) } - if v, existed := writer.tracingAccounts[common.HexToAddress("0x000000000000000000636F6e736F6c652e6c6f67")]; !existed || v != nil { + if v, existed := writer.TracingAccounts()[common.HexToAddress("0x08c683b684d1e24cab8ce6de5c8c628d993ac140")]; !existed || v != nil { t.Error("wrong tracing status for uninited address", v, existed) } - if v, existed := writer.tracingAccounts[common.HexToAddress("0xb36feAEaF76c2A33335b73bEF9aEf7a23d9af1e3")]; !existed || v != nil { - t.Error("wrong tracing status for uninited address", v, existed) - } - - if v, existed := writer.tracingAccounts[common.HexToAddress("0x4cb1aB63aF5D8931Ce09673EbD8ae2ce16fD6571")]; !existed || v == nil { + if v, existed := writer.TracingAccounts()[common.HexToAddress("0x4cb1aB63aF5D8931Ce09673EbD8ae2ce16fD6571")]; !existed || v == nil { t.Error("wrong tracing status for establied address", v, existed) } - if len(writer.tracingStorageTries) != 1 { - t.Error("unexpected tracing storage data", writer.tracingStorageTries) - } - - if v, existed := writer.tracingStorageTries[common.HexToAddress("0xb36feAEaF76c2A33335b73bEF9aEf7a23d9af1e3")]; !existed || v == nil { - t.Error("wrong tracing storage statu", existed, v) - } - } func TestGreeterTx(t *testing.T) { - trace := loadStaff(t, "greeter_trace.json") - writer, err := NewZkTrieProofWriter(trace.StorageTrace) + trace := loadStaff(t, "greeter.json") + writer, err := zkproof.NewZkTrieProofWriter(trace.StorageTrace) if err != nil { t.Fatal(err) } - od := &simpleOrderer{} + od := zkproof.NewSimpleOrderer() theTx := trace.ExecutionResults[0] - handleTx(od, theTx) + zkproof.HandleTx(od, theTx) t.Log(od) - for _, op := range od.savedOp { + for _, op := range od.SavedOp() { _, err = writer.HandleNewState(op) if err != nil { t.Fatal(err) } } - traces, err := HandleBlockResult(trace) + traces, err := zkproof.HandleBlockResult(trace) t.Log("traces: ", len(traces)) outObj, _ := json.Marshal(traces) t.Log(string(outObj)) @@ -105,8 +94,8 @@ func TestGreeterTx(t *testing.T) { } func TestTokenTx(t *testing.T) { - trace := loadStaff(t, "token_trace.json") - traces, err := HandleBlockResult(trace) + trace := loadStaff(t, "token.json") + traces, err := zkproof.HandleBlockResult(trace) outObj, _ := json.Marshal(traces) t.Log(string(outObj)) if err != nil { @@ -116,16 +105,16 @@ func TestTokenTx(t *testing.T) { } func TestCallTx(t *testing.T) { - trace := loadStaff(t, "call_trace.json") - traces, err := HandleBlockResult(trace) + trace := loadStaff(t, "call.json") + traces, err := zkproof.HandleBlockResult(trace) outObj, _ := json.Marshal(traces) t.Log(string(outObj)) if err != nil { t.Fatal(err) } - trace = loadStaff(t, "staticcall_trace.json") - traces, err = HandleBlockResult(trace) + trace = loadStaff(t, "call_edge.json") + traces, err = zkproof.HandleBlockResult(trace) outObj, _ = json.Marshal(traces) t.Log(string(outObj)) if err != nil { @@ -134,16 +123,16 @@ func TestCallTx(t *testing.T) { } func TestCreateTx(t *testing.T) { - trace := loadStaff(t, "create_trace.json") - traces, err := HandleBlockResult(trace) + trace := loadStaff(t, "create.json") + traces, err := zkproof.HandleBlockResult(trace) outObj, _ := json.Marshal(traces) t.Log(string(outObj)) if err != nil { t.Fatal(err) } - trace = loadStaff(t, "deploy_trace.json") - traces, err = HandleBlockResult(trace) + trace = loadStaff(t, "deploy.json") + traces, err = zkproof.HandleBlockResult(trace) outObj, _ = json.Marshal(traces) t.Log(string(outObj)) if err != nil { @@ -153,16 +142,16 @@ func TestCreateTx(t *testing.T) { } func TestFailedCallTx(t *testing.T) { - trace := loadStaff(t, "fail_call_trace.json") - traces, err := HandleBlockResult(trace) + trace := loadStaff(t, "fail_call.json") + traces, err := zkproof.HandleBlockResult(trace) outObj, _ := json.Marshal(traces) t.Log(string(outObj)) if err != nil { t.Fatal(err) } - trace = loadStaff(t, "fail_create_trace.json") - traces, err = HandleBlockResult(trace) + trace = loadStaff(t, "fail_create.json") + traces, err = zkproof.HandleBlockResult(trace) outObj, _ = json.Marshal(traces) t.Log(string(outObj)) if err != nil { @@ -173,8 +162,19 @@ func TestFailedCallTx(t *testing.T) { //notice: now only work with OP_ORDER=2 func TestDeleteTx(t *testing.T) { - trace := loadStaff(t, "delete_trace.json") - traces, err := HandleBlockResult(trace) + trace := loadStaff(t, "delete.json") + traces, err := zkproof.HandleBlockResult(trace) + outObj, _ := json.Marshal(traces) + t.Log(string(outObj)) + if err != nil { + t.Fatal(err) + } +} + +//notice: now only work with OP_ORDER=2 +func TestDestructTx(t *testing.T) { + trace := loadStaff(t, "destruct.json") + traces, err := zkproof.HandleBlockResult(trace) outObj, _ := json.Marshal(traces) t.Log(string(outObj)) if err != nil { @@ -184,7 +184,7 @@ func TestDeleteTx(t *testing.T) { func TestMutipleTx(t *testing.T) { trace := loadStaff(t, "multi_txs.json") - traces, err := HandleBlockResult(trace) + traces, err := zkproof.HandleBlockResult(trace) outObj, _ := json.Marshal(traces) t.Log(string(outObj)) if err != nil { diff --git a/trie/zk_trie.go b/trie/zk_trie.go index 7286ddf5d8..bf800808f4 100644 --- a/trie/zk_trie.go +++ b/trie/zk_trie.go @@ -162,11 +162,8 @@ func (t *ZkTrie) TryDelete(key []byte) error { return nil } - zeroBt := common.Hash{} - // FIXME: delete should not be implemented as Update(0) - return t.tree.TryUpdate(k.Bytes(), zeroBt[:]) - //kPreimage := smt.NewByte32FromBytesPadding(key) - //return t.tree.DeleteWord(kPreimage) + // FIXME: when tryDelete get more solid test, use it instead + return t.tree.tryDeleteLite(zkt.NewHashFromBigInt(k)) } // GetKey returns the preimage of a hashed key that was diff --git a/trie/zk_trie_impl.go b/trie/zk_trie_impl.go index 2e8104a78e..b86fae430c 100644 --- a/trie/zk_trie_impl.go +++ b/trie/zk_trie_impl.go @@ -444,76 +444,6 @@ func (mt *ZkTrieImpl) GetLeafNodeByWord(kPreimage *zkt.Byte32) (*Node, error) { return n, err } -/* -// Update function updates the value of a specified key in the ZkTrieImpl, and updates -// the path from the leaf to the Root with the new values,and returns the -// CircomProcessorProof. -func (mt *ZkTrieImpl) Update(k, v *big.Int, kPreimage *zkt.Byte32, vPreimage []byte) error { - // verify that the ZkTrieImpl is writable - if !mt.writable { - return ErrNotWritable - } - - // verify that k & are valid and fit inside the Finite Field. - if !cryptoUtils.CheckBigIntInField(k) { - return errors.New("Key not inside the Finite Field") - } - if !cryptoUtils.CheckBigIntInField(v) { - return errors.New("Key not inside the Finite Field") - } - - kHash := zkt.NewHashFromBigInt(k) - vHash := zkt.NewHashFromBigInt(v) - path := getPath(mt.maxLevels, kHash[:]) - - nextKey := mt.rootKey - siblings := []*zkt.Hash{} - for i := 0; i < mt.maxLevels; i++ { - n, err := mt.GetNode(nextKey) - if err != nil { - return err - } - switch n.Type { - case NodeTypeEmpty: - return ErrKeyNotFound - case NodeTypeLeaf: - if bytes.Equal(kHash[:], n.NodeKey[:]) { - // update leaf and upload to the root - newNodeLeaf := NewNodeLeaf(kHash, vHash, kPreimage, vPreimage) - _, err := mt.updateNode(newNodeLeaf) - if err != nil { - return err - } - newRootKey, err := - mt.recalculatePathUntilRoot(path, newNodeLeaf, siblings) - if err != nil { - return err - } - mt.rootKey = newRootKey - err = mt.dbInsert(dbKeyRootNode, DBEntryTypeRoot, mt.rootKey[:]) - if err != nil { - return err - } - return nil - } - return ErrKeyNotFound - case NodeTypeMiddle: - if path[i] { - nextKey = n.ChildR - siblings = append(siblings, n.ChildL) - } else { - nextKey = n.ChildL - siblings = append(siblings, n.ChildR) - } - default: - return ErrInvalidNodeFound - } - } - - return ErrKeyNotFound -} -*/ - // Deprecated: only for testing func (mt *ZkTrieImpl) UpdateWord(kPreimage, vPreimage *zkt.Byte32) error { k, err := kPreimage.Hash() @@ -589,6 +519,57 @@ func (mt *ZkTrieImpl) UpdateVarWord(kPreimage *zkt.Byte32, vHash *big.Int, vPrei } */ +// only update the corresponding leaf for +func (mt *ZkTrieImpl) tryDeleteLite(kHash *zkt.Hash) error { + // verify that the ZkTrieImpl is writable + if !mt.writable { + return ErrNotWritable + } + + // verify that k is valid and fit inside the Finite Field. + if !cryptoUtils.CheckBigIntInField(kHash.BigInt()) { + return errors.New("Key not inside the Finite Field") + } + + path := getPath(mt.maxLevels, kHash[:]) + + nextKey := mt.rootKey + siblings := []*zkt.Hash{} + for i := 0; i < mt.maxLevels; i++ { + n, err := mt.GetNode(nextKey) + if err != nil { + return err + } + switch n.Type { + case NodeTypeEmpty: + return ErrKeyNotFound + case NodeTypeLeaf: + if bytes.Equal(kHash[:], n.NodeKey[:]) { + // remove and go up with the sibling + newRootKey, err := mt.recalculatePathUntilRoot(path, NewNodeEmpty(), siblings) + if err != nil { + return err + } + mt.rootKey = newRootKey + return mt.dbInsert(dbKeyRootNode, DBEntryTypeRoot, mt.rootKey[:]) + } + return ErrKeyNotFound + case NodeTypeMiddle: + if path[i] { + nextKey = n.ChildR + siblings = append(siblings, n.ChildL) + } else { + nextKey = n.ChildL + siblings = append(siblings, n.ChildR) + } + default: + return ErrInvalidNodeFound + } + } + + return ErrKeyNotFound +} + // Delete removes the specified Key from the ZkTrieImpl and updates the path // from the deleted key to the Root with the new values. This method removes // the key from the ZkTrieImpl, but does not remove the old nodes from the @@ -645,6 +626,23 @@ func (mt *ZkTrieImpl) tryDelete(kHash *zkt.Hash) error { return ErrKeyNotFound } +// Delete removes the specified Key from the ZkTrieImpl and updates the path +// from the deleted key to the Root with the new values. This method removes +// the key from the ZkTrieImpl, but does not remove the old nodes from the +// key-value database; this means that if the tree is accessed by an old Root +// where the key was not deleted yet, the key will still exist. If is desired +// to remove the key-values from the database that are not under the current +// Root, an option could be to dump all the leafs (using mt.DumpLeafs) and +// import them in a new ZkTrieImpl in a new database (using +// mt.ImportDumpedLeafs), but this will lose all the Root history of the +// ZkTrieImpl +// Delete removes any existing value for key from the trie. +func (t *ZkTrieImpl) Delete(key []byte) { + if err := t.TryDelete(key); err != nil { + log.Error(fmt.Sprintf("Unhandled trie error: %v", err)) + } +} + // TryDelete removes any existing value for key from the trie. // If a node was not found in the database, a MissingNodeError is returned. func (mt *ZkTrieImpl) TryDelete(key []byte) error { diff --git a/trie/zkproof/call_trace.json b/trie/zkproof/call_trace.json deleted file mode 100644 index 31c051056c..0000000000 --- a/trie/zkproof/call_trace.json +++ /dev/null @@ -1,8071 +0,0 @@ -{ - "blockTrace": { - "number": "0x8", - "hash": "0xa038c1a15e2682f3872f78587fcd3079c0badd9c52ed6224d81058ea720a7238", - "gasLimit": 6774658, - "difficulty": "0x2", - "baseFee": "0x16a0b10a", - "coinbase": { - "address": "0x0000000000000000000000000000000000000000", - "nonce": 0, - "balance": "0x0", - "codeHash": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - "time": 1656147728, - "transactions": [ - { - "type": 2, - "nonce": 8, - "gas": 3021784, - "gasPrice": "0x1ca36010", - "from": "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "to": "0xb36feaeaf76c2a33335b73bef9aef7a23d9af1e3", - "chainId": "0xcf55", - "value": "0x0", - "data": "0xb0f2b72a000000000000000000000000000000000000000000000000000001819a18d198", - "isCreate": false, - "v": "0x1", - "r": "0x5258dbba49bfd8258938d895642494c35d9d98acaa2568a7241efde7bd8a3e81", - "s": "0x3fd844fdc6cc6025757c59f6fb2581b0f382228e1d14681faf652b7f70988ab3" - } - ] - }, - "storageTrace": { - "rootBefore": "0x2354ef121808d9edad50a86b066542652328bf167d782933c168bc9e5c7ea986", - "rootAfter": "0x04b202d40c1365de84c6c749040bfa8869fff4cbaa0fcbff9cb8cb26885254a6", - "proofs": { - "0x0000000000000000000000000000000000000000": [ - "0x006f1b1aaa0786b0ffda98b55f7f6e70fefe08769c301f7367dfa71314749f4a0a96f69b8aadd922e896e4b22ddc41262e2755a185e401ad62709b4f13f60d252c", - "0x01e232499c4754368052075d13fb84b18537b94a2da166170e7bd94bdc879097090404000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000cc0a77f6e063b4b62eb7d9ed6f427cf687d8d0071d751850cfe5d136bc60d3ab17f322bba5548b6498505e3601fd4418459cabb94a6ac1288274463ca8e70a1700", - "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" - ], - "0x05fDbDfaE180345C6Cff5316c286727CF1a43327": [ - "0x006f1b1aaa0786b0ffda98b55f7f6e70fefe08769c301f7367dfa71314749f4a0a96f69b8aadd922e896e4b22ddc41262e2755a185e401ad62709b4f13f60d252c", - "0x005f246a4c1b46382a73e9990279a8885b071af56e6221efc658e34e9af9820f22d42b1f9c974d478ce2666e6f703a929c2c0decfe4cb35b6cd034e73bc7fb8816", - "0x01fb6c28252d0ee14db1cdabda01391300ac75dcfdcda6ba1880e509aed4bc1225040400000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000009d2fd3a7cb9d5547a21c851248d703921e6348bfbdf4c0130695a3263f916ef277528b90f6b85c60c57d541dc3de95b2955afb7c54458c2f7c6fda06e3e15d400", - "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" - ], - "0x4cb1aB63aF5D8931Ce09673EbD8ae2ce16fD6571": [ - "0x006f1b1aaa0786b0ffda98b55f7f6e70fefe08769c301f7367dfa71314749f4a0a96f69b8aadd922e896e4b22ddc41262e2755a185e401ad62709b4f13f60d252c", - "0x005f246a4c1b46382a73e9990279a8885b071af56e6221efc658e34e9af9820f22d42b1f9c974d478ce2666e6f703a929c2c0decfe4cb35b6cd034e73bc7fb8816", - "0x002f719a7d94e0142e3e0ccb05942a65398e36ee904d8455b862801431ee19601d296dc51337c0d45c23cdfd9d0a40ebd60c62fc73d13eb04f75d523907e4cab29", - "0x00fcf85bd086f37febfcc6cbda7575f9add433bc3fb601c389ac2913051180b0110000000000000000000000000000000000000000000000000000000000000000", - "0x0000000000000000000000000000000000000000000000000000000000000000003967cee899b2b781ca54152f2ad6ab192b902e039f3c6b48d412a515ec502d02", - "0x0078c7b59d789c294f21339f0a872b81a418d6b24273fe959dc00126520917970dc8df929f0eee5e6c3741a32fd11028d4bcc8f2fc6cd9fd28565875446f9cfa17", - "0x000000000000000000000000000000000000000000000000000000000000000000b8e59c5c89fa0f488748ab10e1bc5075582ad895bcf74544c94a68d769aafc2a", - "0x00b368437a9384eae0456f0b192e02e1756bd1e4b51fdee562baddcb5c3121691da72c67edca1db779b38140aaee9baf382c96315f0884909da4a4a7480f3ab82d", - "0x017581e431a68d0fa641e14a7d29a6c2b150db6da1d13f59dee6f7f492a0bebd290404000000000000000000000000000000000000000000000000000000000000000000080056bc75e2d630fffffffffffffffffffffffffffffffffffff9c878fb6bb700c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470000000000000000000000000000000000000000000000000000000000000000000", - "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" - ], - "0xb36feAEaF76c2A33335b73bEF9aEf7a23d9af1e3": [ - "0x006f1b1aaa0786b0ffda98b55f7f6e70fefe08769c301f7367dfa71314749f4a0a96f69b8aadd922e896e4b22ddc41262e2755a185e401ad62709b4f13f60d252c", - "0x005f246a4c1b46382a73e9990279a8885b071af56e6221efc658e34e9af9820f22d42b1f9c974d478ce2666e6f703a929c2c0decfe4cb35b6cd034e73bc7fb8816", - "0x002f719a7d94e0142e3e0ccb05942a65398e36ee904d8455b862801431ee19601d296dc51337c0d45c23cdfd9d0a40ebd60c62fc73d13eb04f75d523907e4cab29", - "0x00fcf85bd086f37febfcc6cbda7575f9add433bc3fb601c389ac2913051180b0110000000000000000000000000000000000000000000000000000000000000000", - "0x0000000000000000000000000000000000000000000000000000000000000000003967cee899b2b781ca54152f2ad6ab192b902e039f3c6b48d412a515ec502d02", - "0x0078c7b59d789c294f21339f0a872b81a418d6b24273fe959dc00126520917970dc8df929f0eee5e6c3741a32fd11028d4bcc8f2fc6cd9fd28565875446f9cfa17", - "0x000000000000000000000000000000000000000000000000000000000000000000b8e59c5c89fa0f488748ab10e1bc5075582ad895bcf74544c94a68d769aafc2a", - "0x00b368437a9384eae0456f0b192e02e1756bd1e4b51fdee562baddcb5c3121691da72c67edca1db779b38140aaee9baf382c96315f0884909da4a4a7480f3ab82d", - "0x01f59112e5670628682b1ec72767b1a6153096d47742e1d9455c175a955211e9000404000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000cf73ee5d93a98045cd55efe938790c20effb831ac0646f6875213fb4aca6631921b9f6b124d61bfa2a988690fe447213304911cc93299f2b183e8018257d78e200", - "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" - ] - }, - "storageProofs": { - "0x05fDbDfaE180345C6Cff5316c286727CF1a43327": { - "0x0000000000000000000000000000000000000000000000000000000000000000": [ - "0x016448b64684ee39a823d5fe5fd52431dc81e4817bf2c3ea3cab9e239efbf598200101000000000000000000000000000000000000000000000000000000000181964e758500", - "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" - ] - }, - "0xb36feAEaF76c2A33335b73bEF9aEf7a23d9af1e3": { - "0x0000000000000000000000000000000000000000000000000000000000000000": [ - "0x016448b64684ee39a823d5fe5fd52431dc81e4817bf2c3ea3cab9e239efbf598200101000000000000000000000000000005fdbdfae180345c6cff5316c286727cf1a4332700", - "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" - ] - } - } - }, - "executionResults": [ - { - "gas": 32255, - "failed": false, - "from": { - "address": "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "nonce": 8, - "balance": "0x56bc75e2d630fffffffffffffffffffffffffffffffffffff9c878fb6bb700", - "codeHash": "0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470" - }, - "to": { - "address": "0xb36feaeaf76c2a33335b73bef9aef7a23d9af1e3", - "nonce": 1, - "balance": "0x0", - "codeHash": "0xcf73ee5d93a98045cd55efe938790c20effb831ac0646f6875213fb4aca66319" - }, - "accountAfter": [ - { - "address": "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "nonce": 9, - "balance": "0x56bc75e2d630fffffffffffffffffffffffffffffffffffff9bd55fae97c0a", - "codeHash": "0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470" - }, - { - "address": "0xb36feaeaf76c2a33335b73bef9aef7a23d9af1e3", - "nonce": 1, - "balance": "0x0", - "codeHash": "0xcf73ee5d93a98045cd55efe938790c20effb831ac0646f6875213fb4aca66319" - } - ], - "codeHash": "0xcf73ee5d93a98045cd55efe938790c20effb831ac0646f6875213fb4aca66319", - "byteCode": "0x608060405234801561001057600080fd5b50600436106100365760003560e01c806321848c461461003b578063b0f2b72a14610057575b600080fd5b61005560048036038101906100509190610277565b610073565b005b610071600480360381019061006c9190610277565b61010b565b005b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff166321848c46836040518263ffffffff1660e01b81526004016100d2919061030a565b600060405180830381600087803b1580156100ec57600080fd5b505af19250505080156100fd575060015b61010657610107565b5b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663b0f2b72a836040518263ffffffff1660e01b815260040161016a919061030a565b600060405180830381600087803b15801561018457600080fd5b505af1158015610198573d6000803e3d6000fd5b505050505050565b610236816040516024016101b491906102e8565b6040516020818303038152906040527f41304fac000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050610239565b50565b60008151905060006a636f6e736f6c652e6c6f679050602083016000808483855afa5050505050565b6000813590506102718161038f565b92915050565b60006020828403121561028957600080fd5b600061029784828501610262565b91505092915050565b60006102ab82610325565b6102b58185610330565b93506102c581856020860161034b565b6102ce8161037e565b840191505092915050565b6102e281610341565b82525050565b6000602082019050818103600083015261030281846102a0565b905092915050565b600060208201905061031f60008301846102d9565b92915050565b600081519050919050565b600082825260208201905092915050565b6000819050919050565b60005b8381101561036957808201518184015260208101905061034e565b83811115610378576000848401525b50505050565b6000601f19601f8301169050919050565b61039881610341565b81146103a357600080fd5b5056fea264697066735822122079a958a4c7a90094ec761b33fbd301163f4e1e62f3ccae8afe9f42a770e054f264736f6c63430008040033", - "structLogs": [ - { - "pc": 0, - "op": "PUSH1", - "gas": 3000520, - "gasCost": 3, - "depth": 1 - }, - { - "pc": 2, - "op": "PUSH1", - "gas": 3000517, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80" - ] - }, - { - "pc": 4, - "op": "MSTORE", - "gas": 3000514, - "gasCost": 12, - "depth": 1, - "stack": [ - "0x80", - "0x40" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 5, - "op": "CALLVALUE", - "gas": 3000502, - "gasCost": 2, - "depth": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 6, - "op": "DUP1", - "gas": 3000500, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 7, - "op": "ISZERO", - "gas": 3000497, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 8, - "op": "PUSH2", - "gas": 3000494, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x0", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 11, - "op": "JUMPI", - "gas": 3000491, - "gasCost": 10, - "depth": 1, - "stack": [ - "0x0", - "0x1", - "0x10" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 16, - "op": "JUMPDEST", - "gas": 3000481, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 17, - "op": "POP", - "gas": 3000480, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 18, - "op": "PUSH1", - "gas": 3000478, - "gasCost": 3, - "depth": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 20, - "op": "CALLDATASIZE", - "gas": 3000475, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 21, - "op": "LT", - "gas": 3000473, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x4", - "0x24" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 22, - "op": "PUSH2", - "gas": 3000470, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 25, - "op": "JUMPI", - "gas": 3000467, - "gasCost": 10, - "depth": 1, - "stack": [ - "0x0", - "0x36" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 26, - "op": "PUSH1", - "gas": 3000457, - "gasCost": 3, - "depth": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 28, - "op": "CALLDATALOAD", - "gas": 3000454, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 29, - "op": "PUSH1", - "gas": 3000451, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xb0f2b72a00000000000000000000000000000000000000000000000000000181" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 31, - "op": "SHR", - "gas": 3000448, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xb0f2b72a00000000000000000000000000000000000000000000000000000181", - "0xe0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 32, - "op": "DUP1", - "gas": 3000445, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xb0f2b72a" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 33, - "op": "PUSH4", - "gas": 3000442, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0xb0f2b72a" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 38, - "op": "EQ", - "gas": 3000439, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0xb0f2b72a", - "0x21848c46" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 39, - "op": "PUSH2", - "gas": 3000436, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 42, - "op": "JUMPI", - "gas": 3000433, - "gasCost": 10, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x0", - "0x3b" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 43, - "op": "DUP1", - "gas": 3000423, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xb0f2b72a" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 44, - "op": "PUSH4", - "gas": 3000420, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0xb0f2b72a" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 49, - "op": "EQ", - "gas": 3000417, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0xb0f2b72a", - "0xb0f2b72a" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 50, - "op": "PUSH2", - "gas": 3000414, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 53, - "op": "JUMPI", - "gas": 3000411, - "gasCost": 10, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x1", - "0x57" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 87, - "op": "JUMPDEST", - "gas": 3000401, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xb0f2b72a" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 88, - "op": "PUSH2", - "gas": 3000400, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xb0f2b72a" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 91, - "op": "PUSH1", - "gas": 3000397, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 93, - "op": "DUP1", - "gas": 3000394, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 94, - "op": "CALLDATASIZE", - "gas": 3000391, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x4", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 95, - "op": "SUB", - "gas": 3000389, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x4", - "0x4", - "0x24" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 96, - "op": "DUP2", - "gas": 3000386, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x4", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 97, - "op": "ADD", - "gas": 3000383, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x4", - "0x20", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 98, - "op": "SWAP1", - "gas": 3000380, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x4", - "0x24" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 99, - "op": "PUSH2", - "gas": 3000377, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x24", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 102, - "op": "SWAP2", - "gas": 3000374, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x24", - "0x4", - "0x6c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 103, - "op": "SWAP1", - "gas": 3000371, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x6c", - "0x4", - "0x24" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 104, - "op": "PUSH2", - "gas": 3000368, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x6c", - "0x24", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 107, - "op": "JUMP", - "gas": 3000365, - "gasCost": 8, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x6c", - "0x24", - "0x4", - "0x277" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 631, - "op": "JUMPDEST", - "gas": 3000357, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x6c", - "0x24", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 632, - "op": "PUSH1", - "gas": 3000356, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x6c", - "0x24", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 634, - "op": "PUSH1", - "gas": 3000353, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x6c", - "0x24", - "0x4", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 636, - "op": "DUP3", - "gas": 3000350, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x6c", - "0x24", - "0x4", - "0x0", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 637, - "op": "DUP5", - "gas": 3000347, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x6c", - "0x24", - "0x4", - "0x0", - "0x20", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 638, - "op": "SUB", - "gas": 3000344, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x6c", - "0x24", - "0x4", - "0x0", - "0x20", - "0x4", - "0x24" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 639, - "op": "SLT", - "gas": 3000341, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x6c", - "0x24", - "0x4", - "0x0", - "0x20", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 640, - "op": "ISZERO", - "gas": 3000338, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x6c", - "0x24", - "0x4", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 641, - "op": "PUSH2", - "gas": 3000335, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x6c", - "0x24", - "0x4", - "0x0", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 644, - "op": "JUMPI", - "gas": 3000332, - "gasCost": 10, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x6c", - "0x24", - "0x4", - "0x0", - "0x1", - "0x289" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 649, - "op": "JUMPDEST", - "gas": 3000322, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x6c", - "0x24", - "0x4", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 650, - "op": "PUSH1", - "gas": 3000321, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x6c", - "0x24", - "0x4", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 652, - "op": "PUSH2", - "gas": 3000318, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x6c", - "0x24", - "0x4", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 655, - "op": "DUP5", - "gas": 3000315, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x6c", - "0x24", - "0x4", - "0x0", - "0x0", - "0x297" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 656, - "op": "DUP3", - "gas": 3000312, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x6c", - "0x24", - "0x4", - "0x0", - "0x0", - "0x297", - "0x24" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 657, - "op": "DUP6", - "gas": 3000309, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x6c", - "0x24", - "0x4", - "0x0", - "0x0", - "0x297", - "0x24", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 658, - "op": "ADD", - "gas": 3000306, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x6c", - "0x24", - "0x4", - "0x0", - "0x0", - "0x297", - "0x24", - "0x0", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 659, - "op": "PUSH2", - "gas": 3000303, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x6c", - "0x24", - "0x4", - "0x0", - "0x0", - "0x297", - "0x24", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 662, - "op": "JUMP", - "gas": 3000300, - "gasCost": 8, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x6c", - "0x24", - "0x4", - "0x0", - "0x0", - "0x297", - "0x24", - "0x4", - "0x262" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 610, - "op": "JUMPDEST", - "gas": 3000292, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x6c", - "0x24", - "0x4", - "0x0", - "0x0", - "0x297", - "0x24", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 611, - "op": "PUSH1", - "gas": 3000291, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x6c", - "0x24", - "0x4", - "0x0", - "0x0", - "0x297", - "0x24", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 613, - "op": "DUP2", - "gas": 3000288, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x6c", - "0x24", - "0x4", - "0x0", - "0x0", - "0x297", - "0x24", - "0x4", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 614, - "op": "CALLDATALOAD", - "gas": 3000285, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x6c", - "0x24", - "0x4", - "0x0", - "0x0", - "0x297", - "0x24", - "0x4", - "0x0", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 615, - "op": "SWAP1", - "gas": 3000282, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x6c", - "0x24", - "0x4", - "0x0", - "0x0", - "0x297", - "0x24", - "0x4", - "0x0", - "0x1819a18d198" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 616, - "op": "POP", - "gas": 3000279, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x6c", - "0x24", - "0x4", - "0x0", - "0x0", - "0x297", - "0x24", - "0x4", - "0x1819a18d198", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 617, - "op": "PUSH2", - "gas": 3000277, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x6c", - "0x24", - "0x4", - "0x0", - "0x0", - "0x297", - "0x24", - "0x4", - "0x1819a18d198" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 620, - "op": "DUP2", - "gas": 3000274, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x6c", - "0x24", - "0x4", - "0x0", - "0x0", - "0x297", - "0x24", - "0x4", - "0x1819a18d198", - "0x271" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 621, - "op": "PUSH2", - "gas": 3000271, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x6c", - "0x24", - "0x4", - "0x0", - "0x0", - "0x297", - "0x24", - "0x4", - "0x1819a18d198", - "0x271", - "0x1819a18d198" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 624, - "op": "JUMP", - "gas": 3000268, - "gasCost": 8, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x6c", - "0x24", - "0x4", - "0x0", - "0x0", - "0x297", - "0x24", - "0x4", - "0x1819a18d198", - "0x271", - "0x1819a18d198", - "0x38f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 911, - "op": "JUMPDEST", - "gas": 3000260, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x6c", - "0x24", - "0x4", - "0x0", - "0x0", - "0x297", - "0x24", - "0x4", - "0x1819a18d198", - "0x271", - "0x1819a18d198" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 912, - "op": "PUSH2", - "gas": 3000259, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x6c", - "0x24", - "0x4", - "0x0", - "0x0", - "0x297", - "0x24", - "0x4", - "0x1819a18d198", - "0x271", - "0x1819a18d198" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 915, - "op": "DUP2", - "gas": 3000256, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x6c", - "0x24", - "0x4", - "0x0", - "0x0", - "0x297", - "0x24", - "0x4", - "0x1819a18d198", - "0x271", - "0x1819a18d198", - "0x398" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 916, - "op": "PUSH2", - "gas": 3000253, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x6c", - "0x24", - "0x4", - "0x0", - "0x0", - "0x297", - "0x24", - "0x4", - "0x1819a18d198", - "0x271", - "0x1819a18d198", - "0x398", - "0x1819a18d198" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 919, - "op": "JUMP", - "gas": 3000250, - "gasCost": 8, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x6c", - "0x24", - "0x4", - "0x0", - "0x0", - "0x297", - "0x24", - "0x4", - "0x1819a18d198", - "0x271", - "0x1819a18d198", - "0x398", - "0x1819a18d198", - "0x341" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 833, - "op": "JUMPDEST", - "gas": 3000242, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x6c", - "0x24", - "0x4", - "0x0", - "0x0", - "0x297", - "0x24", - "0x4", - "0x1819a18d198", - "0x271", - "0x1819a18d198", - "0x398", - "0x1819a18d198" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 834, - "op": "PUSH1", - "gas": 3000241, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x6c", - "0x24", - "0x4", - "0x0", - "0x0", - "0x297", - "0x24", - "0x4", - "0x1819a18d198", - "0x271", - "0x1819a18d198", - "0x398", - "0x1819a18d198" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 836, - "op": "DUP2", - "gas": 3000238, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x6c", - "0x24", - "0x4", - "0x0", - "0x0", - "0x297", - "0x24", - "0x4", - "0x1819a18d198", - "0x271", - "0x1819a18d198", - "0x398", - "0x1819a18d198", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 837, - "op": "SWAP1", - "gas": 3000235, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x6c", - "0x24", - "0x4", - "0x0", - "0x0", - "0x297", - "0x24", - "0x4", - "0x1819a18d198", - "0x271", - "0x1819a18d198", - "0x398", - "0x1819a18d198", - "0x0", - "0x1819a18d198" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 838, - "op": "POP", - "gas": 3000232, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x6c", - "0x24", - "0x4", - "0x0", - "0x0", - "0x297", - "0x24", - "0x4", - "0x1819a18d198", - "0x271", - "0x1819a18d198", - "0x398", - "0x1819a18d198", - "0x1819a18d198", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 839, - "op": "SWAP2", - "gas": 3000230, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x6c", - "0x24", - "0x4", - "0x0", - "0x0", - "0x297", - "0x24", - "0x4", - "0x1819a18d198", - "0x271", - "0x1819a18d198", - "0x398", - "0x1819a18d198", - "0x1819a18d198" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 840, - "op": "SWAP1", - "gas": 3000227, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x6c", - "0x24", - "0x4", - "0x0", - "0x0", - "0x297", - "0x24", - "0x4", - "0x1819a18d198", - "0x271", - "0x1819a18d198", - "0x1819a18d198", - "0x1819a18d198", - "0x398" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 841, - "op": "POP", - "gas": 3000224, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x6c", - "0x24", - "0x4", - "0x0", - "0x0", - "0x297", - "0x24", - "0x4", - "0x1819a18d198", - "0x271", - "0x1819a18d198", - "0x1819a18d198", - "0x398", - "0x1819a18d198" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 842, - "op": "JUMP", - "gas": 3000222, - "gasCost": 8, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x6c", - "0x24", - "0x4", - "0x0", - "0x0", - "0x297", - "0x24", - "0x4", - "0x1819a18d198", - "0x271", - "0x1819a18d198", - "0x1819a18d198", - "0x398" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 920, - "op": "JUMPDEST", - "gas": 3000214, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x6c", - "0x24", - "0x4", - "0x0", - "0x0", - "0x297", - "0x24", - "0x4", - "0x1819a18d198", - "0x271", - "0x1819a18d198", - "0x1819a18d198" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 921, - "op": "DUP2", - "gas": 3000213, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x6c", - "0x24", - "0x4", - "0x0", - "0x0", - "0x297", - "0x24", - "0x4", - "0x1819a18d198", - "0x271", - "0x1819a18d198", - "0x1819a18d198" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 922, - "op": "EQ", - "gas": 3000210, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x6c", - "0x24", - "0x4", - "0x0", - "0x0", - "0x297", - "0x24", - "0x4", - "0x1819a18d198", - "0x271", - "0x1819a18d198", - "0x1819a18d198", - "0x1819a18d198" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 923, - "op": "PUSH2", - "gas": 3000207, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x6c", - "0x24", - "0x4", - "0x0", - "0x0", - "0x297", - "0x24", - "0x4", - "0x1819a18d198", - "0x271", - "0x1819a18d198", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 926, - "op": "JUMPI", - "gas": 3000204, - "gasCost": 10, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x6c", - "0x24", - "0x4", - "0x0", - "0x0", - "0x297", - "0x24", - "0x4", - "0x1819a18d198", - "0x271", - "0x1819a18d198", - "0x1", - "0x3a3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 931, - "op": "JUMPDEST", - "gas": 3000194, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x6c", - "0x24", - "0x4", - "0x0", - "0x0", - "0x297", - "0x24", - "0x4", - "0x1819a18d198", - "0x271", - "0x1819a18d198" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 932, - "op": "POP", - "gas": 3000193, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x6c", - "0x24", - "0x4", - "0x0", - "0x0", - "0x297", - "0x24", - "0x4", - "0x1819a18d198", - "0x271", - "0x1819a18d198" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 933, - "op": "JUMP", - "gas": 3000191, - "gasCost": 8, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x6c", - "0x24", - "0x4", - "0x0", - "0x0", - "0x297", - "0x24", - "0x4", - "0x1819a18d198", - "0x271" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 625, - "op": "JUMPDEST", - "gas": 3000183, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x6c", - "0x24", - "0x4", - "0x0", - "0x0", - "0x297", - "0x24", - "0x4", - "0x1819a18d198" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 626, - "op": "SWAP3", - "gas": 3000182, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x6c", - "0x24", - "0x4", - "0x0", - "0x0", - "0x297", - "0x24", - "0x4", - "0x1819a18d198" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 627, - "op": "SWAP2", - "gas": 3000179, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x6c", - "0x24", - "0x4", - "0x0", - "0x0", - "0x1819a18d198", - "0x24", - "0x4", - "0x297" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 628, - "op": "POP", - "gas": 3000176, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x6c", - "0x24", - "0x4", - "0x0", - "0x0", - "0x1819a18d198", - "0x297", - "0x4", - "0x24" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 629, - "op": "POP", - "gas": 3000174, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x6c", - "0x24", - "0x4", - "0x0", - "0x0", - "0x1819a18d198", - "0x297", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 630, - "op": "JUMP", - "gas": 3000172, - "gasCost": 8, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x6c", - "0x24", - "0x4", - "0x0", - "0x0", - "0x1819a18d198", - "0x297" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 663, - "op": "JUMPDEST", - "gas": 3000164, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x6c", - "0x24", - "0x4", - "0x0", - "0x0", - "0x1819a18d198" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 664, - "op": "SWAP2", - "gas": 3000163, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x6c", - "0x24", - "0x4", - "0x0", - "0x0", - "0x1819a18d198" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 665, - "op": "POP", - "gas": 3000160, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x6c", - "0x24", - "0x4", - "0x1819a18d198", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 666, - "op": "POP", - "gas": 3000158, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x6c", - "0x24", - "0x4", - "0x1819a18d198", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 667, - "op": "SWAP3", - "gas": 3000156, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x6c", - "0x24", - "0x4", - "0x1819a18d198" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 668, - "op": "SWAP2", - "gas": 3000153, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x1819a18d198", - "0x24", - "0x4", - "0x6c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 669, - "op": "POP", - "gas": 3000150, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x1819a18d198", - "0x6c", - "0x4", - "0x24" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 670, - "op": "POP", - "gas": 3000148, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x1819a18d198", - "0x6c", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 671, - "op": "JUMP", - "gas": 3000146, - "gasCost": 8, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x1819a18d198", - "0x6c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 108, - "op": "JUMPDEST", - "gas": 3000138, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x1819a18d198" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 109, - "op": "PUSH2", - "gas": 3000137, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x1819a18d198" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 112, - "op": "JUMP", - "gas": 3000134, - "gasCost": 8, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x1819a18d198", - "0x10b" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 267, - "op": "JUMPDEST", - "gas": 3000126, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x1819a18d198" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 268, - "op": "PUSH1", - "gas": 3000125, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x1819a18d198" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 270, - "op": "DUP1", - "gas": 3000122, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x1819a18d198", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 271, - "op": "PUSH1", - "gas": 3000119, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x1819a18d198", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 273, - "op": "SWAP1", - "gas": 3000116, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x1819a18d198", - "0x0", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 274, - "op": "SLOAD", - "gas": 3000113, - "gasCost": 2100, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x1819a18d198", - "0x0", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0x0000000000000000000000000000000000000000000000000000000000000000": "0x00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327" - }, - "extraData": { - "proofList": [ - { - "address": "0xb36feaeaf76c2a33335b73bef9aef7a23d9af1e3", - "nonce": 1, - "balance": "0x0", - "codeHash": "0xcf73ee5d93a98045cd55efe938790c20effb831ac0646f6875213fb4aca66319", - "storage": { - "key": "0x0000000000000000000000000000000000000000000000000000000000000000", - "value": "0x00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327" - } - } - ] - } - }, - { - "pc": 275, - "op": "SWAP1", - "gas": 2998013, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x1819a18d198", - "0x0", - "0x0", - "0x5fdbdfae180345c6cff5316c286727cf1a43327" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 276, - "op": "PUSH2", - "gas": 2998010, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x1819a18d198", - "0x0", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 279, - "op": "EXP", - "gas": 2998007, - "gasCost": 10, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x1819a18d198", - "0x0", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x0", - "0x100" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 280, - "op": "SWAP1", - "gas": 2997997, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x1819a18d198", - "0x0", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 281, - "op": "DIV", - "gas": 2997994, - "gasCost": 5, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x1819a18d198", - "0x0", - "0x1", - "0x5fdbdfae180345c6cff5316c286727cf1a43327" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 282, - "op": "PUSH20", - "gas": 2997989, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x1819a18d198", - "0x0", - "0x5fdbdfae180345c6cff5316c286727cf1a43327" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 303, - "op": "AND", - "gas": 2997986, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x1819a18d198", - "0x0", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0xffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 304, - "op": "SWAP1", - "gas": 2997983, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x1819a18d198", - "0x0", - "0x5fdbdfae180345c6cff5316c286727cf1a43327" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 305, - "op": "POP", - "gas": 2997980, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x1819a18d198", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 306, - "op": "DUP1", - "gas": 2997978, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x1819a18d198", - "0x5fdbdfae180345c6cff5316c286727cf1a43327" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 307, - "op": "PUSH20", - "gas": 2997975, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x1819a18d198", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 328, - "op": "AND", - "gas": 2997972, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x1819a18d198", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0xffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 329, - "op": "PUSH4", - "gas": 2997969, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x1819a18d198", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 334, - "op": "DUP4", - "gas": 2997966, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x1819a18d198", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0xb0f2b72a" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 335, - "op": "PUSH1", - "gas": 2997963, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x1819a18d198", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0xb0f2b72a", - "0x1819a18d198" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 337, - "op": "MLOAD", - "gas": 2997960, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x1819a18d198", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0xb0f2b72a", - "0x1819a18d198", - "0x40" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 338, - "op": "DUP3", - "gas": 2997957, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x1819a18d198", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0xb0f2b72a", - "0x1819a18d198", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 339, - "op": "PUSH4", - "gas": 2997954, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x1819a18d198", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0xb0f2b72a", - "0x1819a18d198", - "0x80", - "0xb0f2b72a" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 344, - "op": "AND", - "gas": 2997951, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x1819a18d198", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0xb0f2b72a", - "0x1819a18d198", - "0x80", - "0xb0f2b72a", - "0xffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 345, - "op": "PUSH1", - "gas": 2997948, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x1819a18d198", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0xb0f2b72a", - "0x1819a18d198", - "0x80", - "0xb0f2b72a" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 347, - "op": "SHL", - "gas": 2997945, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x1819a18d198", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0xb0f2b72a", - "0x1819a18d198", - "0x80", - "0xb0f2b72a", - "0xe0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 348, - "op": "DUP2", - "gas": 2997942, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x1819a18d198", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0xb0f2b72a", - "0x1819a18d198", - "0x80", - "0xb0f2b72a00000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 349, - "op": "MSTORE", - "gas": 2997939, - "gasCost": 9, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x1819a18d198", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0xb0f2b72a", - "0x1819a18d198", - "0x80", - "0xb0f2b72a00000000000000000000000000000000000000000000000000000000", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 350, - "op": "PUSH1", - "gas": 2997930, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x1819a18d198", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0xb0f2b72a", - "0x1819a18d198", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "b0f2b72a00000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 352, - "op": "ADD", - "gas": 2997927, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x1819a18d198", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0xb0f2b72a", - "0x1819a18d198", - "0x80", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "b0f2b72a00000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 353, - "op": "PUSH2", - "gas": 2997924, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x1819a18d198", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0xb0f2b72a", - "0x1819a18d198", - "0x84" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "b0f2b72a00000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 356, - "op": "SWAP2", - "gas": 2997921, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x1819a18d198", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0xb0f2b72a", - "0x1819a18d198", - "0x84", - "0x16a" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "b0f2b72a00000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 357, - "op": "SWAP1", - "gas": 2997918, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x1819a18d198", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0xb0f2b72a", - "0x16a", - "0x84", - "0x1819a18d198" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "b0f2b72a00000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 358, - "op": "PUSH2", - "gas": 2997915, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x1819a18d198", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0xb0f2b72a", - "0x16a", - "0x1819a18d198", - "0x84" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "b0f2b72a00000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 361, - "op": "JUMP", - "gas": 2997912, - "gasCost": 8, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x1819a18d198", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0xb0f2b72a", - "0x16a", - "0x1819a18d198", - "0x84", - "0x30a" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "b0f2b72a00000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 778, - "op": "JUMPDEST", - "gas": 2997904, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x1819a18d198", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0xb0f2b72a", - "0x16a", - "0x1819a18d198", - "0x84" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "b0f2b72a00000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 779, - "op": "PUSH1", - "gas": 2997903, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x1819a18d198", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0xb0f2b72a", - "0x16a", - "0x1819a18d198", - "0x84" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "b0f2b72a00000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 781, - "op": "PUSH1", - "gas": 2997900, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x1819a18d198", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0xb0f2b72a", - "0x16a", - "0x1819a18d198", - "0x84", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "b0f2b72a00000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 783, - "op": "DUP3", - "gas": 2997897, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x1819a18d198", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0xb0f2b72a", - "0x16a", - "0x1819a18d198", - "0x84", - "0x0", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "b0f2b72a00000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 784, - "op": "ADD", - "gas": 2997894, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x1819a18d198", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0xb0f2b72a", - "0x16a", - "0x1819a18d198", - "0x84", - "0x0", - "0x20", - "0x84" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "b0f2b72a00000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 785, - "op": "SWAP1", - "gas": 2997891, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x1819a18d198", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0xb0f2b72a", - "0x16a", - "0x1819a18d198", - "0x84", - "0x0", - "0xa4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "b0f2b72a00000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 786, - "op": "POP", - "gas": 2997888, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x1819a18d198", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0xb0f2b72a", - "0x16a", - "0x1819a18d198", - "0x84", - "0xa4", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "b0f2b72a00000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 787, - "op": "PUSH2", - "gas": 2997886, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x1819a18d198", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0xb0f2b72a", - "0x16a", - "0x1819a18d198", - "0x84", - "0xa4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "b0f2b72a00000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 790, - "op": "PUSH1", - "gas": 2997883, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x1819a18d198", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0xb0f2b72a", - "0x16a", - "0x1819a18d198", - "0x84", - "0xa4", - "0x31f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "b0f2b72a00000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 792, - "op": "DUP4", - "gas": 2997880, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x1819a18d198", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0xb0f2b72a", - "0x16a", - "0x1819a18d198", - "0x84", - "0xa4", - "0x31f", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "b0f2b72a00000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 793, - "op": "ADD", - "gas": 2997877, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x1819a18d198", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0xb0f2b72a", - "0x16a", - "0x1819a18d198", - "0x84", - "0xa4", - "0x31f", - "0x0", - "0x84" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "b0f2b72a00000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 794, - "op": "DUP5", - "gas": 2997874, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x1819a18d198", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0xb0f2b72a", - "0x16a", - "0x1819a18d198", - "0x84", - "0xa4", - "0x31f", - "0x84" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "b0f2b72a00000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 795, - "op": "PUSH2", - "gas": 2997871, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x1819a18d198", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0xb0f2b72a", - "0x16a", - "0x1819a18d198", - "0x84", - "0xa4", - "0x31f", - "0x84", - "0x1819a18d198" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "b0f2b72a00000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 798, - "op": "JUMP", - "gas": 2997868, - "gasCost": 8, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x1819a18d198", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0xb0f2b72a", - "0x16a", - "0x1819a18d198", - "0x84", - "0xa4", - "0x31f", - "0x84", - "0x1819a18d198", - "0x2d9" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "b0f2b72a00000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 729, - "op": "JUMPDEST", - "gas": 2997860, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x1819a18d198", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0xb0f2b72a", - "0x16a", - "0x1819a18d198", - "0x84", - "0xa4", - "0x31f", - "0x84", - "0x1819a18d198" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "b0f2b72a00000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 730, - "op": "PUSH2", - "gas": 2997859, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x1819a18d198", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0xb0f2b72a", - "0x16a", - "0x1819a18d198", - "0x84", - "0xa4", - "0x31f", - "0x84", - "0x1819a18d198" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "b0f2b72a00000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 733, - "op": "DUP2", - "gas": 2997856, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x1819a18d198", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0xb0f2b72a", - "0x16a", - "0x1819a18d198", - "0x84", - "0xa4", - "0x31f", - "0x84", - "0x1819a18d198", - "0x2e2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "b0f2b72a00000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 734, - "op": "PUSH2", - "gas": 2997853, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x1819a18d198", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0xb0f2b72a", - "0x16a", - "0x1819a18d198", - "0x84", - "0xa4", - "0x31f", - "0x84", - "0x1819a18d198", - "0x2e2", - "0x1819a18d198" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "b0f2b72a00000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 737, - "op": "JUMP", - "gas": 2997850, - "gasCost": 8, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x1819a18d198", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0xb0f2b72a", - "0x16a", - "0x1819a18d198", - "0x84", - "0xa4", - "0x31f", - "0x84", - "0x1819a18d198", - "0x2e2", - "0x1819a18d198", - "0x341" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "b0f2b72a00000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 833, - "op": "JUMPDEST", - "gas": 2997842, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x1819a18d198", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0xb0f2b72a", - "0x16a", - "0x1819a18d198", - "0x84", - "0xa4", - "0x31f", - "0x84", - "0x1819a18d198", - "0x2e2", - "0x1819a18d198" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "b0f2b72a00000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 834, - "op": "PUSH1", - "gas": 2997841, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x1819a18d198", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0xb0f2b72a", - "0x16a", - "0x1819a18d198", - "0x84", - "0xa4", - "0x31f", - "0x84", - "0x1819a18d198", - "0x2e2", - "0x1819a18d198" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "b0f2b72a00000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 836, - "op": "DUP2", - "gas": 2997838, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x1819a18d198", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0xb0f2b72a", - "0x16a", - "0x1819a18d198", - "0x84", - "0xa4", - "0x31f", - "0x84", - "0x1819a18d198", - "0x2e2", - "0x1819a18d198", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "b0f2b72a00000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 837, - "op": "SWAP1", - "gas": 2997835, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x1819a18d198", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0xb0f2b72a", - "0x16a", - "0x1819a18d198", - "0x84", - "0xa4", - "0x31f", - "0x84", - "0x1819a18d198", - "0x2e2", - "0x1819a18d198", - "0x0", - "0x1819a18d198" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "b0f2b72a00000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 838, - "op": "POP", - "gas": 2997832, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x1819a18d198", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0xb0f2b72a", - "0x16a", - "0x1819a18d198", - "0x84", - "0xa4", - "0x31f", - "0x84", - "0x1819a18d198", - "0x2e2", - "0x1819a18d198", - "0x1819a18d198", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "b0f2b72a00000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 839, - "op": "SWAP2", - "gas": 2997830, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x1819a18d198", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0xb0f2b72a", - "0x16a", - "0x1819a18d198", - "0x84", - "0xa4", - "0x31f", - "0x84", - "0x1819a18d198", - "0x2e2", - "0x1819a18d198", - "0x1819a18d198" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "b0f2b72a00000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 840, - "op": "SWAP1", - "gas": 2997827, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x1819a18d198", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0xb0f2b72a", - "0x16a", - "0x1819a18d198", - "0x84", - "0xa4", - "0x31f", - "0x84", - "0x1819a18d198", - "0x1819a18d198", - "0x1819a18d198", - "0x2e2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "b0f2b72a00000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 841, - "op": "POP", - "gas": 2997824, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x1819a18d198", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0xb0f2b72a", - "0x16a", - "0x1819a18d198", - "0x84", - "0xa4", - "0x31f", - "0x84", - "0x1819a18d198", - "0x1819a18d198", - "0x2e2", - "0x1819a18d198" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "b0f2b72a00000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 842, - "op": "JUMP", - "gas": 2997822, - "gasCost": 8, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x1819a18d198", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0xb0f2b72a", - "0x16a", - "0x1819a18d198", - "0x84", - "0xa4", - "0x31f", - "0x84", - "0x1819a18d198", - "0x1819a18d198", - "0x2e2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "b0f2b72a00000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 738, - "op": "JUMPDEST", - "gas": 2997814, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x1819a18d198", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0xb0f2b72a", - "0x16a", - "0x1819a18d198", - "0x84", - "0xa4", - "0x31f", - "0x84", - "0x1819a18d198", - "0x1819a18d198" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "b0f2b72a00000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 739, - "op": "DUP3", - "gas": 2997813, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x1819a18d198", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0xb0f2b72a", - "0x16a", - "0x1819a18d198", - "0x84", - "0xa4", - "0x31f", - "0x84", - "0x1819a18d198", - "0x1819a18d198" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "b0f2b72a00000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 740, - "op": "MSTORE", - "gas": 2997810, - "gasCost": 6, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x1819a18d198", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0xb0f2b72a", - "0x16a", - "0x1819a18d198", - "0x84", - "0xa4", - "0x31f", - "0x84", - "0x1819a18d198", - "0x1819a18d198", - "0x84" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "b0f2b72a00000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 741, - "op": "POP", - "gas": 2997804, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x1819a18d198", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0xb0f2b72a", - "0x16a", - "0x1819a18d198", - "0x84", - "0xa4", - "0x31f", - "0x84", - "0x1819a18d198" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "b0f2b72a00000000000000000000000000000000000000000000000000000181", - "9a18d19800000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 742, - "op": "POP", - "gas": 2997802, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x1819a18d198", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0xb0f2b72a", - "0x16a", - "0x1819a18d198", - "0x84", - "0xa4", - "0x31f", - "0x84" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "b0f2b72a00000000000000000000000000000000000000000000000000000181", - "9a18d19800000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 743, - "op": "JUMP", - "gas": 2997800, - "gasCost": 8, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x1819a18d198", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0xb0f2b72a", - "0x16a", - "0x1819a18d198", - "0x84", - "0xa4", - "0x31f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "b0f2b72a00000000000000000000000000000000000000000000000000000181", - "9a18d19800000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 799, - "op": "JUMPDEST", - "gas": 2997792, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x1819a18d198", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0xb0f2b72a", - "0x16a", - "0x1819a18d198", - "0x84", - "0xa4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "b0f2b72a00000000000000000000000000000000000000000000000000000181", - "9a18d19800000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 800, - "op": "SWAP3", - "gas": 2997791, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x1819a18d198", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0xb0f2b72a", - "0x16a", - "0x1819a18d198", - "0x84", - "0xa4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "b0f2b72a00000000000000000000000000000000000000000000000000000181", - "9a18d19800000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 801, - "op": "SWAP2", - "gas": 2997788, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x1819a18d198", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0xb0f2b72a", - "0xa4", - "0x1819a18d198", - "0x84", - "0x16a" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "b0f2b72a00000000000000000000000000000000000000000000000000000181", - "9a18d19800000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 802, - "op": "POP", - "gas": 2997785, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x1819a18d198", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0xb0f2b72a", - "0xa4", - "0x16a", - "0x84", - "0x1819a18d198" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "b0f2b72a00000000000000000000000000000000000000000000000000000181", - "9a18d19800000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 803, - "op": "POP", - "gas": 2997783, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x1819a18d198", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0xb0f2b72a", - "0xa4", - "0x16a", - "0x84" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "b0f2b72a00000000000000000000000000000000000000000000000000000181", - "9a18d19800000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 804, - "op": "JUMP", - "gas": 2997781, - "gasCost": 8, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x1819a18d198", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0xb0f2b72a", - "0xa4", - "0x16a" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "b0f2b72a00000000000000000000000000000000000000000000000000000181", - "9a18d19800000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 362, - "op": "JUMPDEST", - "gas": 2997773, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x1819a18d198", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0xb0f2b72a", - "0xa4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "b0f2b72a00000000000000000000000000000000000000000000000000000181", - "9a18d19800000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 363, - "op": "PUSH1", - "gas": 2997772, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x1819a18d198", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0xb0f2b72a", - "0xa4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "b0f2b72a00000000000000000000000000000000000000000000000000000181", - "9a18d19800000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 365, - "op": "PUSH1", - "gas": 2997769, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x1819a18d198", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0xb0f2b72a", - "0xa4", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "b0f2b72a00000000000000000000000000000000000000000000000000000181", - "9a18d19800000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 367, - "op": "MLOAD", - "gas": 2997766, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x1819a18d198", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0xb0f2b72a", - "0xa4", - "0x0", - "0x40" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "b0f2b72a00000000000000000000000000000000000000000000000000000181", - "9a18d19800000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 368, - "op": "DUP1", - "gas": 2997763, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x1819a18d198", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0xb0f2b72a", - "0xa4", - "0x0", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "b0f2b72a00000000000000000000000000000000000000000000000000000181", - "9a18d19800000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 369, - "op": "DUP4", - "gas": 2997760, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x1819a18d198", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0xb0f2b72a", - "0xa4", - "0x0", - "0x80", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "b0f2b72a00000000000000000000000000000000000000000000000000000181", - "9a18d19800000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 370, - "op": "SUB", - "gas": 2997757, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x1819a18d198", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0xb0f2b72a", - "0xa4", - "0x0", - "0x80", - "0x80", - "0xa4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "b0f2b72a00000000000000000000000000000000000000000000000000000181", - "9a18d19800000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 371, - "op": "DUP2", - "gas": 2997754, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x1819a18d198", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0xb0f2b72a", - "0xa4", - "0x0", - "0x80", - "0x24" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "b0f2b72a00000000000000000000000000000000000000000000000000000181", - "9a18d19800000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 372, - "op": "PUSH1", - "gas": 2997751, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x1819a18d198", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0xb0f2b72a", - "0xa4", - "0x0", - "0x80", - "0x24", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "b0f2b72a00000000000000000000000000000000000000000000000000000181", - "9a18d19800000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 374, - "op": "DUP8", - "gas": 2997748, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x1819a18d198", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0xb0f2b72a", - "0xa4", - "0x0", - "0x80", - "0x24", - "0x80", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "b0f2b72a00000000000000000000000000000000000000000000000000000181", - "9a18d19800000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 375, - "op": "DUP1", - "gas": 2997745, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x1819a18d198", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0xb0f2b72a", - "0xa4", - "0x0", - "0x80", - "0x24", - "0x80", - "0x0", - "0x5fdbdfae180345c6cff5316c286727cf1a43327" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "b0f2b72a00000000000000000000000000000000000000000000000000000181", - "9a18d19800000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 376, - "op": "EXTCODESIZE", - "gas": 2997742, - "gasCost": 2600, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x1819a18d198", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0xb0f2b72a", - "0xa4", - "0x0", - "0x80", - "0x24", - "0x80", - "0x0", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "b0f2b72a00000000000000000000000000000000000000000000000000000181", - "9a18d19800000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 377, - "op": "ISZERO", - "gas": 2995142, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x1819a18d198", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0xb0f2b72a", - "0xa4", - "0x0", - "0x80", - "0x24", - "0x80", - "0x0", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x1c0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "b0f2b72a00000000000000000000000000000000000000000000000000000181", - "9a18d19800000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 378, - "op": "DUP1", - "gas": 2995139, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x1819a18d198", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0xb0f2b72a", - "0xa4", - "0x0", - "0x80", - "0x24", - "0x80", - "0x0", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "b0f2b72a00000000000000000000000000000000000000000000000000000181", - "9a18d19800000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 379, - "op": "ISZERO", - "gas": 2995136, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x1819a18d198", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0xb0f2b72a", - "0xa4", - "0x0", - "0x80", - "0x24", - "0x80", - "0x0", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "b0f2b72a00000000000000000000000000000000000000000000000000000181", - "9a18d19800000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 380, - "op": "PUSH2", - "gas": 2995133, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x1819a18d198", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0xb0f2b72a", - "0xa4", - "0x0", - "0x80", - "0x24", - "0x80", - "0x0", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x0", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "b0f2b72a00000000000000000000000000000000000000000000000000000181", - "9a18d19800000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 383, - "op": "JUMPI", - "gas": 2995130, - "gasCost": 10, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x1819a18d198", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0xb0f2b72a", - "0xa4", - "0x0", - "0x80", - "0x24", - "0x80", - "0x0", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x0", - "0x1", - "0x184" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "b0f2b72a00000000000000000000000000000000000000000000000000000181", - "9a18d19800000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 388, - "op": "JUMPDEST", - "gas": 2995120, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x1819a18d198", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0xb0f2b72a", - "0xa4", - "0x0", - "0x80", - "0x24", - "0x80", - "0x0", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "b0f2b72a00000000000000000000000000000000000000000000000000000181", - "9a18d19800000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 389, - "op": "POP", - "gas": 2995119, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x1819a18d198", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0xb0f2b72a", - "0xa4", - "0x0", - "0x80", - "0x24", - "0x80", - "0x0", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "b0f2b72a00000000000000000000000000000000000000000000000000000181", - "9a18d19800000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 390, - "op": "GAS", - "gas": 2995117, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x1819a18d198", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0xb0f2b72a", - "0xa4", - "0x0", - "0x80", - "0x24", - "0x80", - "0x0", - "0x5fdbdfae180345c6cff5316c286727cf1a43327" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "b0f2b72a00000000000000000000000000000000000000000000000000000181", - "9a18d19800000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 391, - "op": "CALL", - "gas": 2995115, - "gasCost": 2948318, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x1819a18d198", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0xb0f2b72a", - "0xa4", - "0x0", - "0x80", - "0x24", - "0x80", - "0x0", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x2db3ab" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "b0f2b72a00000000000000000000000000000000000000000000000000000181", - "9a18d19800000000000000000000000000000000000000000000000000000000" - ], - "extraData": { - "codeList": [ - "0x608060405234801561001057600080fd5b50600436106100365760003560e01c806321848c461461003b578063b0f2b72a14610057575b600080fd5b61005560048036038101906100509190610277565b610073565b005b610071600480360381019061006c9190610277565b61010b565b005b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff166321848c46836040518263ffffffff1660e01b81526004016100d2919061030a565b600060405180830381600087803b1580156100ec57600080fd5b505af19250505080156100fd575060015b61010657610107565b5b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663b0f2b72a836040518263ffffffff1660e01b815260040161016a919061030a565b600060405180830381600087803b15801561018457600080fd5b505af1158015610198573d6000803e3d6000fd5b505050505050565b610236816040516024016101b491906102e8565b6040516020818303038152906040527f41304fac000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050610239565b50565b60008151905060006a636f6e736f6c652e6c6f679050602083016000808483855afa5050505050565b6000813590506102718161038f565b92915050565b60006020828403121561028957600080fd5b600061029784828501610262565b91505092915050565b60006102ab82610325565b6102b58185610330565b93506102c581856020860161034b565b6102ce8161037e565b840191505092915050565b6102e281610341565b82525050565b6000602082019050818103600083015261030281846102a0565b905092915050565b600060208201905061031f60008301846102d9565b92915050565b600081519050919050565b600082825260208201905092915050565b6000819050919050565b60005b8381101561036957808201518184015260208101905061034e565b83811115610378576000848401525b50505050565b6000601f19601f8301169050919050565b61039881610341565b81146103a357600080fd5b5056fea264697066735822122079a958a4c7a90094ec761b33fbd301163f4e1e62f3ccae8afe9f42a770e054f264736f6c63430008040033", - "0x608060405234801561001057600080fd5b506004361061004c5760003560e01c806321848c46146100515780632e64cec11461006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61006b60048036038101906100669190610116565b6100c5565b005b6100756100da565b604051610082919061014e565b60405180910390f35b6100a560048036038101906100a09190610116565b6100e3565b005b6100af6100ed565b6040516100bc919061014e565b60405180910390f35b8060008190555060006100d757600080fd5b50565b60008054905090565b8060008190555050565b6000806100f957600080fd5b600054905090565b60008135905061011081610173565b92915050565b60006020828403121561012857600080fd5b600061013684828501610101565b91505092915050565b61014881610169565b82525050565b6000602082019050610163600083018461013f565b92915050565b6000819050919050565b61017c81610169565b811461018757600080fd5b5056fea26469706673582212204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923f32e64736f6c63430008040033" - ], - "proofList": [ - { - "address": "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "nonce": 9, - "balance": "0x56bc75e2d630fffffffffffffffffffffffffffffffffffff5b523215e4890", - "codeHash": "0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470" - }, - { - "address": "0x05fdbdfae180345c6cff5316c286727cf1a43327", - "nonce": 1, - "balance": "0x0", - "codeHash": "0x09d2fd3a7cb9d5547a21c851248d703921e6348bfbdf4c0130695a3263f916ef" - }, - { - "address": "0x05fdbdfae180345c6cff5316c286727cf1a43327", - "nonce": 1, - "balance": "0x0", - "codeHash": "0x09d2fd3a7cb9d5547a21c851248d703921e6348bfbdf4c0130695a3263f916ef" - } - ] - } - }, - { - "pc": 0, - "op": "PUSH1", - "gas": 2948218, - "gasCost": 3, - "depth": 2 - }, - { - "pc": 2, - "op": "PUSH1", - "gas": 2948215, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x80" - ] - }, - { - "pc": 4, - "op": "MSTORE", - "gas": 2948212, - "gasCost": 12, - "depth": 2, - "stack": [ - "0x80", - "0x40" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 5, - "op": "CALLVALUE", - "gas": 2948200, - "gasCost": 2, - "depth": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 6, - "op": "DUP1", - "gas": 2948198, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 7, - "op": "ISZERO", - "gas": 2948195, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 8, - "op": "PUSH2", - "gas": 2948192, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x0", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 11, - "op": "JUMPI", - "gas": 2948189, - "gasCost": 10, - "depth": 2, - "stack": [ - "0x0", - "0x1", - "0x10" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 16, - "op": "JUMPDEST", - "gas": 2948179, - "gasCost": 1, - "depth": 2, - "stack": [ - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 17, - "op": "POP", - "gas": 2948178, - "gasCost": 2, - "depth": 2, - "stack": [ - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 18, - "op": "PUSH1", - "gas": 2948176, - "gasCost": 3, - "depth": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 20, - "op": "CALLDATASIZE", - "gas": 2948173, - "gasCost": 2, - "depth": 2, - "stack": [ - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 21, - "op": "LT", - "gas": 2948171, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x4", - "0x24" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 22, - "op": "PUSH2", - "gas": 2948168, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 25, - "op": "JUMPI", - "gas": 2948165, - "gasCost": 10, - "depth": 2, - "stack": [ - "0x0", - "0x4c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 26, - "op": "PUSH1", - "gas": 2948155, - "gasCost": 3, - "depth": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 28, - "op": "CALLDATALOAD", - "gas": 2948152, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 29, - "op": "PUSH1", - "gas": 2948149, - "gasCost": 3, - "depth": 2, - "stack": [ - "0xb0f2b72a00000000000000000000000000000000000000000000000000000181" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 31, - "op": "SHR", - "gas": 2948146, - "gasCost": 3, - "depth": 2, - "stack": [ - "0xb0f2b72a00000000000000000000000000000000000000000000000000000181", - "0xe0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 32, - "op": "DUP1", - "gas": 2948143, - "gasCost": 3, - "depth": 2, - "stack": [ - "0xb0f2b72a" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 33, - "op": "PUSH4", - "gas": 2948140, - "gasCost": 3, - "depth": 2, - "stack": [ - "0xb0f2b72a", - "0xb0f2b72a" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 38, - "op": "EQ", - "gas": 2948137, - "gasCost": 3, - "depth": 2, - "stack": [ - "0xb0f2b72a", - "0xb0f2b72a", - "0x21848c46" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 39, - "op": "PUSH2", - "gas": 2948134, - "gasCost": 3, - "depth": 2, - "stack": [ - "0xb0f2b72a", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 42, - "op": "JUMPI", - "gas": 2948131, - "gasCost": 10, - "depth": 2, - "stack": [ - "0xb0f2b72a", - "0x0", - "0x51" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 43, - "op": "DUP1", - "gas": 2948121, - "gasCost": 3, - "depth": 2, - "stack": [ - "0xb0f2b72a" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 44, - "op": "PUSH4", - "gas": 2948118, - "gasCost": 3, - "depth": 2, - "stack": [ - "0xb0f2b72a", - "0xb0f2b72a" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 49, - "op": "EQ", - "gas": 2948115, - "gasCost": 3, - "depth": 2, - "stack": [ - "0xb0f2b72a", - "0xb0f2b72a", - "0x2e64cec1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 50, - "op": "PUSH2", - "gas": 2948112, - "gasCost": 3, - "depth": 2, - "stack": [ - "0xb0f2b72a", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 53, - "op": "JUMPI", - "gas": 2948109, - "gasCost": 10, - "depth": 2, - "stack": [ - "0xb0f2b72a", - "0x0", - "0x6d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 54, - "op": "DUP1", - "gas": 2948099, - "gasCost": 3, - "depth": 2, - "stack": [ - "0xb0f2b72a" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 55, - "op": "PUSH4", - "gas": 2948096, - "gasCost": 3, - "depth": 2, - "stack": [ - "0xb0f2b72a", - "0xb0f2b72a" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 60, - "op": "EQ", - "gas": 2948093, - "gasCost": 3, - "depth": 2, - "stack": [ - "0xb0f2b72a", - "0xb0f2b72a", - "0xb0f2b72a" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 61, - "op": "PUSH2", - "gas": 2948090, - "gasCost": 3, - "depth": 2, - "stack": [ - "0xb0f2b72a", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 64, - "op": "JUMPI", - "gas": 2948087, - "gasCost": 10, - "depth": 2, - "stack": [ - "0xb0f2b72a", - "0x1", - "0x8b" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 139, - "op": "JUMPDEST", - "gas": 2948077, - "gasCost": 1, - "depth": 2, - "stack": [ - "0xb0f2b72a" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 140, - "op": "PUSH2", - "gas": 2948076, - "gasCost": 3, - "depth": 2, - "stack": [ - "0xb0f2b72a" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 143, - "op": "PUSH1", - "gas": 2948073, - "gasCost": 3, - "depth": 2, - "stack": [ - "0xb0f2b72a", - "0xa5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 145, - "op": "DUP1", - "gas": 2948070, - "gasCost": 3, - "depth": 2, - "stack": [ - "0xb0f2b72a", - "0xa5", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 146, - "op": "CALLDATASIZE", - "gas": 2948067, - "gasCost": 2, - "depth": 2, - "stack": [ - "0xb0f2b72a", - "0xa5", - "0x4", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 147, - "op": "SUB", - "gas": 2948065, - "gasCost": 3, - "depth": 2, - "stack": [ - "0xb0f2b72a", - "0xa5", - "0x4", - "0x4", - "0x24" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 148, - "op": "DUP2", - "gas": 2948062, - "gasCost": 3, - "depth": 2, - "stack": [ - "0xb0f2b72a", - "0xa5", - "0x4", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 149, - "op": "ADD", - "gas": 2948059, - "gasCost": 3, - "depth": 2, - "stack": [ - "0xb0f2b72a", - "0xa5", - "0x4", - "0x20", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 150, - "op": "SWAP1", - "gas": 2948056, - "gasCost": 3, - "depth": 2, - "stack": [ - "0xb0f2b72a", - "0xa5", - "0x4", - "0x24" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 151, - "op": "PUSH2", - "gas": 2948053, - "gasCost": 3, - "depth": 2, - "stack": [ - "0xb0f2b72a", - "0xa5", - "0x24", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 154, - "op": "SWAP2", - "gas": 2948050, - "gasCost": 3, - "depth": 2, - "stack": [ - "0xb0f2b72a", - "0xa5", - "0x24", - "0x4", - "0xa0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 155, - "op": "SWAP1", - "gas": 2948047, - "gasCost": 3, - "depth": 2, - "stack": [ - "0xb0f2b72a", - "0xa5", - "0xa0", - "0x4", - "0x24" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 156, - "op": "PUSH2", - "gas": 2948044, - "gasCost": 3, - "depth": 2, - "stack": [ - "0xb0f2b72a", - "0xa5", - "0xa0", - "0x24", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 159, - "op": "JUMP", - "gas": 2948041, - "gasCost": 8, - "depth": 2, - "stack": [ - "0xb0f2b72a", - "0xa5", - "0xa0", - "0x24", - "0x4", - "0x116" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 278, - "op": "JUMPDEST", - "gas": 2948033, - "gasCost": 1, - "depth": 2, - "stack": [ - "0xb0f2b72a", - "0xa5", - "0xa0", - "0x24", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 279, - "op": "PUSH1", - "gas": 2948032, - "gasCost": 3, - "depth": 2, - "stack": [ - "0xb0f2b72a", - "0xa5", - "0xa0", - "0x24", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 281, - "op": "PUSH1", - "gas": 2948029, - "gasCost": 3, - "depth": 2, - "stack": [ - "0xb0f2b72a", - "0xa5", - "0xa0", - "0x24", - "0x4", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 283, - "op": "DUP3", - "gas": 2948026, - "gasCost": 3, - "depth": 2, - "stack": [ - "0xb0f2b72a", - "0xa5", - "0xa0", - "0x24", - "0x4", - "0x0", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 284, - "op": "DUP5", - "gas": 2948023, - "gasCost": 3, - "depth": 2, - "stack": [ - "0xb0f2b72a", - "0xa5", - "0xa0", - "0x24", - "0x4", - "0x0", - "0x20", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 285, - "op": "SUB", - "gas": 2948020, - "gasCost": 3, - "depth": 2, - "stack": [ - "0xb0f2b72a", - "0xa5", - "0xa0", - "0x24", - "0x4", - "0x0", - "0x20", - "0x4", - "0x24" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 286, - "op": "SLT", - "gas": 2948017, - "gasCost": 3, - "depth": 2, - "stack": [ - "0xb0f2b72a", - "0xa5", - "0xa0", - "0x24", - "0x4", - "0x0", - "0x20", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 287, - "op": "ISZERO", - "gas": 2948014, - "gasCost": 3, - "depth": 2, - "stack": [ - "0xb0f2b72a", - "0xa5", - "0xa0", - "0x24", - "0x4", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 288, - "op": "PUSH2", - "gas": 2948011, - "gasCost": 3, - "depth": 2, - "stack": [ - "0xb0f2b72a", - "0xa5", - "0xa0", - "0x24", - "0x4", - "0x0", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 291, - "op": "JUMPI", - "gas": 2948008, - "gasCost": 10, - "depth": 2, - "stack": [ - "0xb0f2b72a", - "0xa5", - "0xa0", - "0x24", - "0x4", - "0x0", - "0x1", - "0x128" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 296, - "op": "JUMPDEST", - "gas": 2947998, - "gasCost": 1, - "depth": 2, - "stack": [ - "0xb0f2b72a", - "0xa5", - "0xa0", - "0x24", - "0x4", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 297, - "op": "PUSH1", - "gas": 2947997, - "gasCost": 3, - "depth": 2, - "stack": [ - "0xb0f2b72a", - "0xa5", - "0xa0", - "0x24", - "0x4", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 299, - "op": "PUSH2", - "gas": 2947994, - "gasCost": 3, - "depth": 2, - "stack": [ - "0xb0f2b72a", - "0xa5", - "0xa0", - "0x24", - "0x4", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 302, - "op": "DUP5", - "gas": 2947991, - "gasCost": 3, - "depth": 2, - "stack": [ - "0xb0f2b72a", - "0xa5", - "0xa0", - "0x24", - "0x4", - "0x0", - "0x0", - "0x136" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 303, - "op": "DUP3", - "gas": 2947988, - "gasCost": 3, - "depth": 2, - "stack": [ - "0xb0f2b72a", - "0xa5", - "0xa0", - "0x24", - "0x4", - "0x0", - "0x0", - "0x136", - "0x24" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 304, - "op": "DUP6", - "gas": 2947985, - "gasCost": 3, - "depth": 2, - "stack": [ - "0xb0f2b72a", - "0xa5", - "0xa0", - "0x24", - "0x4", - "0x0", - "0x0", - "0x136", - "0x24", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 305, - "op": "ADD", - "gas": 2947982, - "gasCost": 3, - "depth": 2, - "stack": [ - "0xb0f2b72a", - "0xa5", - "0xa0", - "0x24", - "0x4", - "0x0", - "0x0", - "0x136", - "0x24", - "0x0", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 306, - "op": "PUSH2", - "gas": 2947979, - "gasCost": 3, - "depth": 2, - "stack": [ - "0xb0f2b72a", - "0xa5", - "0xa0", - "0x24", - "0x4", - "0x0", - "0x0", - "0x136", - "0x24", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 309, - "op": "JUMP", - "gas": 2947976, - "gasCost": 8, - "depth": 2, - "stack": [ - "0xb0f2b72a", - "0xa5", - "0xa0", - "0x24", - "0x4", - "0x0", - "0x0", - "0x136", - "0x24", - "0x4", - "0x101" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 257, - "op": "JUMPDEST", - "gas": 2947968, - "gasCost": 1, - "depth": 2, - "stack": [ - "0xb0f2b72a", - "0xa5", - "0xa0", - "0x24", - "0x4", - "0x0", - "0x0", - "0x136", - "0x24", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 258, - "op": "PUSH1", - "gas": 2947967, - "gasCost": 3, - "depth": 2, - "stack": [ - "0xb0f2b72a", - "0xa5", - "0xa0", - "0x24", - "0x4", - "0x0", - "0x0", - "0x136", - "0x24", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 260, - "op": "DUP2", - "gas": 2947964, - "gasCost": 3, - "depth": 2, - "stack": [ - "0xb0f2b72a", - "0xa5", - "0xa0", - "0x24", - "0x4", - "0x0", - "0x0", - "0x136", - "0x24", - "0x4", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 261, - "op": "CALLDATALOAD", - "gas": 2947961, - "gasCost": 3, - "depth": 2, - "stack": [ - "0xb0f2b72a", - "0xa5", - "0xa0", - "0x24", - "0x4", - "0x0", - "0x0", - "0x136", - "0x24", - "0x4", - "0x0", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 262, - "op": "SWAP1", - "gas": 2947958, - "gasCost": 3, - "depth": 2, - "stack": [ - "0xb0f2b72a", - "0xa5", - "0xa0", - "0x24", - "0x4", - "0x0", - "0x0", - "0x136", - "0x24", - "0x4", - "0x0", - "0x1819a18d198" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 263, - "op": "POP", - "gas": 2947955, - "gasCost": 2, - "depth": 2, - "stack": [ - "0xb0f2b72a", - "0xa5", - "0xa0", - "0x24", - "0x4", - "0x0", - "0x0", - "0x136", - "0x24", - "0x4", - "0x1819a18d198", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 264, - "op": "PUSH2", - "gas": 2947953, - "gasCost": 3, - "depth": 2, - "stack": [ - "0xb0f2b72a", - "0xa5", - "0xa0", - "0x24", - "0x4", - "0x0", - "0x0", - "0x136", - "0x24", - "0x4", - "0x1819a18d198" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 267, - "op": "DUP2", - "gas": 2947950, - "gasCost": 3, - "depth": 2, - "stack": [ - "0xb0f2b72a", - "0xa5", - "0xa0", - "0x24", - "0x4", - "0x0", - "0x0", - "0x136", - "0x24", - "0x4", - "0x1819a18d198", - "0x110" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 268, - "op": "PUSH2", - "gas": 2947947, - "gasCost": 3, - "depth": 2, - "stack": [ - "0xb0f2b72a", - "0xa5", - "0xa0", - "0x24", - "0x4", - "0x0", - "0x0", - "0x136", - "0x24", - "0x4", - "0x1819a18d198", - "0x110", - "0x1819a18d198" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 271, - "op": "JUMP", - "gas": 2947944, - "gasCost": 8, - "depth": 2, - "stack": [ - "0xb0f2b72a", - "0xa5", - "0xa0", - "0x24", - "0x4", - "0x0", - "0x0", - "0x136", - "0x24", - "0x4", - "0x1819a18d198", - "0x110", - "0x1819a18d198", - "0x173" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 371, - "op": "JUMPDEST", - "gas": 2947936, - "gasCost": 1, - "depth": 2, - "stack": [ - "0xb0f2b72a", - "0xa5", - "0xa0", - "0x24", - "0x4", - "0x0", - "0x0", - "0x136", - "0x24", - "0x4", - "0x1819a18d198", - "0x110", - "0x1819a18d198" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 372, - "op": "PUSH2", - "gas": 2947935, - "gasCost": 3, - "depth": 2, - "stack": [ - "0xb0f2b72a", - "0xa5", - "0xa0", - "0x24", - "0x4", - "0x0", - "0x0", - "0x136", - "0x24", - "0x4", - "0x1819a18d198", - "0x110", - "0x1819a18d198" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 375, - "op": "DUP2", - "gas": 2947932, - "gasCost": 3, - "depth": 2, - "stack": [ - "0xb0f2b72a", - "0xa5", - "0xa0", - "0x24", - "0x4", - "0x0", - "0x0", - "0x136", - "0x24", - "0x4", - "0x1819a18d198", - "0x110", - "0x1819a18d198", - "0x17c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 376, - "op": "PUSH2", - "gas": 2947929, - "gasCost": 3, - "depth": 2, - "stack": [ - "0xb0f2b72a", - "0xa5", - "0xa0", - "0x24", - "0x4", - "0x0", - "0x0", - "0x136", - "0x24", - "0x4", - "0x1819a18d198", - "0x110", - "0x1819a18d198", - "0x17c", - "0x1819a18d198" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 379, - "op": "JUMP", - "gas": 2947926, - "gasCost": 8, - "depth": 2, - "stack": [ - "0xb0f2b72a", - "0xa5", - "0xa0", - "0x24", - "0x4", - "0x0", - "0x0", - "0x136", - "0x24", - "0x4", - "0x1819a18d198", - "0x110", - "0x1819a18d198", - "0x17c", - "0x1819a18d198", - "0x169" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 361, - "op": "JUMPDEST", - "gas": 2947918, - "gasCost": 1, - "depth": 2, - "stack": [ - "0xb0f2b72a", - "0xa5", - "0xa0", - "0x24", - "0x4", - "0x0", - "0x0", - "0x136", - "0x24", - "0x4", - "0x1819a18d198", - "0x110", - "0x1819a18d198", - "0x17c", - "0x1819a18d198" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 362, - "op": "PUSH1", - "gas": 2947917, - "gasCost": 3, - "depth": 2, - "stack": [ - "0xb0f2b72a", - "0xa5", - "0xa0", - "0x24", - "0x4", - "0x0", - "0x0", - "0x136", - "0x24", - "0x4", - "0x1819a18d198", - "0x110", - "0x1819a18d198", - "0x17c", - "0x1819a18d198" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 364, - "op": "DUP2", - "gas": 2947914, - "gasCost": 3, - "depth": 2, - "stack": [ - "0xb0f2b72a", - "0xa5", - "0xa0", - "0x24", - "0x4", - "0x0", - "0x0", - "0x136", - "0x24", - "0x4", - "0x1819a18d198", - "0x110", - "0x1819a18d198", - "0x17c", - "0x1819a18d198", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 365, - "op": "SWAP1", - "gas": 2947911, - "gasCost": 3, - "depth": 2, - "stack": [ - "0xb0f2b72a", - "0xa5", - "0xa0", - "0x24", - "0x4", - "0x0", - "0x0", - "0x136", - "0x24", - "0x4", - "0x1819a18d198", - "0x110", - "0x1819a18d198", - "0x17c", - "0x1819a18d198", - "0x0", - "0x1819a18d198" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 366, - "op": "POP", - "gas": 2947908, - "gasCost": 2, - "depth": 2, - "stack": [ - "0xb0f2b72a", - "0xa5", - "0xa0", - "0x24", - "0x4", - "0x0", - "0x0", - "0x136", - "0x24", - "0x4", - "0x1819a18d198", - "0x110", - "0x1819a18d198", - "0x17c", - "0x1819a18d198", - "0x1819a18d198", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 367, - "op": "SWAP2", - "gas": 2947906, - "gasCost": 3, - "depth": 2, - "stack": [ - "0xb0f2b72a", - "0xa5", - "0xa0", - "0x24", - "0x4", - "0x0", - "0x0", - "0x136", - "0x24", - "0x4", - "0x1819a18d198", - "0x110", - "0x1819a18d198", - "0x17c", - "0x1819a18d198", - "0x1819a18d198" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 368, - "op": "SWAP1", - "gas": 2947903, - "gasCost": 3, - "depth": 2, - "stack": [ - "0xb0f2b72a", - "0xa5", - "0xa0", - "0x24", - "0x4", - "0x0", - "0x0", - "0x136", - "0x24", - "0x4", - "0x1819a18d198", - "0x110", - "0x1819a18d198", - "0x1819a18d198", - "0x1819a18d198", - "0x17c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 369, - "op": "POP", - "gas": 2947900, - "gasCost": 2, - "depth": 2, - "stack": [ - "0xb0f2b72a", - "0xa5", - "0xa0", - "0x24", - "0x4", - "0x0", - "0x0", - "0x136", - "0x24", - "0x4", - "0x1819a18d198", - "0x110", - "0x1819a18d198", - "0x1819a18d198", - "0x17c", - "0x1819a18d198" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 370, - "op": "JUMP", - "gas": 2947898, - "gasCost": 8, - "depth": 2, - "stack": [ - "0xb0f2b72a", - "0xa5", - "0xa0", - "0x24", - "0x4", - "0x0", - "0x0", - "0x136", - "0x24", - "0x4", - "0x1819a18d198", - "0x110", - "0x1819a18d198", - "0x1819a18d198", - "0x17c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 380, - "op": "JUMPDEST", - "gas": 2947890, - "gasCost": 1, - "depth": 2, - "stack": [ - "0xb0f2b72a", - "0xa5", - "0xa0", - "0x24", - "0x4", - "0x0", - "0x0", - "0x136", - "0x24", - "0x4", - "0x1819a18d198", - "0x110", - "0x1819a18d198", - "0x1819a18d198" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 381, - "op": "DUP2", - "gas": 2947889, - "gasCost": 3, - "depth": 2, - "stack": [ - "0xb0f2b72a", - "0xa5", - "0xa0", - "0x24", - "0x4", - "0x0", - "0x0", - "0x136", - "0x24", - "0x4", - "0x1819a18d198", - "0x110", - "0x1819a18d198", - "0x1819a18d198" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 382, - "op": "EQ", - "gas": 2947886, - "gasCost": 3, - "depth": 2, - "stack": [ - "0xb0f2b72a", - "0xa5", - "0xa0", - "0x24", - "0x4", - "0x0", - "0x0", - "0x136", - "0x24", - "0x4", - "0x1819a18d198", - "0x110", - "0x1819a18d198", - "0x1819a18d198", - "0x1819a18d198" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 383, - "op": "PUSH2", - "gas": 2947883, - "gasCost": 3, - "depth": 2, - "stack": [ - "0xb0f2b72a", - "0xa5", - "0xa0", - "0x24", - "0x4", - "0x0", - "0x0", - "0x136", - "0x24", - "0x4", - "0x1819a18d198", - "0x110", - "0x1819a18d198", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 386, - "op": "JUMPI", - "gas": 2947880, - "gasCost": 10, - "depth": 2, - "stack": [ - "0xb0f2b72a", - "0xa5", - "0xa0", - "0x24", - "0x4", - "0x0", - "0x0", - "0x136", - "0x24", - "0x4", - "0x1819a18d198", - "0x110", - "0x1819a18d198", - "0x1", - "0x187" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 391, - "op": "JUMPDEST", - "gas": 2947870, - "gasCost": 1, - "depth": 2, - "stack": [ - "0xb0f2b72a", - "0xa5", - "0xa0", - "0x24", - "0x4", - "0x0", - "0x0", - "0x136", - "0x24", - "0x4", - "0x1819a18d198", - "0x110", - "0x1819a18d198" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 392, - "op": "POP", - "gas": 2947869, - "gasCost": 2, - "depth": 2, - "stack": [ - "0xb0f2b72a", - "0xa5", - "0xa0", - "0x24", - "0x4", - "0x0", - "0x0", - "0x136", - "0x24", - "0x4", - "0x1819a18d198", - "0x110", - "0x1819a18d198" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 393, - "op": "JUMP", - "gas": 2947867, - "gasCost": 8, - "depth": 2, - "stack": [ - "0xb0f2b72a", - "0xa5", - "0xa0", - "0x24", - "0x4", - "0x0", - "0x0", - "0x136", - "0x24", - "0x4", - "0x1819a18d198", - "0x110" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 272, - "op": "JUMPDEST", - "gas": 2947859, - "gasCost": 1, - "depth": 2, - "stack": [ - "0xb0f2b72a", - "0xa5", - "0xa0", - "0x24", - "0x4", - "0x0", - "0x0", - "0x136", - "0x24", - "0x4", - "0x1819a18d198" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 273, - "op": "SWAP3", - "gas": 2947858, - "gasCost": 3, - "depth": 2, - "stack": [ - "0xb0f2b72a", - "0xa5", - "0xa0", - "0x24", - "0x4", - "0x0", - "0x0", - "0x136", - "0x24", - "0x4", - "0x1819a18d198" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 274, - "op": "SWAP2", - "gas": 2947855, - "gasCost": 3, - "depth": 2, - "stack": [ - "0xb0f2b72a", - "0xa5", - "0xa0", - "0x24", - "0x4", - "0x0", - "0x0", - "0x1819a18d198", - "0x24", - "0x4", - "0x136" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 275, - "op": "POP", - "gas": 2947852, - "gasCost": 2, - "depth": 2, - "stack": [ - "0xb0f2b72a", - "0xa5", - "0xa0", - "0x24", - "0x4", - "0x0", - "0x0", - "0x1819a18d198", - "0x136", - "0x4", - "0x24" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 276, - "op": "POP", - "gas": 2947850, - "gasCost": 2, - "depth": 2, - "stack": [ - "0xb0f2b72a", - "0xa5", - "0xa0", - "0x24", - "0x4", - "0x0", - "0x0", - "0x1819a18d198", - "0x136", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 277, - "op": "JUMP", - "gas": 2947848, - "gasCost": 8, - "depth": 2, - "stack": [ - "0xb0f2b72a", - "0xa5", - "0xa0", - "0x24", - "0x4", - "0x0", - "0x0", - "0x1819a18d198", - "0x136" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 310, - "op": "JUMPDEST", - "gas": 2947840, - "gasCost": 1, - "depth": 2, - "stack": [ - "0xb0f2b72a", - "0xa5", - "0xa0", - "0x24", - "0x4", - "0x0", - "0x0", - "0x1819a18d198" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 311, - "op": "SWAP2", - "gas": 2947839, - "gasCost": 3, - "depth": 2, - "stack": [ - "0xb0f2b72a", - "0xa5", - "0xa0", - "0x24", - "0x4", - "0x0", - "0x0", - "0x1819a18d198" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 312, - "op": "POP", - "gas": 2947836, - "gasCost": 2, - "depth": 2, - "stack": [ - "0xb0f2b72a", - "0xa5", - "0xa0", - "0x24", - "0x4", - "0x1819a18d198", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 313, - "op": "POP", - "gas": 2947834, - "gasCost": 2, - "depth": 2, - "stack": [ - "0xb0f2b72a", - "0xa5", - "0xa0", - "0x24", - "0x4", - "0x1819a18d198", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 314, - "op": "SWAP3", - "gas": 2947832, - "gasCost": 3, - "depth": 2, - "stack": [ - "0xb0f2b72a", - "0xa5", - "0xa0", - "0x24", - "0x4", - "0x1819a18d198" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 315, - "op": "SWAP2", - "gas": 2947829, - "gasCost": 3, - "depth": 2, - "stack": [ - "0xb0f2b72a", - "0xa5", - "0x1819a18d198", - "0x24", - "0x4", - "0xa0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 316, - "op": "POP", - "gas": 2947826, - "gasCost": 2, - "depth": 2, - "stack": [ - "0xb0f2b72a", - "0xa5", - "0x1819a18d198", - "0xa0", - "0x4", - "0x24" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 317, - "op": "POP", - "gas": 2947824, - "gasCost": 2, - "depth": 2, - "stack": [ - "0xb0f2b72a", - "0xa5", - "0x1819a18d198", - "0xa0", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 318, - "op": "JUMP", - "gas": 2947822, - "gasCost": 8, - "depth": 2, - "stack": [ - "0xb0f2b72a", - "0xa5", - "0x1819a18d198", - "0xa0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 160, - "op": "JUMPDEST", - "gas": 2947814, - "gasCost": 1, - "depth": 2, - "stack": [ - "0xb0f2b72a", - "0xa5", - "0x1819a18d198" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 161, - "op": "PUSH2", - "gas": 2947813, - "gasCost": 3, - "depth": 2, - "stack": [ - "0xb0f2b72a", - "0xa5", - "0x1819a18d198" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 164, - "op": "JUMP", - "gas": 2947810, - "gasCost": 8, - "depth": 2, - "stack": [ - "0xb0f2b72a", - "0xa5", - "0x1819a18d198", - "0xe3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 227, - "op": "JUMPDEST", - "gas": 2947802, - "gasCost": 1, - "depth": 2, - "stack": [ - "0xb0f2b72a", - "0xa5", - "0x1819a18d198" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 228, - "op": "DUP1", - "gas": 2947801, - "gasCost": 3, - "depth": 2, - "stack": [ - "0xb0f2b72a", - "0xa5", - "0x1819a18d198" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 229, - "op": "PUSH1", - "gas": 2947798, - "gasCost": 3, - "depth": 2, - "stack": [ - "0xb0f2b72a", - "0xa5", - "0x1819a18d198", - "0x1819a18d198" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 231, - "op": "DUP2", - "gas": 2947795, - "gasCost": 3, - "depth": 2, - "stack": [ - "0xb0f2b72a", - "0xa5", - "0x1819a18d198", - "0x1819a18d198", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 232, - "op": "SWAP1", - "gas": 2947792, - "gasCost": 3, - "depth": 2, - "stack": [ - "0xb0f2b72a", - "0xa5", - "0x1819a18d198", - "0x1819a18d198", - "0x0", - "0x1819a18d198" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 233, - "op": "SSTORE", - "gas": 2947789, - "gasCost": 5000, - "depth": 2, - "stack": [ - "0xb0f2b72a", - "0xa5", - "0x1819a18d198", - "0x1819a18d198", - "0x1819a18d198", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0x0000000000000000000000000000000000000000000000000000000000000000": "0x000000000000000000000000000000000000000000000000000001819a18d198" - }, - "extraData": { - "proofList": [ - { - "address": "0x05fdbdfae180345c6cff5316c286727cf1a43327", - "nonce": 1, - "balance": "0x0", - "codeHash": "0x09d2fd3a7cb9d5547a21c851248d703921e6348bfbdf4c0130695a3263f916ef", - "storage": { - "key": "0x0000000000000000000000000000000000000000000000000000000000000000", - "value": "0x00000000000000000000000000000000000000000000000000000181964e7585" - } - } - ] - } - }, - { - "pc": 234, - "op": "POP", - "gas": 2942789, - "gasCost": 2, - "depth": 2, - "stack": [ - "0xb0f2b72a", - "0xa5", - "0x1819a18d198", - "0x1819a18d198" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 235, - "op": "POP", - "gas": 2942787, - "gasCost": 2, - "depth": 2, - "stack": [ - "0xb0f2b72a", - "0xa5", - "0x1819a18d198" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 236, - "op": "JUMP", - "gas": 2942785, - "gasCost": 8, - "depth": 2, - "stack": [ - "0xb0f2b72a", - "0xa5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 165, - "op": "JUMPDEST", - "gas": 2942777, - "gasCost": 1, - "depth": 2, - "stack": [ - "0xb0f2b72a" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 166, - "op": "STOP", - "gas": 2942776, - "gasCost": 0, - "depth": 2, - "stack": [ - "0xb0f2b72a" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 392, - "op": "ISZERO", - "gas": 2989573, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x1819a18d198", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0xb0f2b72a", - "0xa4", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "b0f2b72a00000000000000000000000000000000000000000000000000000181", - "9a18d19800000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 393, - "op": "DUP1", - "gas": 2989570, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x1819a18d198", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0xb0f2b72a", - "0xa4", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "b0f2b72a00000000000000000000000000000000000000000000000000000181", - "9a18d19800000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 394, - "op": "ISZERO", - "gas": 2989567, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x1819a18d198", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0xb0f2b72a", - "0xa4", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "b0f2b72a00000000000000000000000000000000000000000000000000000181", - "9a18d19800000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 395, - "op": "PUSH2", - "gas": 2989564, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x1819a18d198", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0xb0f2b72a", - "0xa4", - "0x0", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "b0f2b72a00000000000000000000000000000000000000000000000000000181", - "9a18d19800000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 398, - "op": "JUMPI", - "gas": 2989561, - "gasCost": 10, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x1819a18d198", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0xb0f2b72a", - "0xa4", - "0x0", - "0x1", - "0x198" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "b0f2b72a00000000000000000000000000000000000000000000000000000181", - "9a18d19800000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 408, - "op": "JUMPDEST", - "gas": 2989551, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x1819a18d198", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0xb0f2b72a", - "0xa4", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "b0f2b72a00000000000000000000000000000000000000000000000000000181", - "9a18d19800000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 409, - "op": "POP", - "gas": 2989550, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x1819a18d198", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0xb0f2b72a", - "0xa4", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "b0f2b72a00000000000000000000000000000000000000000000000000000181", - "9a18d19800000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 410, - "op": "POP", - "gas": 2989548, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x1819a18d198", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0xb0f2b72a", - "0xa4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "b0f2b72a00000000000000000000000000000000000000000000000000000181", - "9a18d19800000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 411, - "op": "POP", - "gas": 2989546, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x1819a18d198", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0xb0f2b72a" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "b0f2b72a00000000000000000000000000000000000000000000000000000181", - "9a18d19800000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 412, - "op": "POP", - "gas": 2989544, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x1819a18d198", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "b0f2b72a00000000000000000000000000000000000000000000000000000181", - "9a18d19800000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 413, - "op": "POP", - "gas": 2989542, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x1819a18d198", - "0x5fdbdfae180345c6cff5316c286727cf1a43327" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "b0f2b72a00000000000000000000000000000000000000000000000000000181", - "9a18d19800000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 414, - "op": "POP", - "gas": 2989540, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71", - "0x1819a18d198" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "b0f2b72a00000000000000000000000000000000000000000000000000000181", - "9a18d19800000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 415, - "op": "JUMP", - "gas": 2989538, - "gasCost": 8, - "depth": 1, - "stack": [ - "0xb0f2b72a", - "0x71" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "b0f2b72a00000000000000000000000000000000000000000000000000000181", - "9a18d19800000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 113, - "op": "JUMPDEST", - "gas": 2989530, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xb0f2b72a" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "b0f2b72a00000000000000000000000000000000000000000000000000000181", - "9a18d19800000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 114, - "op": "STOP", - "gas": 2989529, - "gasCost": 0, - "depth": 1, - "stack": [ - "0xb0f2b72a" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "b0f2b72a00000000000000000000000000000000000000000000000000000181", - "9a18d19800000000000000000000000000000000000000000000000000000000" - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/trie/zkproof/create_trace.json b/trie/zkproof/create_trace.json deleted file mode 100644 index c9ed167594..0000000000 --- a/trie/zkproof/create_trace.json +++ /dev/null @@ -1,9517 +0,0 @@ -{ - "blockTrace": { - "number": "0x7", - "hash": "0x6dfd456c6f4513e49907421397d2df01f264885c08a70548fcdc49a68cfcad4f", - "gasLimit": 6768050, - "difficulty": "0x2", - "baseFee": "0x19a7fc56", - "coinbase": { - "address": "0x0000000000000000000000000000000000000000", - "nonce": 0, - "balance": "0x0", - "codeHash": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - "time": 1656146473, - "transactions": [ - { - "type": 2, - "nonce": 7, - "gas": 3021784, - "gasPrice": "0x20789b5c", - "from": "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "to": "0x33b5ddf9b5e82bb958eb885f5f241e783a113f18", - "chainId": "0xcf55", - "value": "0x0", - "data": "0xc5b0437c000000000000000000000000000000000000000000000000000001819a05b30c", - "isCreate": false, - "v": "0x0", - "r": "0x6a959e326a00a8919c37343198bdaf712c02ad16f3b1a0bef39b74064c879a0a", - "s": "0x3bb7048e05f646f1c64da6b7a4cb57192c66b534c838921168bf23e30496b2a" - } - ] - }, - "storageTrace": { - "rootBefore": "0x2ccd52e2f313572c80dab2ebacce815622e7d4d050d9566f403de881baf3692f", - "rootAfter": "0x2354ef121808d9edad50a86b066542652328bf167d782933c168bc9e5c7ea986", - "proofs": { - "0x0000000000000000000000000000000000000000": [ - "0x00923ad76a4f3e4c63049db2818456f9037e49b5b467292e893b8fc3afe1cdd0196860cbffce5c327d0a302bd3acb02f44218a8dbdc572abf38aecd5f4a629b22c", - "0x01e232499c4754368052075d13fb84b18537b94a2da166170e7bd94bdc879097090404000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000cc0a77f6e063b4b62eb7d9ed6f427cf687d8d0071d751850cfe5d136bc60d3ab000000000000000000000000000000000000000000000000000000000000000000", - "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" - ], - "0x33B5DDf9b5e82Bb958EB885F5F241E783A113f18": [ - "0x00923ad76a4f3e4c63049db2818456f9037e49b5b467292e893b8fc3afe1cdd0196860cbffce5c327d0a302bd3acb02f44218a8dbdc572abf38aecd5f4a629b22c", - "0x01e232499c4754368052075d13fb84b18537b94a2da166170e7bd94bdc879097090404000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000cc0a77f6e063b4b62eb7d9ed6f427cf687d8d0071d751850cfe5d136bc60d3ab000000000000000000000000000000000000000000000000000000000000000000", - "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" - ], - "0x4cb1aB63aF5D8931Ce09673EbD8ae2ce16fD6571": [ - "0x00923ad76a4f3e4c63049db2818456f9037e49b5b467292e893b8fc3afe1cdd0196860cbffce5c327d0a302bd3acb02f44218a8dbdc572abf38aecd5f4a629b22c", - "0x00835c190b3854a357b9d67feb51686f088142fb34d0460035f7980f548b947b0fd42b1f9c974d478ce2666e6f703a929c2c0decfe4cb35b6cd034e73bc7fb8816", - "0x0000000000000000000000000000000000000000000000000000000000000000008961b4e3463c22f9940c732e0a532a494229be7a4ca99d724f671347e4cb3705", - "0x00c443fb3de24af346484b29f36a44cc2e5ea92560cf7c08328f965174d74f4e1b0000000000000000000000000000000000000000000000000000000000000000", - "0x0000000000000000000000000000000000000000000000000000000000000000006ed3c9d78886ae2d4311d40dc8281d6a1375fd2e118379b33b83d50ec14d0c06", - "0x0078c7b59d789c294f21339f0a872b81a418d6b24273fe959dc00126520917970d3cdc45e4c13058e459814b220d7417d6462e07e856f99ce2bca4505e4459a801", - "0x000000000000000000000000000000000000000000000000000000000000000000708b1c2772a2d993c10475516b3f09623ba5218fa2baebeb4415d0ce600ebc23", - "0x006f3dc292caee8ef7cb681666b8898f27e97a9b9470559ad15a631981af2e911fa72c67edca1db779b38140aaee9baf382c96315f0884909da4a4a7480f3ab82d", - "0x017581e431a68d0fa641e14a7d29a6c2b150db6da1d13f59dee6f7f492a0bebd290404000000000000000000000000000000000000000000000000000000000000000000070056bc75e2d630fffffffffffffffffffffffffffffffffffffa1238d58b6896c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470000000000000000000000000000000000000000000000000000000000000000000", - "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" - ], - "0x75d0D116B2f8A249a427bC68AAc7818684E25319": [ - "0x00923ad76a4f3e4c63049db2818456f9037e49b5b467292e893b8fc3afe1cdd0196860cbffce5c327d0a302bd3acb02f44218a8dbdc572abf38aecd5f4a629b22c", - "0x00835c190b3854a357b9d67feb51686f088142fb34d0460035f7980f548b947b0fd42b1f9c974d478ce2666e6f703a929c2c0decfe4cb35b6cd034e73bc7fb8816", - "0x0000000000000000000000000000000000000000000000000000000000000000008961b4e3463c22f9940c732e0a532a494229be7a4ca99d724f671347e4cb3705", - "0x02", - "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" - ] - }, - "storageProofs": { - "0x33B5DDf9b5e82Bb958EB885F5F241E783A113f18": { - "0x0000000000000000000000000000000000000000000000000000000000000000": [ - "0x02", - "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" - ] - }, - "0x75d0D116B2f8A249a427bC68AAc7818684E25319": { - "0x0000000000000000000000000000000000000000000000000000000000000000": [ - "0x02", - "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" - ] - } - } - }, - "executionResults": [ - { - "gas": 188385, - "failed": false, - "from": { - "address": "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "nonce": 7, - "balance": "0x56bc75e2d630fffffffffffffffffffffffffffffffffffffa1238d58b6896", - "codeHash": "0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470" - }, - "to": { - "address": "0x33b5ddf9b5e82bb958eb885f5f241e783a113f18", - "nonce": 1, - "balance": "0x0", - "codeHash": "0xcc0a77f6e063b4b62eb7d9ed6f427cf687d8d0071d751850cfe5d136bc60d3ab" - }, - "accountAfter": [ - { - "address": "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "nonce": 8, - "balance": "0x56bc75e2d630fffffffffffffffffffffffffffffffffffff9c878fb6bb700", - "codeHash": "0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470" - }, - { - "address": "0x33b5ddf9b5e82bb958eb885f5f241e783a113f18", - "nonce": 2, - "balance": "0x0", - "codeHash": "0xcc0a77f6e063b4b62eb7d9ed6f427cf687d8d0071d751850cfe5d136bc60d3ab" - } - ], - "codeHash": "0xcc0a77f6e063b4b62eb7d9ed6f427cf687d8d0071d751850cfe5d136bc60d3ab", - "byteCode": "0x608060405234801561001057600080fd5b50600436106100415760003560e01c8063314a09a814610046578063c5b0437c14610064578063ce0dbd6714610080575b600080fd5b61004e61009c565b60405161005b919061026f565b60405180910390f35b61007e60048036038101906100799190610228565b6100c5565b005b61009a60048036038101906100959190610228565b610141565b005b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000816040516100d4906101fa565b6100de919061028a565b604051809103906000f0801580156100fa573d6000803e3d6000fd5b509050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b8060405161014e90610207565b610158919061028a565b604051809103906000f0801561016b5760015b6101b55760008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506101f7565b806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505b50565b61026d806102f983390190565b60e28061056683390190565b600081359050610222816102e1565b92915050565b60006020828403121561023a57600080fd5b600061024884828501610213565b91505092915050565b61025a816102a5565b82525050565b610269816102d7565b82525050565b60006020820190506102846000830184610251565b92915050565b600060208201905061029f6000830184610260565b92915050565b60006102b0826102b7565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6102ea816102d7565b81146102f557600080fd5b5056fe608060405234801561001057600080fd5b5060405161026d38038061026d83398181016040528101906100329190610054565b806000819055505061009e565b60008151905061004e81610087565b92915050565b60006020828403121561006657600080fd5b60006100748482850161003f565b91505092915050565b6000819050919050565b6100908161007d565b811461009b57600080fd5b50565b6101c0806100ad6000396000f3fe608060405234801561001057600080fd5b506004361061004c5760003560e01c806321848c46146100515780632e64cec11461006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61006b60048036038101906100669190610116565b6100c5565b005b6100756100da565b604051610082919061014e565b60405180910390f35b6100a560048036038101906100a09190610116565b6100e3565b005b6100af6100ed565b6040516100bc919061014e565b60405180910390f35b8060008190555060006100d757600080fd5b50565b60008054905090565b8060008190555050565b6000806100f957600080fd5b600054905090565b60008135905061011081610173565b92915050565b60006020828403121561012857600080fd5b600061013684828501610101565b91505092915050565b61014881610169565b82525050565b6000602082019050610163600083018461013f565b92915050565b6000819050919050565b61017c81610169565b811461018757600080fd5b5056fea26469706673582212204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923f32e64736f6c634300080400336080604052348015600f57600080fd5b5060405160e238038060e28339818101604052810190602d91906052565b6000811415603a57600080fd5b506096565b600081519050604c816082565b92915050565b600060208284031215606357600080fd5b6000606f84828501603f565b91505092915050565b6000819050919050565b6089816078565b8114609357600080fd5b50565b603f8060a36000396000f3fe6080604052600080fdfea2646970667358221220560e159a32ea605e9aee00bc872694a542a7b8138ecc1b3745625561482898cc64736f6c63430008040033a2646970667358221220c8f2016f54e3fbe7b8d1a5d27b87e132360e287af3dc087208cb2eca804de3af64736f6c63430008040033", - "structLogs": [ - { - "pc": 0, - "op": "PUSH1", - "gas": 3000520, - "gasCost": 3, - "depth": 1 - }, - { - "pc": 2, - "op": "PUSH1", - "gas": 3000517, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80" - ] - }, - { - "pc": 4, - "op": "MSTORE", - "gas": 3000514, - "gasCost": 12, - "depth": 1, - "stack": [ - "0x80", - "0x40" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 5, - "op": "CALLVALUE", - "gas": 3000502, - "gasCost": 2, - "depth": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 6, - "op": "DUP1", - "gas": 3000500, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 7, - "op": "ISZERO", - "gas": 3000497, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 8, - "op": "PUSH2", - "gas": 3000494, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x0", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 11, - "op": "JUMPI", - "gas": 3000491, - "gasCost": 10, - "depth": 1, - "stack": [ - "0x0", - "0x1", - "0x10" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 16, - "op": "JUMPDEST", - "gas": 3000481, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 17, - "op": "POP", - "gas": 3000480, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 18, - "op": "PUSH1", - "gas": 3000478, - "gasCost": 3, - "depth": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 20, - "op": "CALLDATASIZE", - "gas": 3000475, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 21, - "op": "LT", - "gas": 3000473, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x4", - "0x24" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 22, - "op": "PUSH2", - "gas": 3000470, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 25, - "op": "JUMPI", - "gas": 3000467, - "gasCost": 10, - "depth": 1, - "stack": [ - "0x0", - "0x41" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 26, - "op": "PUSH1", - "gas": 3000457, - "gasCost": 3, - "depth": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 28, - "op": "CALLDATALOAD", - "gas": 3000454, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 29, - "op": "PUSH1", - "gas": 3000451, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c00000000000000000000000000000000000000000000000000000181" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 31, - "op": "SHR", - "gas": 3000448, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c00000000000000000000000000000000000000000000000000000181", - "0xe0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 32, - "op": "DUP1", - "gas": 3000445, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 33, - "op": "PUSH4", - "gas": 3000442, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0xc5b0437c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 38, - "op": "EQ", - "gas": 3000439, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0xc5b0437c", - "0x314a09a8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 39, - "op": "PUSH2", - "gas": 3000436, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 42, - "op": "JUMPI", - "gas": 3000433, - "gasCost": 10, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x0", - "0x46" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 43, - "op": "DUP1", - "gas": 3000423, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 44, - "op": "PUSH4", - "gas": 3000420, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0xc5b0437c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 49, - "op": "EQ", - "gas": 3000417, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0xc5b0437c", - "0xc5b0437c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 50, - "op": "PUSH2", - "gas": 3000414, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 53, - "op": "JUMPI", - "gas": 3000411, - "gasCost": 10, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x1", - "0x64" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 100, - "op": "JUMPDEST", - "gas": 3000401, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xc5b0437c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 101, - "op": "PUSH2", - "gas": 3000400, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 104, - "op": "PUSH1", - "gas": 3000397, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 106, - "op": "DUP1", - "gas": 3000394, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 107, - "op": "CALLDATASIZE", - "gas": 3000391, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x4", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 108, - "op": "SUB", - "gas": 3000389, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x4", - "0x4", - "0x24" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 109, - "op": "DUP2", - "gas": 3000386, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x4", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 110, - "op": "ADD", - "gas": 3000383, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x4", - "0x20", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 111, - "op": "SWAP1", - "gas": 3000380, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x4", - "0x24" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 112, - "op": "PUSH2", - "gas": 3000377, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x24", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 115, - "op": "SWAP2", - "gas": 3000374, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x24", - "0x4", - "0x79" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 116, - "op": "SWAP1", - "gas": 3000371, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x79", - "0x4", - "0x24" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 117, - "op": "PUSH2", - "gas": 3000368, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x79", - "0x24", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 120, - "op": "JUMP", - "gas": 3000365, - "gasCost": 8, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x79", - "0x24", - "0x4", - "0x228" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 552, - "op": "JUMPDEST", - "gas": 3000357, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x79", - "0x24", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 553, - "op": "PUSH1", - "gas": 3000356, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x79", - "0x24", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 555, - "op": "PUSH1", - "gas": 3000353, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x79", - "0x24", - "0x4", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 557, - "op": "DUP3", - "gas": 3000350, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x79", - "0x24", - "0x4", - "0x0", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 558, - "op": "DUP5", - "gas": 3000347, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x79", - "0x24", - "0x4", - "0x0", - "0x20", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 559, - "op": "SUB", - "gas": 3000344, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x79", - "0x24", - "0x4", - "0x0", - "0x20", - "0x4", - "0x24" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 560, - "op": "SLT", - "gas": 3000341, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x79", - "0x24", - "0x4", - "0x0", - "0x20", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 561, - "op": "ISZERO", - "gas": 3000338, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x79", - "0x24", - "0x4", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 562, - "op": "PUSH2", - "gas": 3000335, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x79", - "0x24", - "0x4", - "0x0", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 565, - "op": "JUMPI", - "gas": 3000332, - "gasCost": 10, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x79", - "0x24", - "0x4", - "0x0", - "0x1", - "0x23a" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 570, - "op": "JUMPDEST", - "gas": 3000322, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x79", - "0x24", - "0x4", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 571, - "op": "PUSH1", - "gas": 3000321, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x79", - "0x24", - "0x4", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 573, - "op": "PUSH2", - "gas": 3000318, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x79", - "0x24", - "0x4", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 576, - "op": "DUP5", - "gas": 3000315, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x79", - "0x24", - "0x4", - "0x0", - "0x0", - "0x248" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 577, - "op": "DUP3", - "gas": 3000312, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x79", - "0x24", - "0x4", - "0x0", - "0x0", - "0x248", - "0x24" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 578, - "op": "DUP6", - "gas": 3000309, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x79", - "0x24", - "0x4", - "0x0", - "0x0", - "0x248", - "0x24", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 579, - "op": "ADD", - "gas": 3000306, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x79", - "0x24", - "0x4", - "0x0", - "0x0", - "0x248", - "0x24", - "0x0", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 580, - "op": "PUSH2", - "gas": 3000303, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x79", - "0x24", - "0x4", - "0x0", - "0x0", - "0x248", - "0x24", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 583, - "op": "JUMP", - "gas": 3000300, - "gasCost": 8, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x79", - "0x24", - "0x4", - "0x0", - "0x0", - "0x248", - "0x24", - "0x4", - "0x213" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 531, - "op": "JUMPDEST", - "gas": 3000292, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x79", - "0x24", - "0x4", - "0x0", - "0x0", - "0x248", - "0x24", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 532, - "op": "PUSH1", - "gas": 3000291, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x79", - "0x24", - "0x4", - "0x0", - "0x0", - "0x248", - "0x24", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 534, - "op": "DUP2", - "gas": 3000288, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x79", - "0x24", - "0x4", - "0x0", - "0x0", - "0x248", - "0x24", - "0x4", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 535, - "op": "CALLDATALOAD", - "gas": 3000285, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x79", - "0x24", - "0x4", - "0x0", - "0x0", - "0x248", - "0x24", - "0x4", - "0x0", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 536, - "op": "SWAP1", - "gas": 3000282, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x79", - "0x24", - "0x4", - "0x0", - "0x0", - "0x248", - "0x24", - "0x4", - "0x0", - "0x1819a05b30c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 537, - "op": "POP", - "gas": 3000279, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x79", - "0x24", - "0x4", - "0x0", - "0x0", - "0x248", - "0x24", - "0x4", - "0x1819a05b30c", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 538, - "op": "PUSH2", - "gas": 3000277, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x79", - "0x24", - "0x4", - "0x0", - "0x0", - "0x248", - "0x24", - "0x4", - "0x1819a05b30c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 541, - "op": "DUP2", - "gas": 3000274, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x79", - "0x24", - "0x4", - "0x0", - "0x0", - "0x248", - "0x24", - "0x4", - "0x1819a05b30c", - "0x222" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 542, - "op": "PUSH2", - "gas": 3000271, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x79", - "0x24", - "0x4", - "0x0", - "0x0", - "0x248", - "0x24", - "0x4", - "0x1819a05b30c", - "0x222", - "0x1819a05b30c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 545, - "op": "JUMP", - "gas": 3000268, - "gasCost": 8, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x79", - "0x24", - "0x4", - "0x0", - "0x0", - "0x248", - "0x24", - "0x4", - "0x1819a05b30c", - "0x222", - "0x1819a05b30c", - "0x2e1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 737, - "op": "JUMPDEST", - "gas": 3000260, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x79", - "0x24", - "0x4", - "0x0", - "0x0", - "0x248", - "0x24", - "0x4", - "0x1819a05b30c", - "0x222", - "0x1819a05b30c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 738, - "op": "PUSH2", - "gas": 3000259, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x79", - "0x24", - "0x4", - "0x0", - "0x0", - "0x248", - "0x24", - "0x4", - "0x1819a05b30c", - "0x222", - "0x1819a05b30c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 741, - "op": "DUP2", - "gas": 3000256, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x79", - "0x24", - "0x4", - "0x0", - "0x0", - "0x248", - "0x24", - "0x4", - "0x1819a05b30c", - "0x222", - "0x1819a05b30c", - "0x2ea" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 742, - "op": "PUSH2", - "gas": 3000253, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x79", - "0x24", - "0x4", - "0x0", - "0x0", - "0x248", - "0x24", - "0x4", - "0x1819a05b30c", - "0x222", - "0x1819a05b30c", - "0x2ea", - "0x1819a05b30c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 745, - "op": "JUMP", - "gas": 3000250, - "gasCost": 8, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x79", - "0x24", - "0x4", - "0x0", - "0x0", - "0x248", - "0x24", - "0x4", - "0x1819a05b30c", - "0x222", - "0x1819a05b30c", - "0x2ea", - "0x1819a05b30c", - "0x2d7" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 727, - "op": "JUMPDEST", - "gas": 3000242, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x79", - "0x24", - "0x4", - "0x0", - "0x0", - "0x248", - "0x24", - "0x4", - "0x1819a05b30c", - "0x222", - "0x1819a05b30c", - "0x2ea", - "0x1819a05b30c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 728, - "op": "PUSH1", - "gas": 3000241, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x79", - "0x24", - "0x4", - "0x0", - "0x0", - "0x248", - "0x24", - "0x4", - "0x1819a05b30c", - "0x222", - "0x1819a05b30c", - "0x2ea", - "0x1819a05b30c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 730, - "op": "DUP2", - "gas": 3000238, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x79", - "0x24", - "0x4", - "0x0", - "0x0", - "0x248", - "0x24", - "0x4", - "0x1819a05b30c", - "0x222", - "0x1819a05b30c", - "0x2ea", - "0x1819a05b30c", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 731, - "op": "SWAP1", - "gas": 3000235, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x79", - "0x24", - "0x4", - "0x0", - "0x0", - "0x248", - "0x24", - "0x4", - "0x1819a05b30c", - "0x222", - "0x1819a05b30c", - "0x2ea", - "0x1819a05b30c", - "0x0", - "0x1819a05b30c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 732, - "op": "POP", - "gas": 3000232, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x79", - "0x24", - "0x4", - "0x0", - "0x0", - "0x248", - "0x24", - "0x4", - "0x1819a05b30c", - "0x222", - "0x1819a05b30c", - "0x2ea", - "0x1819a05b30c", - "0x1819a05b30c", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 733, - "op": "SWAP2", - "gas": 3000230, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x79", - "0x24", - "0x4", - "0x0", - "0x0", - "0x248", - "0x24", - "0x4", - "0x1819a05b30c", - "0x222", - "0x1819a05b30c", - "0x2ea", - "0x1819a05b30c", - "0x1819a05b30c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 734, - "op": "SWAP1", - "gas": 3000227, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x79", - "0x24", - "0x4", - "0x0", - "0x0", - "0x248", - "0x24", - "0x4", - "0x1819a05b30c", - "0x222", - "0x1819a05b30c", - "0x1819a05b30c", - "0x1819a05b30c", - "0x2ea" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 735, - "op": "POP", - "gas": 3000224, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x79", - "0x24", - "0x4", - "0x0", - "0x0", - "0x248", - "0x24", - "0x4", - "0x1819a05b30c", - "0x222", - "0x1819a05b30c", - "0x1819a05b30c", - "0x2ea", - "0x1819a05b30c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 736, - "op": "JUMP", - "gas": 3000222, - "gasCost": 8, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x79", - "0x24", - "0x4", - "0x0", - "0x0", - "0x248", - "0x24", - "0x4", - "0x1819a05b30c", - "0x222", - "0x1819a05b30c", - "0x1819a05b30c", - "0x2ea" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 746, - "op": "JUMPDEST", - "gas": 3000214, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x79", - "0x24", - "0x4", - "0x0", - "0x0", - "0x248", - "0x24", - "0x4", - "0x1819a05b30c", - "0x222", - "0x1819a05b30c", - "0x1819a05b30c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 747, - "op": "DUP2", - "gas": 3000213, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x79", - "0x24", - "0x4", - "0x0", - "0x0", - "0x248", - "0x24", - "0x4", - "0x1819a05b30c", - "0x222", - "0x1819a05b30c", - "0x1819a05b30c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 748, - "op": "EQ", - "gas": 3000210, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x79", - "0x24", - "0x4", - "0x0", - "0x0", - "0x248", - "0x24", - "0x4", - "0x1819a05b30c", - "0x222", - "0x1819a05b30c", - "0x1819a05b30c", - "0x1819a05b30c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 749, - "op": "PUSH2", - "gas": 3000207, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x79", - "0x24", - "0x4", - "0x0", - "0x0", - "0x248", - "0x24", - "0x4", - "0x1819a05b30c", - "0x222", - "0x1819a05b30c", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 752, - "op": "JUMPI", - "gas": 3000204, - "gasCost": 10, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x79", - "0x24", - "0x4", - "0x0", - "0x0", - "0x248", - "0x24", - "0x4", - "0x1819a05b30c", - "0x222", - "0x1819a05b30c", - "0x1", - "0x2f5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 757, - "op": "JUMPDEST", - "gas": 3000194, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x79", - "0x24", - "0x4", - "0x0", - "0x0", - "0x248", - "0x24", - "0x4", - "0x1819a05b30c", - "0x222", - "0x1819a05b30c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 758, - "op": "POP", - "gas": 3000193, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x79", - "0x24", - "0x4", - "0x0", - "0x0", - "0x248", - "0x24", - "0x4", - "0x1819a05b30c", - "0x222", - "0x1819a05b30c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 759, - "op": "JUMP", - "gas": 3000191, - "gasCost": 8, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x79", - "0x24", - "0x4", - "0x0", - "0x0", - "0x248", - "0x24", - "0x4", - "0x1819a05b30c", - "0x222" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 546, - "op": "JUMPDEST", - "gas": 3000183, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x79", - "0x24", - "0x4", - "0x0", - "0x0", - "0x248", - "0x24", - "0x4", - "0x1819a05b30c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 547, - "op": "SWAP3", - "gas": 3000182, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x79", - "0x24", - "0x4", - "0x0", - "0x0", - "0x248", - "0x24", - "0x4", - "0x1819a05b30c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 548, - "op": "SWAP2", - "gas": 3000179, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x79", - "0x24", - "0x4", - "0x0", - "0x0", - "0x1819a05b30c", - "0x24", - "0x4", - "0x248" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 549, - "op": "POP", - "gas": 3000176, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x79", - "0x24", - "0x4", - "0x0", - "0x0", - "0x1819a05b30c", - "0x248", - "0x4", - "0x24" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 550, - "op": "POP", - "gas": 3000174, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x79", - "0x24", - "0x4", - "0x0", - "0x0", - "0x1819a05b30c", - "0x248", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 551, - "op": "JUMP", - "gas": 3000172, - "gasCost": 8, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x79", - "0x24", - "0x4", - "0x0", - "0x0", - "0x1819a05b30c", - "0x248" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 584, - "op": "JUMPDEST", - "gas": 3000164, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x79", - "0x24", - "0x4", - "0x0", - "0x0", - "0x1819a05b30c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 585, - "op": "SWAP2", - "gas": 3000163, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x79", - "0x24", - "0x4", - "0x0", - "0x0", - "0x1819a05b30c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 586, - "op": "POP", - "gas": 3000160, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x79", - "0x24", - "0x4", - "0x1819a05b30c", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 587, - "op": "POP", - "gas": 3000158, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x79", - "0x24", - "0x4", - "0x1819a05b30c", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 588, - "op": "SWAP3", - "gas": 3000156, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x79", - "0x24", - "0x4", - "0x1819a05b30c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 589, - "op": "SWAP2", - "gas": 3000153, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a05b30c", - "0x24", - "0x4", - "0x79" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 590, - "op": "POP", - "gas": 3000150, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a05b30c", - "0x79", - "0x4", - "0x24" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 591, - "op": "POP", - "gas": 3000148, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a05b30c", - "0x79", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 592, - "op": "JUMP", - "gas": 3000146, - "gasCost": 8, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a05b30c", - "0x79" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 121, - "op": "JUMPDEST", - "gas": 3000138, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a05b30c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 122, - "op": "PUSH2", - "gas": 3000137, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a05b30c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 125, - "op": "JUMP", - "gas": 3000134, - "gasCost": 8, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a05b30c", - "0xc5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 197, - "op": "JUMPDEST", - "gas": 3000126, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a05b30c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 198, - "op": "PUSH1", - "gas": 3000125, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a05b30c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 200, - "op": "DUP2", - "gas": 3000122, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a05b30c", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 201, - "op": "PUSH1", - "gas": 3000119, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a05b30c", - "0x0", - "0x1819a05b30c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 203, - "op": "MLOAD", - "gas": 3000116, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a05b30c", - "0x0", - "0x1819a05b30c", - "0x40" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 204, - "op": "PUSH2", - "gas": 3000113, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a05b30c", - "0x0", - "0x1819a05b30c", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 207, - "op": "SWAP1", - "gas": 3000110, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a05b30c", - "0x0", - "0x1819a05b30c", - "0x80", - "0xd4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 208, - "op": "PUSH2", - "gas": 3000107, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a05b30c", - "0x0", - "0x1819a05b30c", - "0xd4", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 211, - "op": "JUMP", - "gas": 3000104, - "gasCost": 8, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a05b30c", - "0x0", - "0x1819a05b30c", - "0xd4", - "0x80", - "0x1fa" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 506, - "op": "JUMPDEST", - "gas": 3000096, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a05b30c", - "0x0", - "0x1819a05b30c", - "0xd4", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 507, - "op": "PUSH2", - "gas": 3000095, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a05b30c", - "0x0", - "0x1819a05b30c", - "0xd4", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 510, - "op": "DUP1", - "gas": 3000092, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a05b30c", - "0x0", - "0x1819a05b30c", - "0xd4", - "0x80", - "0x26d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 511, - "op": "PUSH2", - "gas": 3000089, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a05b30c", - "0x0", - "0x1819a05b30c", - "0xd4", - "0x80", - "0x26d", - "0x26d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 514, - "op": "DUP4", - "gas": 3000086, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a05b30c", - "0x0", - "0x1819a05b30c", - "0xd4", - "0x80", - "0x26d", - "0x26d", - "0x2f9" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 515, - "op": "CODECOPY", - "gas": 3000083, - "gasCost": 127, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a05b30c", - "0x0", - "0x1819a05b30c", - "0xd4", - "0x80", - "0x26d", - "0x26d", - "0x2f9", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 516, - "op": "ADD", - "gas": 2999956, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a05b30c", - "0x0", - "0x1819a05b30c", - "0xd4", - "0x80", - "0x26d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000" - ] - }, - { - "pc": 517, - "op": "SWAP1", - "gas": 2999953, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a05b30c", - "0x0", - "0x1819a05b30c", - "0xd4", - "0x2ed" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000" - ] - }, - { - "pc": 518, - "op": "JUMP", - "gas": 2999950, - "gasCost": 8, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a05b30c", - "0x0", - "0x1819a05b30c", - "0x2ed", - "0xd4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000" - ] - }, - { - "pc": 212, - "op": "JUMPDEST", - "gas": 2999942, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a05b30c", - "0x0", - "0x1819a05b30c", - "0x2ed" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000" - ] - }, - { - "pc": 213, - "op": "PUSH2", - "gas": 2999941, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a05b30c", - "0x0", - "0x1819a05b30c", - "0x2ed" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000" - ] - }, - { - "pc": 216, - "op": "SWAP2", - "gas": 2999938, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a05b30c", - "0x0", - "0x1819a05b30c", - "0x2ed", - "0xde" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000" - ] - }, - { - "pc": 217, - "op": "SWAP1", - "gas": 2999935, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a05b30c", - "0x0", - "0xde", - "0x2ed", - "0x1819a05b30c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000" - ] - }, - { - "pc": 218, - "op": "PUSH2", - "gas": 2999932, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a05b30c", - "0x0", - "0xde", - "0x1819a05b30c", - "0x2ed" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000" - ] - }, - { - "pc": 221, - "op": "JUMP", - "gas": 2999929, - "gasCost": 8, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a05b30c", - "0x0", - "0xde", - "0x1819a05b30c", - "0x2ed", - "0x28a" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000" - ] - }, - { - "pc": 650, - "op": "JUMPDEST", - "gas": 2999921, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a05b30c", - "0x0", - "0xde", - "0x1819a05b30c", - "0x2ed" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000" - ] - }, - { - "pc": 651, - "op": "PUSH1", - "gas": 2999920, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a05b30c", - "0x0", - "0xde", - "0x1819a05b30c", - "0x2ed" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000" - ] - }, - { - "pc": 653, - "op": "PUSH1", - "gas": 2999917, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a05b30c", - "0x0", - "0xde", - "0x1819a05b30c", - "0x2ed", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000" - ] - }, - { - "pc": 655, - "op": "DUP3", - "gas": 2999914, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a05b30c", - "0x0", - "0xde", - "0x1819a05b30c", - "0x2ed", - "0x0", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000" - ] - }, - { - "pc": 656, - "op": "ADD", - "gas": 2999911, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a05b30c", - "0x0", - "0xde", - "0x1819a05b30c", - "0x2ed", - "0x0", - "0x20", - "0x2ed" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000" - ] - }, - { - "pc": 657, - "op": "SWAP1", - "gas": 2999908, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a05b30c", - "0x0", - "0xde", - "0x1819a05b30c", - "0x2ed", - "0x0", - "0x30d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000" - ] - }, - { - "pc": 658, - "op": "POP", - "gas": 2999905, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a05b30c", - "0x0", - "0xde", - "0x1819a05b30c", - "0x2ed", - "0x30d", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000" - ] - }, - { - "pc": 659, - "op": "PUSH2", - "gas": 2999903, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a05b30c", - "0x0", - "0xde", - "0x1819a05b30c", - "0x2ed", - "0x30d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000" - ] - }, - { - "pc": 662, - "op": "PUSH1", - "gas": 2999900, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a05b30c", - "0x0", - "0xde", - "0x1819a05b30c", - "0x2ed", - "0x30d", - "0x29f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000" - ] - }, - { - "pc": 664, - "op": "DUP4", - "gas": 2999897, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a05b30c", - "0x0", - "0xde", - "0x1819a05b30c", - "0x2ed", - "0x30d", - "0x29f", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000" - ] - }, - { - "pc": 665, - "op": "ADD", - "gas": 2999894, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a05b30c", - "0x0", - "0xde", - "0x1819a05b30c", - "0x2ed", - "0x30d", - "0x29f", - "0x0", - "0x2ed" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000" - ] - }, - { - "pc": 666, - "op": "DUP5", - "gas": 2999891, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a05b30c", - "0x0", - "0xde", - "0x1819a05b30c", - "0x2ed", - "0x30d", - "0x29f", - "0x2ed" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000" - ] - }, - { - "pc": 667, - "op": "PUSH2", - "gas": 2999888, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a05b30c", - "0x0", - "0xde", - "0x1819a05b30c", - "0x2ed", - "0x30d", - "0x29f", - "0x2ed", - "0x1819a05b30c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000" - ] - }, - { - "pc": 670, - "op": "JUMP", - "gas": 2999885, - "gasCost": 8, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a05b30c", - "0x0", - "0xde", - "0x1819a05b30c", - "0x2ed", - "0x30d", - "0x29f", - "0x2ed", - "0x1819a05b30c", - "0x260" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000" - ] - }, - { - "pc": 608, - "op": "JUMPDEST", - "gas": 2999877, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a05b30c", - "0x0", - "0xde", - "0x1819a05b30c", - "0x2ed", - "0x30d", - "0x29f", - "0x2ed", - "0x1819a05b30c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000" - ] - }, - { - "pc": 609, - "op": "PUSH2", - "gas": 2999876, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a05b30c", - "0x0", - "0xde", - "0x1819a05b30c", - "0x2ed", - "0x30d", - "0x29f", - "0x2ed", - "0x1819a05b30c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000" - ] - }, - { - "pc": 612, - "op": "DUP2", - "gas": 2999873, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a05b30c", - "0x0", - "0xde", - "0x1819a05b30c", - "0x2ed", - "0x30d", - "0x29f", - "0x2ed", - "0x1819a05b30c", - "0x269" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000" - ] - }, - { - "pc": 613, - "op": "PUSH2", - "gas": 2999870, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a05b30c", - "0x0", - "0xde", - "0x1819a05b30c", - "0x2ed", - "0x30d", - "0x29f", - "0x2ed", - "0x1819a05b30c", - "0x269", - "0x1819a05b30c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000" - ] - }, - { - "pc": 616, - "op": "JUMP", - "gas": 2999867, - "gasCost": 8, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a05b30c", - "0x0", - "0xde", - "0x1819a05b30c", - "0x2ed", - "0x30d", - "0x29f", - "0x2ed", - "0x1819a05b30c", - "0x269", - "0x1819a05b30c", - "0x2d7" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000" - ] - }, - { - "pc": 727, - "op": "JUMPDEST", - "gas": 2999859, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a05b30c", - "0x0", - "0xde", - "0x1819a05b30c", - "0x2ed", - "0x30d", - "0x29f", - "0x2ed", - "0x1819a05b30c", - "0x269", - "0x1819a05b30c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000" - ] - }, - { - "pc": 728, - "op": "PUSH1", - "gas": 2999858, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a05b30c", - "0x0", - "0xde", - "0x1819a05b30c", - "0x2ed", - "0x30d", - "0x29f", - "0x2ed", - "0x1819a05b30c", - "0x269", - "0x1819a05b30c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000" - ] - }, - { - "pc": 730, - "op": "DUP2", - "gas": 2999855, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a05b30c", - "0x0", - "0xde", - "0x1819a05b30c", - "0x2ed", - "0x30d", - "0x29f", - "0x2ed", - "0x1819a05b30c", - "0x269", - "0x1819a05b30c", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000" - ] - }, - { - "pc": 731, - "op": "SWAP1", - "gas": 2999852, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a05b30c", - "0x0", - "0xde", - "0x1819a05b30c", - "0x2ed", - "0x30d", - "0x29f", - "0x2ed", - "0x1819a05b30c", - "0x269", - "0x1819a05b30c", - "0x0", - "0x1819a05b30c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000" - ] - }, - { - "pc": 732, - "op": "POP", - "gas": 2999849, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a05b30c", - "0x0", - "0xde", - "0x1819a05b30c", - "0x2ed", - "0x30d", - "0x29f", - "0x2ed", - "0x1819a05b30c", - "0x269", - "0x1819a05b30c", - "0x1819a05b30c", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000" - ] - }, - { - "pc": 733, - "op": "SWAP2", - "gas": 2999847, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a05b30c", - "0x0", - "0xde", - "0x1819a05b30c", - "0x2ed", - "0x30d", - "0x29f", - "0x2ed", - "0x1819a05b30c", - "0x269", - "0x1819a05b30c", - "0x1819a05b30c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000" - ] - }, - { - "pc": 734, - "op": "SWAP1", - "gas": 2999844, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a05b30c", - "0x0", - "0xde", - "0x1819a05b30c", - "0x2ed", - "0x30d", - "0x29f", - "0x2ed", - "0x1819a05b30c", - "0x1819a05b30c", - "0x1819a05b30c", - "0x269" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000" - ] - }, - { - "pc": 735, - "op": "POP", - "gas": 2999841, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a05b30c", - "0x0", - "0xde", - "0x1819a05b30c", - "0x2ed", - "0x30d", - "0x29f", - "0x2ed", - "0x1819a05b30c", - "0x1819a05b30c", - "0x269", - "0x1819a05b30c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000" - ] - }, - { - "pc": 736, - "op": "JUMP", - "gas": 2999839, - "gasCost": 8, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a05b30c", - "0x0", - "0xde", - "0x1819a05b30c", - "0x2ed", - "0x30d", - "0x29f", - "0x2ed", - "0x1819a05b30c", - "0x1819a05b30c", - "0x269" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000" - ] - }, - { - "pc": 617, - "op": "JUMPDEST", - "gas": 2999831, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a05b30c", - "0x0", - "0xde", - "0x1819a05b30c", - "0x2ed", - "0x30d", - "0x29f", - "0x2ed", - "0x1819a05b30c", - "0x1819a05b30c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000" - ] - }, - { - "pc": 618, - "op": "DUP3", - "gas": 2999830, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a05b30c", - "0x0", - "0xde", - "0x1819a05b30c", - "0x2ed", - "0x30d", - "0x29f", - "0x2ed", - "0x1819a05b30c", - "0x1819a05b30c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000" - ] - }, - { - "pc": 619, - "op": "MSTORE", - "gas": 2999827, - "gasCost": 6, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a05b30c", - "0x0", - "0xde", - "0x1819a05b30c", - "0x2ed", - "0x30d", - "0x29f", - "0x2ed", - "0x1819a05b30c", - "0x1819a05b30c", - "0x2ed" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 620, - "op": "POP", - "gas": 2999821, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a05b30c", - "0x0", - "0xde", - "0x1819a05b30c", - "0x2ed", - "0x30d", - "0x29f", - "0x2ed", - "0x1819a05b30c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000", - "0000000000000001819a05b30c00000000000000000000000000000000000000" - ] - }, - { - "pc": 621, - "op": "POP", - "gas": 2999819, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a05b30c", - "0x0", - "0xde", - "0x1819a05b30c", - "0x2ed", - "0x30d", - "0x29f", - "0x2ed" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000", - "0000000000000001819a05b30c00000000000000000000000000000000000000" - ] - }, - { - "pc": 622, - "op": "JUMP", - "gas": 2999817, - "gasCost": 8, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a05b30c", - "0x0", - "0xde", - "0x1819a05b30c", - "0x2ed", - "0x30d", - "0x29f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000", - "0000000000000001819a05b30c00000000000000000000000000000000000000" - ] - }, - { - "pc": 671, - "op": "JUMPDEST", - "gas": 2999809, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a05b30c", - "0x0", - "0xde", - "0x1819a05b30c", - "0x2ed", - "0x30d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000", - "0000000000000001819a05b30c00000000000000000000000000000000000000" - ] - }, - { - "pc": 672, - "op": "SWAP3", - "gas": 2999808, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a05b30c", - "0x0", - "0xde", - "0x1819a05b30c", - "0x2ed", - "0x30d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000", - "0000000000000001819a05b30c00000000000000000000000000000000000000" - ] - }, - { - "pc": 673, - "op": "SWAP2", - "gas": 2999805, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a05b30c", - "0x0", - "0x30d", - "0x1819a05b30c", - "0x2ed", - "0xde" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000", - "0000000000000001819a05b30c00000000000000000000000000000000000000" - ] - }, - { - "pc": 674, - "op": "POP", - "gas": 2999802, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a05b30c", - "0x0", - "0x30d", - "0xde", - "0x2ed", - "0x1819a05b30c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000", - "0000000000000001819a05b30c00000000000000000000000000000000000000" - ] - }, - { - "pc": 675, - "op": "POP", - "gas": 2999800, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a05b30c", - "0x0", - "0x30d", - "0xde", - "0x2ed" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000", - "0000000000000001819a05b30c00000000000000000000000000000000000000" - ] - }, - { - "pc": 676, - "op": "JUMP", - "gas": 2999798, - "gasCost": 8, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a05b30c", - "0x0", - "0x30d", - "0xde" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000", - "0000000000000001819a05b30c00000000000000000000000000000000000000" - ] - }, - { - "pc": 222, - "op": "JUMPDEST", - "gas": 2999790, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a05b30c", - "0x0", - "0x30d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000", - "0000000000000001819a05b30c00000000000000000000000000000000000000" - ] - }, - { - "pc": 223, - "op": "PUSH1", - "gas": 2999789, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a05b30c", - "0x0", - "0x30d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000", - "0000000000000001819a05b30c00000000000000000000000000000000000000" - ] - }, - { - "pc": 225, - "op": "MLOAD", - "gas": 2999786, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a05b30c", - "0x0", - "0x30d", - "0x40" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000", - "0000000000000001819a05b30c00000000000000000000000000000000000000" - ] - }, - { - "pc": 226, - "op": "DUP1", - "gas": 2999783, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a05b30c", - "0x0", - "0x30d", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000", - "0000000000000001819a05b30c00000000000000000000000000000000000000" - ] - }, - { - "pc": 227, - "op": "SWAP2", - "gas": 2999780, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a05b30c", - "0x0", - "0x30d", - "0x80", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000", - "0000000000000001819a05b30c00000000000000000000000000000000000000" - ] - }, - { - "pc": 228, - "op": "SUB", - "gas": 2999777, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a05b30c", - "0x0", - "0x80", - "0x80", - "0x30d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000", - "0000000000000001819a05b30c00000000000000000000000000000000000000" - ] - }, - { - "pc": 229, - "op": "SWAP1", - "gas": 2999774, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a05b30c", - "0x0", - "0x80", - "0x28d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000", - "0000000000000001819a05b30c00000000000000000000000000000000000000" - ] - }, - { - "pc": 230, - "op": "PUSH1", - "gas": 2999771, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a05b30c", - "0x0", - "0x28d", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000", - "0000000000000001819a05b30c00000000000000000000000000000000000000" - ] - }, - { - "pc": 232, - "op": "CREATE", - "gas": 2999768, - "gasCost": 32000, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a05b30c", - "0x0", - "0x28d", - "0x80", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000", - "0000000000000001819a05b30c00000000000000000000000000000000000000" - ], - "extraData": { - "proofList": [ - { - "address": "0x75d0d116b2f8a249a427bc68aac7818684e25319", - "nonce": 1, - "balance": "0x0", - "codeHash": "0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470" - }, - { - "address": "0x75d0d116b2f8a249a427bc68aac7818684e25319", - "nonce": 1, - "balance": "0x0", - "codeHash": "0x09d2fd3a7cb9d5547a21c851248d703921e6348bfbdf4c0130695a3263f916ef" - } - ] - } - }, - { - "pc": 0, - "op": "PUSH1", - "gas": 2921397, - "gasCost": 3, - "depth": 2 - }, - { - "pc": 2, - "op": "PUSH1", - "gas": 2921394, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x80" - ] - }, - { - "pc": 4, - "op": "MSTORE", - "gas": 2921391, - "gasCost": 12, - "depth": 2, - "stack": [ - "0x80", - "0x40" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 5, - "op": "CALLVALUE", - "gas": 2921379, - "gasCost": 2, - "depth": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 6, - "op": "DUP1", - "gas": 2921377, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 7, - "op": "ISZERO", - "gas": 2921374, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 8, - "op": "PUSH2", - "gas": 2921371, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x0", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 11, - "op": "JUMPI", - "gas": 2921368, - "gasCost": 10, - "depth": 2, - "stack": [ - "0x0", - "0x1", - "0x10" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 16, - "op": "JUMPDEST", - "gas": 2921358, - "gasCost": 1, - "depth": 2, - "stack": [ - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 17, - "op": "POP", - "gas": 2921357, - "gasCost": 2, - "depth": 2, - "stack": [ - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 18, - "op": "PUSH1", - "gas": 2921355, - "gasCost": 3, - "depth": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 20, - "op": "MLOAD", - "gas": 2921352, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x40" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 21, - "op": "PUSH2", - "gas": 2921349, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 24, - "op": "CODESIZE", - "gas": 2921346, - "gasCost": 2, - "depth": 2, - "stack": [ - "0x80", - "0x26d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 25, - "op": "SUB", - "gas": 2921344, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x80", - "0x26d", - "0x28d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 26, - "op": "DUP1", - "gas": 2921341, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x80", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 27, - "op": "PUSH2", - "gas": 2921338, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x80", - "0x20", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 30, - "op": "DUP4", - "gas": 2921335, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x80", - "0x20", - "0x20", - "0x26d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 31, - "op": "CODECOPY", - "gas": 2921332, - "gasCost": 12, - "depth": 2, - "stack": [ - "0x80", - "0x20", - "0x20", - "0x26d", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 32, - "op": "DUP2", - "gas": 2921320, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x80", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a05b30c" - ] - }, - { - "pc": 33, - "op": "DUP2", - "gas": 2921317, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x80", - "0x20", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a05b30c" - ] - }, - { - "pc": 34, - "op": "ADD", - "gas": 2921314, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x80", - "0x20", - "0x80", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a05b30c" - ] - }, - { - "pc": 35, - "op": "PUSH1", - "gas": 2921311, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x80", - "0x20", - "0xa0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a05b30c" - ] - }, - { - "pc": 37, - "op": "MSTORE", - "gas": 2921308, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x80", - "0x20", - "0xa0", - "0x40" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a05b30c" - ] - }, - { - "pc": 38, - "op": "DUP2", - "gas": 2921305, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x80", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a05b30c" - ] - }, - { - "pc": 39, - "op": "ADD", - "gas": 2921302, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x80", - "0x20", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a05b30c" - ] - }, - { - "pc": 40, - "op": "SWAP1", - "gas": 2921299, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x80", - "0xa0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a05b30c" - ] - }, - { - "pc": 41, - "op": "PUSH2", - "gas": 2921296, - "gasCost": 3, - "depth": 2, - "stack": [ - "0xa0", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a05b30c" - ] - }, - { - "pc": 44, - "op": "SWAP2", - "gas": 2921293, - "gasCost": 3, - "depth": 2, - "stack": [ - "0xa0", - "0x80", - "0x32" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a05b30c" - ] - }, - { - "pc": 45, - "op": "SWAP1", - "gas": 2921290, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x32", - "0x80", - "0xa0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a05b30c" - ] - }, - { - "pc": 46, - "op": "PUSH2", - "gas": 2921287, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x32", - "0xa0", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a05b30c" - ] - }, - { - "pc": 49, - "op": "JUMP", - "gas": 2921284, - "gasCost": 8, - "depth": 2, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x54" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a05b30c" - ] - }, - { - "pc": 84, - "op": "JUMPDEST", - "gas": 2921276, - "gasCost": 1, - "depth": 2, - "stack": [ - "0x32", - "0xa0", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a05b30c" - ] - }, - { - "pc": 85, - "op": "PUSH1", - "gas": 2921275, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x32", - "0xa0", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a05b30c" - ] - }, - { - "pc": 87, - "op": "PUSH1", - "gas": 2921272, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a05b30c" - ] - }, - { - "pc": 89, - "op": "DUP3", - "gas": 2921269, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a05b30c" - ] - }, - { - "pc": 90, - "op": "DUP5", - "gas": 2921266, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x20", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a05b30c" - ] - }, - { - "pc": 91, - "op": "SUB", - "gas": 2921263, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xa0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a05b30c" - ] - }, - { - "pc": 92, - "op": "SLT", - "gas": 2921260, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x20", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a05b30c" - ] - }, - { - "pc": 93, - "op": "ISZERO", - "gas": 2921257, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a05b30c" - ] - }, - { - "pc": 94, - "op": "PUSH2", - "gas": 2921254, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a05b30c" - ] - }, - { - "pc": 97, - "op": "JUMPI", - "gas": 2921251, - "gasCost": 10, - "depth": 2, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x1", - "0x66" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a05b30c" - ] - }, - { - "pc": 102, - "op": "JUMPDEST", - "gas": 2921241, - "gasCost": 1, - "depth": 2, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a05b30c" - ] - }, - { - "pc": 103, - "op": "PUSH1", - "gas": 2921240, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a05b30c" - ] - }, - { - "pc": 105, - "op": "PUSH2", - "gas": 2921237, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a05b30c" - ] - }, - { - "pc": 108, - "op": "DUP5", - "gas": 2921234, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x74" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a05b30c" - ] - }, - { - "pc": 109, - "op": "DUP3", - "gas": 2921231, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x74", - "0xa0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a05b30c" - ] - }, - { - "pc": 110, - "op": "DUP6", - "gas": 2921228, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x74", - "0xa0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a05b30c" - ] - }, - { - "pc": 111, - "op": "ADD", - "gas": 2921225, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x74", - "0xa0", - "0x0", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a05b30c" - ] - }, - { - "pc": 112, - "op": "PUSH2", - "gas": 2921222, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x74", - "0xa0", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a05b30c" - ] - }, - { - "pc": 115, - "op": "JUMP", - "gas": 2921219, - "gasCost": 8, - "depth": 2, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x74", - "0xa0", - "0x80", - "0x3f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a05b30c" - ] - }, - { - "pc": 63, - "op": "JUMPDEST", - "gas": 2921211, - "gasCost": 1, - "depth": 2, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x74", - "0xa0", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a05b30c" - ] - }, - { - "pc": 64, - "op": "PUSH1", - "gas": 2921210, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x74", - "0xa0", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a05b30c" - ] - }, - { - "pc": 66, - "op": "DUP2", - "gas": 2921207, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x74", - "0xa0", - "0x80", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a05b30c" - ] - }, - { - "pc": 67, - "op": "MLOAD", - "gas": 2921204, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x74", - "0xa0", - "0x80", - "0x0", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a05b30c" - ] - }, - { - "pc": 68, - "op": "SWAP1", - "gas": 2921201, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x74", - "0xa0", - "0x80", - "0x0", - "0x1819a05b30c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a05b30c" - ] - }, - { - "pc": 69, - "op": "POP", - "gas": 2921198, - "gasCost": 2, - "depth": 2, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x74", - "0xa0", - "0x80", - "0x1819a05b30c", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a05b30c" - ] - }, - { - "pc": 70, - "op": "PUSH2", - "gas": 2921196, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x74", - "0xa0", - "0x80", - "0x1819a05b30c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a05b30c" - ] - }, - { - "pc": 73, - "op": "DUP2", - "gas": 2921193, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x74", - "0xa0", - "0x80", - "0x1819a05b30c", - "0x4e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a05b30c" - ] - }, - { - "pc": 74, - "op": "PUSH2", - "gas": 2921190, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x74", - "0xa0", - "0x80", - "0x1819a05b30c", - "0x4e", - "0x1819a05b30c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a05b30c" - ] - }, - { - "pc": 77, - "op": "JUMP", - "gas": 2921187, - "gasCost": 8, - "depth": 2, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x74", - "0xa0", - "0x80", - "0x1819a05b30c", - "0x4e", - "0x1819a05b30c", - "0x87" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a05b30c" - ] - }, - { - "pc": 135, - "op": "JUMPDEST", - "gas": 2921179, - "gasCost": 1, - "depth": 2, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x74", - "0xa0", - "0x80", - "0x1819a05b30c", - "0x4e", - "0x1819a05b30c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a05b30c" - ] - }, - { - "pc": 136, - "op": "PUSH2", - "gas": 2921178, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x74", - "0xa0", - "0x80", - "0x1819a05b30c", - "0x4e", - "0x1819a05b30c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a05b30c" - ] - }, - { - "pc": 139, - "op": "DUP2", - "gas": 2921175, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x74", - "0xa0", - "0x80", - "0x1819a05b30c", - "0x4e", - "0x1819a05b30c", - "0x90" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a05b30c" - ] - }, - { - "pc": 140, - "op": "PUSH2", - "gas": 2921172, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x74", - "0xa0", - "0x80", - "0x1819a05b30c", - "0x4e", - "0x1819a05b30c", - "0x90", - "0x1819a05b30c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a05b30c" - ] - }, - { - "pc": 143, - "op": "JUMP", - "gas": 2921169, - "gasCost": 8, - "depth": 2, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x74", - "0xa0", - "0x80", - "0x1819a05b30c", - "0x4e", - "0x1819a05b30c", - "0x90", - "0x1819a05b30c", - "0x7d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a05b30c" - ] - }, - { - "pc": 125, - "op": "JUMPDEST", - "gas": 2921161, - "gasCost": 1, - "depth": 2, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x74", - "0xa0", - "0x80", - "0x1819a05b30c", - "0x4e", - "0x1819a05b30c", - "0x90", - "0x1819a05b30c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a05b30c" - ] - }, - { - "pc": 126, - "op": "PUSH1", - "gas": 2921160, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x74", - "0xa0", - "0x80", - "0x1819a05b30c", - "0x4e", - "0x1819a05b30c", - "0x90", - "0x1819a05b30c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a05b30c" - ] - }, - { - "pc": 128, - "op": "DUP2", - "gas": 2921157, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x74", - "0xa0", - "0x80", - "0x1819a05b30c", - "0x4e", - "0x1819a05b30c", - "0x90", - "0x1819a05b30c", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a05b30c" - ] - }, - { - "pc": 129, - "op": "SWAP1", - "gas": 2921154, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x74", - "0xa0", - "0x80", - "0x1819a05b30c", - "0x4e", - "0x1819a05b30c", - "0x90", - "0x1819a05b30c", - "0x0", - "0x1819a05b30c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a05b30c" - ] - }, - { - "pc": 130, - "op": "POP", - "gas": 2921151, - "gasCost": 2, - "depth": 2, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x74", - "0xa0", - "0x80", - "0x1819a05b30c", - "0x4e", - "0x1819a05b30c", - "0x90", - "0x1819a05b30c", - "0x1819a05b30c", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a05b30c" - ] - }, - { - "pc": 131, - "op": "SWAP2", - "gas": 2921149, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x74", - "0xa0", - "0x80", - "0x1819a05b30c", - "0x4e", - "0x1819a05b30c", - "0x90", - "0x1819a05b30c", - "0x1819a05b30c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a05b30c" - ] - }, - { - "pc": 132, - "op": "SWAP1", - "gas": 2921146, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x74", - "0xa0", - "0x80", - "0x1819a05b30c", - "0x4e", - "0x1819a05b30c", - "0x1819a05b30c", - "0x1819a05b30c", - "0x90" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a05b30c" - ] - }, - { - "pc": 133, - "op": "POP", - "gas": 2921143, - "gasCost": 2, - "depth": 2, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x74", - "0xa0", - "0x80", - "0x1819a05b30c", - "0x4e", - "0x1819a05b30c", - "0x1819a05b30c", - "0x90", - "0x1819a05b30c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a05b30c" - ] - }, - { - "pc": 134, - "op": "JUMP", - "gas": 2921141, - "gasCost": 8, - "depth": 2, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x74", - "0xa0", - "0x80", - "0x1819a05b30c", - "0x4e", - "0x1819a05b30c", - "0x1819a05b30c", - "0x90" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a05b30c" - ] - }, - { - "pc": 144, - "op": "JUMPDEST", - "gas": 2921133, - "gasCost": 1, - "depth": 2, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x74", - "0xa0", - "0x80", - "0x1819a05b30c", - "0x4e", - "0x1819a05b30c", - "0x1819a05b30c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a05b30c" - ] - }, - { - "pc": 145, - "op": "DUP2", - "gas": 2921132, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x74", - "0xa0", - "0x80", - "0x1819a05b30c", - "0x4e", - "0x1819a05b30c", - "0x1819a05b30c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a05b30c" - ] - }, - { - "pc": 146, - "op": "EQ", - "gas": 2921129, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x74", - "0xa0", - "0x80", - "0x1819a05b30c", - "0x4e", - "0x1819a05b30c", - "0x1819a05b30c", - "0x1819a05b30c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a05b30c" - ] - }, - { - "pc": 147, - "op": "PUSH2", - "gas": 2921126, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x74", - "0xa0", - "0x80", - "0x1819a05b30c", - "0x4e", - "0x1819a05b30c", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a05b30c" - ] - }, - { - "pc": 150, - "op": "JUMPI", - "gas": 2921123, - "gasCost": 10, - "depth": 2, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x74", - "0xa0", - "0x80", - "0x1819a05b30c", - "0x4e", - "0x1819a05b30c", - "0x1", - "0x9b" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a05b30c" - ] - }, - { - "pc": 155, - "op": "JUMPDEST", - "gas": 2921113, - "gasCost": 1, - "depth": 2, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x74", - "0xa0", - "0x80", - "0x1819a05b30c", - "0x4e", - "0x1819a05b30c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a05b30c" - ] - }, - { - "pc": 156, - "op": "POP", - "gas": 2921112, - "gasCost": 2, - "depth": 2, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x74", - "0xa0", - "0x80", - "0x1819a05b30c", - "0x4e", - "0x1819a05b30c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a05b30c" - ] - }, - { - "pc": 157, - "op": "JUMP", - "gas": 2921110, - "gasCost": 8, - "depth": 2, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x74", - "0xa0", - "0x80", - "0x1819a05b30c", - "0x4e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a05b30c" - ] - }, - { - "pc": 78, - "op": "JUMPDEST", - "gas": 2921102, - "gasCost": 1, - "depth": 2, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x74", - "0xa0", - "0x80", - "0x1819a05b30c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a05b30c" - ] - }, - { - "pc": 79, - "op": "SWAP3", - "gas": 2921101, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x74", - "0xa0", - "0x80", - "0x1819a05b30c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a05b30c" - ] - }, - { - "pc": 80, - "op": "SWAP2", - "gas": 2921098, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x1819a05b30c", - "0xa0", - "0x80", - "0x74" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a05b30c" - ] - }, - { - "pc": 81, - "op": "POP", - "gas": 2921095, - "gasCost": 2, - "depth": 2, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x1819a05b30c", - "0x74", - "0x80", - "0xa0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a05b30c" - ] - }, - { - "pc": 82, - "op": "POP", - "gas": 2921093, - "gasCost": 2, - "depth": 2, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x1819a05b30c", - "0x74", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a05b30c" - ] - }, - { - "pc": 83, - "op": "JUMP", - "gas": 2921091, - "gasCost": 8, - "depth": 2, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x1819a05b30c", - "0x74" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a05b30c" - ] - }, - { - "pc": 116, - "op": "JUMPDEST", - "gas": 2921083, - "gasCost": 1, - "depth": 2, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x1819a05b30c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a05b30c" - ] - }, - { - "pc": 117, - "op": "SWAP2", - "gas": 2921082, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x1819a05b30c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a05b30c" - ] - }, - { - "pc": 118, - "op": "POP", - "gas": 2921079, - "gasCost": 2, - "depth": 2, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x1819a05b30c", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a05b30c" - ] - }, - { - "pc": 119, - "op": "POP", - "gas": 2921077, - "gasCost": 2, - "depth": 2, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x1819a05b30c", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a05b30c" - ] - }, - { - "pc": 120, - "op": "SWAP3", - "gas": 2921075, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x1819a05b30c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a05b30c" - ] - }, - { - "pc": 121, - "op": "SWAP2", - "gas": 2921072, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x1819a05b30c", - "0xa0", - "0x80", - "0x32" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a05b30c" - ] - }, - { - "pc": 122, - "op": "POP", - "gas": 2921069, - "gasCost": 2, - "depth": 2, - "stack": [ - "0x1819a05b30c", - "0x32", - "0x80", - "0xa0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a05b30c" - ] - }, - { - "pc": 123, - "op": "POP", - "gas": 2921067, - "gasCost": 2, - "depth": 2, - "stack": [ - "0x1819a05b30c", - "0x32", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a05b30c" - ] - }, - { - "pc": 124, - "op": "JUMP", - "gas": 2921065, - "gasCost": 8, - "depth": 2, - "stack": [ - "0x1819a05b30c", - "0x32" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a05b30c" - ] - }, - { - "pc": 50, - "op": "JUMPDEST", - "gas": 2921057, - "gasCost": 1, - "depth": 2, - "stack": [ - "0x1819a05b30c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a05b30c" - ] - }, - { - "pc": 51, - "op": "DUP1", - "gas": 2921056, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x1819a05b30c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a05b30c" - ] - }, - { - "pc": 52, - "op": "PUSH1", - "gas": 2921053, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x1819a05b30c", - "0x1819a05b30c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a05b30c" - ] - }, - { - "pc": 54, - "op": "DUP2", - "gas": 2921050, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x1819a05b30c", - "0x1819a05b30c", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a05b30c" - ] - }, - { - "pc": 55, - "op": "SWAP1", - "gas": 2921047, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x1819a05b30c", - "0x1819a05b30c", - "0x0", - "0x1819a05b30c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a05b30c" - ] - }, - { - "pc": 56, - "op": "SSTORE", - "gas": 2921044, - "gasCost": 22100, - "depth": 2, - "stack": [ - "0x1819a05b30c", - "0x1819a05b30c", - "0x1819a05b30c", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a05b30c" - ], - "storage": { - "0x0000000000000000000000000000000000000000000000000000000000000000": "0x000000000000000000000000000000000000000000000000000001819a05b30c" - }, - "extraData": { - "proofList": [ - { - "address": "0x75d0d116b2f8a249a427bc68aac7818684e25319", - "nonce": 1, - "balance": "0x0", - "codeHash": "0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470", - "storage": { - "key": "0x0000000000000000000000000000000000000000000000000000000000000000", - "value": "0x0000000000000000000000000000000000000000000000000000000000000000" - } - } - ] - } - }, - { - "pc": 57, - "op": "POP", - "gas": 2898944, - "gasCost": 2, - "depth": 2, - "stack": [ - "0x1819a05b30c", - "0x1819a05b30c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a05b30c" - ] - }, - { - "pc": 58, - "op": "POP", - "gas": 2898942, - "gasCost": 2, - "depth": 2, - "stack": [ - "0x1819a05b30c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a05b30c" - ] - }, - { - "pc": 59, - "op": "PUSH2", - "gas": 2898940, - "gasCost": 3, - "depth": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a05b30c" - ] - }, - { - "pc": 62, - "op": "JUMP", - "gas": 2898937, - "gasCost": 8, - "depth": 2, - "stack": [ - "0x9e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a05b30c" - ] - }, - { - "pc": 158, - "op": "JUMPDEST", - "gas": 2898929, - "gasCost": 1, - "depth": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a05b30c" - ] - }, - { - "pc": 159, - "op": "PUSH2", - "gas": 2898928, - "gasCost": 3, - "depth": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a05b30c" - ] - }, - { - "pc": 162, - "op": "DUP1", - "gas": 2898925, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x1c0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a05b30c" - ] - }, - { - "pc": 163, - "op": "PUSH2", - "gas": 2898922, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x1c0", - "0x1c0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a05b30c" - ] - }, - { - "pc": 166, - "op": "PUSH1", - "gas": 2898919, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x1c0", - "0x1c0", - "0xad" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a05b30c" - ] - }, - { - "pc": 168, - "op": "CODECOPY", - "gas": 2898916, - "gasCost": 72, - "depth": 2, - "stack": [ - "0x1c0", - "0x1c0", - "0xad", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a05b30c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 169, - "op": "PUSH1", - "gas": 2898844, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x1c0" - ], - "memory": [ - "608060405234801561001057600080fd5b506004361061004c5760003560e01c", - "806321848c46146100515780632e64cec11461006d578063b0f2b72a1461008b", - "578063f3417673146100a7575b600080fd5b61006b6004803603810190610066", - "9190610116565b6100c5565b005b6100756100da565b60405161008291906101", - "4e565b60405180910390f35b6100a560048036038101906100a0919061011656", - "5b6100e3565b005b6100af6100ed565b6040516100bc919061014e565b604051", - "80910390f35b8060008190555060006100d757600080fd5b50565b6000805490", - "5090565b8060008190555050565b6000806100f957600080fd5b600054905090", - "565b60008135905061011081610173565b92915050565b600060208284031215", - "61012857600080fd5b600061013684828501610101565b91505092915050565b", - "61014881610169565b82525050565b6000602082019050610163600083018461", - "013f565b92915050565b6000819050919050565b61017c81610169565b811461", - "018757600080fd5b5056fea26469706673582212204ad60809f1f56c6a9fbcb2", - "3b2b6a9d14eacf8011af49ba0737b81f18f923f32e64736f6c63430008040033" - ] - }, - { - "pc": 171, - "op": "RETURN", - "gas": 2898841, - "gasCost": 0, - "depth": 2, - "stack": [ - "0x1c0", - "0x0" - ], - "memory": [ - "608060405234801561001057600080fd5b506004361061004c5760003560e01c", - "806321848c46146100515780632e64cec11461006d578063b0f2b72a1461008b", - "578063f3417673146100a7575b600080fd5b61006b6004803603810190610066", - "9190610116565b6100c5565b005b6100756100da565b60405161008291906101", - "4e565b60405180910390f35b6100a560048036038101906100a0919061011656", - "5b6100e3565b005b6100af6100ed565b6040516100bc919061014e565b604051", - "80910390f35b8060008190555060006100d757600080fd5b50565b6000805490", - "5090565b8060008190555050565b6000806100f957600080fd5b600054905090", - "565b60008135905061011081610173565b92915050565b600060208284031215", - "61012857600080fd5b600061013684828501610101565b91505092915050565b", - "61014881610169565b82525050565b6000602082019050610163600083018461", - "013f565b92915050565b6000819050919050565b61017c81610169565b811461", - "018757600080fd5b5056fea26469706673582212204ad60809f1f56c6a9fbcb2", - "3b2b6a9d14eacf8011af49ba0737b81f18f923f32e64736f6c63430008040033" - ] - }, - { - "pc": 233, - "op": "DUP1", - "gas": 2855612, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a05b30c", - "0x0", - "0x75d0d116b2f8a249a427bc68aac7818684e25319" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000", - "0000000000000001819a05b30c00000000000000000000000000000000000000" - ] - }, - { - "pc": 234, - "op": "ISZERO", - "gas": 2855609, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a05b30c", - "0x0", - "0x75d0d116b2f8a249a427bc68aac7818684e25319", - "0x75d0d116b2f8a249a427bc68aac7818684e25319" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000", - "0000000000000001819a05b30c00000000000000000000000000000000000000" - ] - }, - { - "pc": 235, - "op": "DUP1", - "gas": 2855606, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a05b30c", - "0x0", - "0x75d0d116b2f8a249a427bc68aac7818684e25319", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000", - "0000000000000001819a05b30c00000000000000000000000000000000000000" - ] - }, - { - "pc": 236, - "op": "ISZERO", - "gas": 2855603, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a05b30c", - "0x0", - "0x75d0d116b2f8a249a427bc68aac7818684e25319", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000", - "0000000000000001819a05b30c00000000000000000000000000000000000000" - ] - }, - { - "pc": 237, - "op": "PUSH2", - "gas": 2855600, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a05b30c", - "0x0", - "0x75d0d116b2f8a249a427bc68aac7818684e25319", - "0x0", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000", - "0000000000000001819a05b30c00000000000000000000000000000000000000" - ] - }, - { - "pc": 240, - "op": "JUMPI", - "gas": 2855597, - "gasCost": 10, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a05b30c", - "0x0", - "0x75d0d116b2f8a249a427bc68aac7818684e25319", - "0x0", - "0x1", - "0xfa" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000", - "0000000000000001819a05b30c00000000000000000000000000000000000000" - ] - }, - { - "pc": 250, - "op": "JUMPDEST", - "gas": 2855587, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a05b30c", - "0x0", - "0x75d0d116b2f8a249a427bc68aac7818684e25319", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000", - "0000000000000001819a05b30c00000000000000000000000000000000000000" - ] - }, - { - "pc": 251, - "op": "POP", - "gas": 2855586, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a05b30c", - "0x0", - "0x75d0d116b2f8a249a427bc68aac7818684e25319", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000", - "0000000000000001819a05b30c00000000000000000000000000000000000000" - ] - }, - { - "pc": 252, - "op": "SWAP1", - "gas": 2855584, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a05b30c", - "0x0", - "0x75d0d116b2f8a249a427bc68aac7818684e25319" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000", - "0000000000000001819a05b30c00000000000000000000000000000000000000" - ] - }, - { - "pc": 253, - "op": "POP", - "gas": 2855581, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a05b30c", - "0x75d0d116b2f8a249a427bc68aac7818684e25319", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000", - "0000000000000001819a05b30c00000000000000000000000000000000000000" - ] - }, - { - "pc": 254, - "op": "DUP1", - "gas": 2855579, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a05b30c", - "0x75d0d116b2f8a249a427bc68aac7818684e25319" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000", - "0000000000000001819a05b30c00000000000000000000000000000000000000" - ] - }, - { - "pc": 255, - "op": "PUSH1", - "gas": 2855576, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a05b30c", - "0x75d0d116b2f8a249a427bc68aac7818684e25319", - "0x75d0d116b2f8a249a427bc68aac7818684e25319" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000", - "0000000000000001819a05b30c00000000000000000000000000000000000000" - ] - }, - { - "pc": 257, - "op": "DUP1", - "gas": 2855573, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a05b30c", - "0x75d0d116b2f8a249a427bc68aac7818684e25319", - "0x75d0d116b2f8a249a427bc68aac7818684e25319", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000", - "0000000000000001819a05b30c00000000000000000000000000000000000000" - ] - }, - { - "pc": 258, - "op": "PUSH2", - "gas": 2855570, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a05b30c", - "0x75d0d116b2f8a249a427bc68aac7818684e25319", - "0x75d0d116b2f8a249a427bc68aac7818684e25319", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000", - "0000000000000001819a05b30c00000000000000000000000000000000000000" - ] - }, - { - "pc": 261, - "op": "EXP", - "gas": 2855567, - "gasCost": 10, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a05b30c", - "0x75d0d116b2f8a249a427bc68aac7818684e25319", - "0x75d0d116b2f8a249a427bc68aac7818684e25319", - "0x0", - "0x0", - "0x100" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000", - "0000000000000001819a05b30c00000000000000000000000000000000000000" - ] - }, - { - "pc": 262, - "op": "DUP2", - "gas": 2855557, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a05b30c", - "0x75d0d116b2f8a249a427bc68aac7818684e25319", - "0x75d0d116b2f8a249a427bc68aac7818684e25319", - "0x0", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000", - "0000000000000001819a05b30c00000000000000000000000000000000000000" - ] - }, - { - "pc": 263, - "op": "SLOAD", - "gas": 2855554, - "gasCost": 2100, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a05b30c", - "0x75d0d116b2f8a249a427bc68aac7818684e25319", - "0x75d0d116b2f8a249a427bc68aac7818684e25319", - "0x0", - "0x1", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000", - "0000000000000001819a05b30c00000000000000000000000000000000000000" - ], - "storage": { - "0x0000000000000000000000000000000000000000000000000000000000000000": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - "extraData": { - "proofList": [ - { - "address": "0x33b5ddf9b5e82bb958eb885f5f241e783a113f18", - "nonce": 2, - "balance": "0x0", - "codeHash": "0xcc0a77f6e063b4b62eb7d9ed6f427cf687d8d0071d751850cfe5d136bc60d3ab", - "storage": { - "key": "0x0000000000000000000000000000000000000000000000000000000000000000", - "value": "0x0000000000000000000000000000000000000000000000000000000000000000" - } - } - ] - } - }, - { - "pc": 264, - "op": "DUP2", - "gas": 2853454, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a05b30c", - "0x75d0d116b2f8a249a427bc68aac7818684e25319", - "0x75d0d116b2f8a249a427bc68aac7818684e25319", - "0x0", - "0x1", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000", - "0000000000000001819a05b30c00000000000000000000000000000000000000" - ] - }, - { - "pc": 265, - "op": "PUSH20", - "gas": 2853451, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a05b30c", - "0x75d0d116b2f8a249a427bc68aac7818684e25319", - "0x75d0d116b2f8a249a427bc68aac7818684e25319", - "0x0", - "0x1", - "0x0", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000", - "0000000000000001819a05b30c00000000000000000000000000000000000000" - ] - }, - { - "pc": 286, - "op": "MUL", - "gas": 2853448, - "gasCost": 5, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a05b30c", - "0x75d0d116b2f8a249a427bc68aac7818684e25319", - "0x75d0d116b2f8a249a427bc68aac7818684e25319", - "0x0", - "0x1", - "0x0", - "0x1", - "0xffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000", - "0000000000000001819a05b30c00000000000000000000000000000000000000" - ] - }, - { - "pc": 287, - "op": "NOT", - "gas": 2853443, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a05b30c", - "0x75d0d116b2f8a249a427bc68aac7818684e25319", - "0x75d0d116b2f8a249a427bc68aac7818684e25319", - "0x0", - "0x1", - "0x0", - "0xffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000", - "0000000000000001819a05b30c00000000000000000000000000000000000000" - ] - }, - { - "pc": 288, - "op": "AND", - "gas": 2853440, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a05b30c", - "0x75d0d116b2f8a249a427bc68aac7818684e25319", - "0x75d0d116b2f8a249a427bc68aac7818684e25319", - "0x0", - "0x1", - "0x0", - "0xffffffffffffffffffffffff0000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000", - "0000000000000001819a05b30c00000000000000000000000000000000000000" - ] - }, - { - "pc": 289, - "op": "SWAP1", - "gas": 2853437, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a05b30c", - "0x75d0d116b2f8a249a427bc68aac7818684e25319", - "0x75d0d116b2f8a249a427bc68aac7818684e25319", - "0x0", - "0x1", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000", - "0000000000000001819a05b30c00000000000000000000000000000000000000" - ] - }, - { - "pc": 290, - "op": "DUP4", - "gas": 2853434, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a05b30c", - "0x75d0d116b2f8a249a427bc68aac7818684e25319", - "0x75d0d116b2f8a249a427bc68aac7818684e25319", - "0x0", - "0x0", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000", - "0000000000000001819a05b30c00000000000000000000000000000000000000" - ] - }, - { - "pc": 291, - "op": "PUSH20", - "gas": 2853431, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a05b30c", - "0x75d0d116b2f8a249a427bc68aac7818684e25319", - "0x75d0d116b2f8a249a427bc68aac7818684e25319", - "0x0", - "0x0", - "0x1", - "0x75d0d116b2f8a249a427bc68aac7818684e25319" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000", - "0000000000000001819a05b30c00000000000000000000000000000000000000" - ] - }, - { - "pc": 312, - "op": "AND", - "gas": 2853428, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a05b30c", - "0x75d0d116b2f8a249a427bc68aac7818684e25319", - "0x75d0d116b2f8a249a427bc68aac7818684e25319", - "0x0", - "0x0", - "0x1", - "0x75d0d116b2f8a249a427bc68aac7818684e25319", - "0xffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000", - "0000000000000001819a05b30c00000000000000000000000000000000000000" - ] - }, - { - "pc": 313, - "op": "MUL", - "gas": 2853425, - "gasCost": 5, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a05b30c", - "0x75d0d116b2f8a249a427bc68aac7818684e25319", - "0x75d0d116b2f8a249a427bc68aac7818684e25319", - "0x0", - "0x0", - "0x1", - "0x75d0d116b2f8a249a427bc68aac7818684e25319" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000", - "0000000000000001819a05b30c00000000000000000000000000000000000000" - ] - }, - { - "pc": 314, - "op": "OR", - "gas": 2853420, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a05b30c", - "0x75d0d116b2f8a249a427bc68aac7818684e25319", - "0x75d0d116b2f8a249a427bc68aac7818684e25319", - "0x0", - "0x0", - "0x75d0d116b2f8a249a427bc68aac7818684e25319" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000", - "0000000000000001819a05b30c00000000000000000000000000000000000000" - ] - }, - { - "pc": 315, - "op": "SWAP1", - "gas": 2853417, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a05b30c", - "0x75d0d116b2f8a249a427bc68aac7818684e25319", - "0x75d0d116b2f8a249a427bc68aac7818684e25319", - "0x0", - "0x75d0d116b2f8a249a427bc68aac7818684e25319" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000", - "0000000000000001819a05b30c00000000000000000000000000000000000000" - ] - }, - { - "pc": 316, - "op": "SSTORE", - "gas": 2853414, - "gasCost": 20000, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a05b30c", - "0x75d0d116b2f8a249a427bc68aac7818684e25319", - "0x75d0d116b2f8a249a427bc68aac7818684e25319", - "0x75d0d116b2f8a249a427bc68aac7818684e25319", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000", - "0000000000000001819a05b30c00000000000000000000000000000000000000" - ], - "storage": { - "0x0000000000000000000000000000000000000000000000000000000000000000": "0x00000000000000000000000075d0d116b2f8a249a427bc68aac7818684e25319" - }, - "extraData": { - "proofList": [ - { - "address": "0x33b5ddf9b5e82bb958eb885f5f241e783a113f18", - "nonce": 2, - "balance": "0x0", - "codeHash": "0xcc0a77f6e063b4b62eb7d9ed6f427cf687d8d0071d751850cfe5d136bc60d3ab", - "storage": { - "key": "0x0000000000000000000000000000000000000000000000000000000000000000", - "value": "0x0000000000000000000000000000000000000000000000000000000000000000" - } - } - ] - } - }, - { - "pc": 317, - "op": "POP", - "gas": 2833414, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a05b30c", - "0x75d0d116b2f8a249a427bc68aac7818684e25319", - "0x75d0d116b2f8a249a427bc68aac7818684e25319" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000", - "0000000000000001819a05b30c00000000000000000000000000000000000000" - ] - }, - { - "pc": 318, - "op": "POP", - "gas": 2833412, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a05b30c", - "0x75d0d116b2f8a249a427bc68aac7818684e25319" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000", - "0000000000000001819a05b30c00000000000000000000000000000000000000" - ] - }, - { - "pc": 319, - "op": "POP", - "gas": 2833410, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a05b30c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000", - "0000000000000001819a05b30c00000000000000000000000000000000000000" - ] - }, - { - "pc": 320, - "op": "JUMP", - "gas": 2833408, - "gasCost": 8, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000", - "0000000000000001819a05b30c00000000000000000000000000000000000000" - ] - }, - { - "pc": 126, - "op": "JUMPDEST", - "gas": 2833400, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xc5b0437c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000", - "0000000000000001819a05b30c00000000000000000000000000000000000000" - ] - }, - { - "pc": 127, - "op": "STOP", - "gas": 2833399, - "gasCost": 0, - "depth": 1, - "stack": [ - "0xc5b0437c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000", - "0000000000000001819a05b30c00000000000000000000000000000000000000" - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/trie/zkproof/deploy_trace.json b/trie/zkproof/deploy_trace.json deleted file mode 100644 index 2ebd7df4c6..0000000000 --- a/trie/zkproof/deploy_trace.json +++ /dev/null @@ -1,12419 +0,0 @@ -{ - "blockTrace": { - "number": "0x3", - "hash": "0x928bb6d57f1c5a4b3af70aa61920915953df9c3a1665c41e9630e2ddde959860", - "gasLimit": 6741683, - "difficulty": "0x2", - "baseFee": "0x2af98b94", - "coinbase": { - "address": "0x0000000000000000000000000000000000000000", - "nonce": 0, - "balance": "0x0", - "codeHash": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - "time": 1656081981, - "transactions": [ - { - "type": 2, - "nonce": 3, - "gas": 302635, - "gasPrice": "0x3663d4a7", - "from": "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "to": null, - "chainId": "0xcf55", - "value": "0x0", - "data": "0x608060405234801561001057600080fd5b506040516106b53803806106b58339818101604052810190610032919061019d565b61007a6040518060400160405280600481526020017f74657374000000000000000000000000000000000000000000000000000000008152506100c060201b6101a01760201c565b806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550506102ca565b61015c816040516024016100d491906101ff565b6040516020818303038152906040527f41304fac000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff838183161783525050505061015f60201b60201c565b50565b60008151905060006a636f6e736f6c652e6c6f679050602083016000808483855afa5050505050565b600081519050610197816102b3565b92915050565b6000602082840312156101af57600080fd5b60006101bd84828501610188565b91505092915050565b60006101d182610221565b6101db818561022c565b93506101eb81856020860161026f565b6101f4816102a2565b840191505092915050565b6000602082019050818103600083015261021981846101c6565b905092915050565b600081519050919050565b600082825260208201905092915050565b60006102488261024f565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60005b8381101561028d578082015181840152602081019050610272565b8381111561029c576000848401525b50505050565b6000601f19601f8301169050919050565b6102bc8161023d565b81146102c757600080fd5b50565b6103dc806102d96000396000f3fe608060405234801561001057600080fd5b50600436106100365760003560e01c806321848c461461003b578063b0f2b72a14610057575b600080fd5b61005560048036038101906100509190610277565b610073565b005b610071600480360381019061006c9190610277565b61010b565b005b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff166321848c46836040518263ffffffff1660e01b81526004016100d2919061030a565b600060405180830381600087803b1580156100ec57600080fd5b505af19250505080156100fd575060015b61010657610107565b5b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663b0f2b72a836040518263ffffffff1660e01b815260040161016a919061030a565b600060405180830381600087803b15801561018457600080fd5b505af1158015610198573d6000803e3d6000fd5b505050505050565b610236816040516024016101b491906102e8565b6040516020818303038152906040527f41304fac000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050610239565b50565b60008151905060006a636f6e736f6c652e6c6f679050602083016000808483855afa5050505050565b6000813590506102718161038f565b92915050565b60006020828403121561028957600080fd5b600061029784828501610262565b91505092915050565b60006102ab82610325565b6102b58185610330565b93506102c581856020860161034b565b6102ce8161037e565b840191505092915050565b6102e281610341565b82525050565b6000602082019050818103600083015261030281846102a0565b905092915050565b600060208201905061031f60008301846102d9565b92915050565b600081519050919050565b600082825260208201905092915050565b6000819050919050565b60005b8381101561036957808201518184015260208101905061034e565b83811115610378576000848401525b50505050565b6000601f19601f8301169050919050565b61039881610341565b81146103a357600080fd5b5056fea264697066735822122079a958a4c7a90094ec761b33fbd301163f4e1e62f3ccae8afe9f42a770e054f264736f6c6343000804003300000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "isCreate": true, - "v": "0x0", - "r": "0xcd01c1e2867bd32abe9b181aeee6eab2f5423098fc986044b4e469ebd3d443ab", - "s": "0x36f49af4db8a13b56a1bb31d7ebe4a6e9c1e83ddef663c59d86deba7b89a8ad0" - } - ] - }, - "storageTrace": { - "rootBefore": "0x2f480263a4797036178ffb6dec25e5d2fbd08bc861de264d0d86c64d319d03d0", - "rootAfter": "0x0e28d296fd0481564b9a813aad104ba334efcef4545426b41589245218a5cbd5", - "proofs": { - "0x0000000000000000000000000000000000000000": [ - "0x00923ad76a4f3e4c63049db2818456f9037e49b5b467292e893b8fc3afe1cdd0192ccb0213f1c231b89e6a77b5ecdf4000384d1696789cb5d6e2225f145e72b12a", - "0x01e232499c4754368052075d13fb84b18537b94a2da166170e7bd94bdc879097090404000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000cc0a77f6e063b4b62eb7d9ed6f427cf687d8d0071d751850cfe5d136bc60d3ab000000000000000000000000000000000000000000000000000000000000000000", - "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" - ], - "0x000000000000000000636F6e736F6c652e6c6f67": [ - "0x00923ad76a4f3e4c63049db2818456f9037e49b5b467292e893b8fc3afe1cdd0192ccb0213f1c231b89e6a77b5ecdf4000384d1696789cb5d6e2225f145e72b12a", - "0x00d9813f65f456ca49f867b0e58e4479e9a47e027ddea7dd223fa949b4da153630b0dc4e59b50d8c8752055382e97d68b87442e6f890f91c6679044cb8c40cbf0a", - "0x000000000000000000000000000000000000000000000000000000000000000000bddc56a9ec942424e0ae231a99833edd8966e7bdf54578aa4e7f09076cb3a81c", - "0x0059de88bfc172c07b3669ac542cdf3953525ec7dc0b2551b8a573f76f237623110000000000000000000000000000000000000000000000000000000000000000", - "0x0000000000000000000000000000000000000000000000000000000000000000005deee444162302cce9d272e8ae9508508d6a7214da22d3933905d160cb1fcc25", - "0x02", - "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" - ], - "0x4cb1aB63aF5D8931Ce09673EbD8ae2ce16fD6571": [ - "0x00923ad76a4f3e4c63049db2818456f9037e49b5b467292e893b8fc3afe1cdd0192ccb0213f1c231b89e6a77b5ecdf4000384d1696789cb5d6e2225f145e72b12a", - "0x00d9813f65f456ca49f867b0e58e4479e9a47e027ddea7dd223fa949b4da153630b0dc4e59b50d8c8752055382e97d68b87442e6f890f91c6679044cb8c40cbf0a", - "0x000000000000000000000000000000000000000000000000000000000000000000bddc56a9ec942424e0ae231a99833edd8966e7bdf54578aa4e7f09076cb3a81c", - "0x0059de88bfc172c07b3669ac542cdf3953525ec7dc0b2551b8a573f76f237623110000000000000000000000000000000000000000000000000000000000000000", - "0x0000000000000000000000000000000000000000000000000000000000000000005deee444162302cce9d272e8ae9508508d6a7214da22d3933905d160cb1fcc25", - "0x001b300e21fc3c84d681ba0ad494c5b04a4c7ff1c8e876742710490a7270dfac2346aa07e37397ccd777b8120f61db750760d59343fe918669371fa15a869f1728", - "0x017581e431a68d0fa641e14a7d29a6c2b150db6da1d13f59dee6f7f492a0bebd290404000000000000000000000000000000000000000000000000000000000000000000030056bc75e2d630fffffffffffffffffffffffffffffffffffffb1c8ab9daa3a8c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470000000000000000000000000000000000000000000000000000000000000000000", - "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" - ], - "0xb36feAEaF76c2A33335b73bEF9aEf7a23d9af1e3": [ - "0x00923ad76a4f3e4c63049db2818456f9037e49b5b467292e893b8fc3afe1cdd0192ccb0213f1c231b89e6a77b5ecdf4000384d1696789cb5d6e2225f145e72b12a", - "0x00d9813f65f456ca49f867b0e58e4479e9a47e027ddea7dd223fa949b4da153630b0dc4e59b50d8c8752055382e97d68b87442e6f890f91c6679044cb8c40cbf0a", - "0x000000000000000000000000000000000000000000000000000000000000000000bddc56a9ec942424e0ae231a99833edd8966e7bdf54578aa4e7f09076cb3a81c", - "0x0059de88bfc172c07b3669ac542cdf3953525ec7dc0b2551b8a573f76f237623110000000000000000000000000000000000000000000000000000000000000000", - "0x0000000000000000000000000000000000000000000000000000000000000000005deee444162302cce9d272e8ae9508508d6a7214da22d3933905d160cb1fcc25", - "0x001b300e21fc3c84d681ba0ad494c5b04a4c7ff1c8e876742710490a7270dfac2346aa07e37397ccd777b8120f61db750760d59343fe918669371fa15a869f1728", - "0x017581e431a68d0fa641e14a7d29a6c2b150db6da1d13f59dee6f7f492a0bebd290404000000000000000000000000000000000000000000000000000000000000000000030056bc75e2d630fffffffffffffffffffffffffffffffffffffb1c8ab9daa3a8c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470000000000000000000000000000000000000000000000000000000000000000000", - "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" - ] - }, - "storageProofs": { - "0xb36feAEaF76c2A33335b73bEF9aEf7a23d9af1e3": { - "0x0000000000000000000000000000000000000000000000000000000000000000": [ - "0x02", - "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" - ] - } - } - }, - "executionResults": [ - { - "gas": 302635, - "failed": false, - "returnValue": "608060405234801561001057600080fd5b50600436106100365760003560e01c806321848c461461003b578063b0f2b72a14610057575b600080fd5b61005560048036038101906100509190610277565b610073565b005b610071600480360381019061006c9190610277565b61010b565b005b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff166321848c46836040518263ffffffff1660e01b81526004016100d2919061030a565b600060405180830381600087803b1580156100ec57600080fd5b505af19250505080156100fd575060015b61010657610107565b5b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663b0f2b72a836040518263ffffffff1660e01b815260040161016a919061030a565b600060405180830381600087803b15801561018457600080fd5b505af1158015610198573d6000803e3d6000fd5b505050505050565b610236816040516024016101b491906102e8565b6040516020818303038152906040527f41304fac000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050610239565b50565b60008151905060006a636f6e736f6c652e6c6f679050602083016000808483855afa5050505050565b6000813590506102718161038f565b92915050565b60006020828403121561028957600080fd5b600061029784828501610262565b91505092915050565b60006102ab82610325565b6102b58185610330565b93506102c581856020860161034b565b6102ce8161037e565b840191505092915050565b6102e281610341565b82525050565b6000602082019050818103600083015261030281846102a0565b905092915050565b600060208201905061031f60008301846102d9565b92915050565b600081519050919050565b600082825260208201905092915050565b6000819050919050565b60005b8381101561036957808201518184015260208101905061034e565b83811115610378576000848401525b50505050565b6000601f19601f8301169050919050565b61039881610341565b81146103a357600080fd5b5056fea264697066735822122079a958a4c7a90094ec761b33fbd301163f4e1e62f3ccae8afe9f42a770e054f264736f6c63430008040033", - "from": { - "address": "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "nonce": 3, - "balance": "0x56bc75e2d630fffffffffffffffffffffffffffffffffffffb1c8ab9daa3a8", - "codeHash": "0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470" - }, - "accountCreated": { - "address": "0xb36feaeaf76c2a33335b73bef9aef7a23d9af1e3", - "nonce": 1, - "balance": "0x0", - "codeHash": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - "accountAfter": [ - { - "address": "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "nonce": 4, - "balance": "0x56bc75e2d630fffffffffffffffffffffffffffffffffffffa56174f7ad9cc", - "codeHash": "0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470" - }, - { - "address": "0xb36feaeaf76c2a33335b73bef9aef7a23d9af1e3", - "nonce": 1, - "balance": "0x0", - "codeHash": "0xcf73ee5d93a98045cd55efe938790c20effb831ac0646f6875213fb4aca66319" - } - ], - "byteCode": "0x608060405234801561001057600080fd5b506040516106b53803806106b58339818101604052810190610032919061019d565b61007a6040518060400160405280600481526020017f74657374000000000000000000000000000000000000000000000000000000008152506100c060201b6101a01760201c565b806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550506102ca565b61015c816040516024016100d491906101ff565b6040516020818303038152906040527f41304fac000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff838183161783525050505061015f60201b60201c565b50565b60008151905060006a636f6e736f6c652e6c6f679050602083016000808483855afa5050505050565b600081519050610197816102b3565b92915050565b6000602082840312156101af57600080fd5b60006101bd84828501610188565b91505092915050565b60006101d182610221565b6101db818561022c565b93506101eb81856020860161026f565b6101f4816102a2565b840191505092915050565b6000602082019050818103600083015261021981846101c6565b905092915050565b600081519050919050565b600082825260208201905092915050565b60006102488261024f565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60005b8381101561028d578082015181840152602081019050610272565b8381111561029c576000848401525b50505050565b6000601f19601f8301169050919050565b6102bc8161023d565b81146102c757600080fd5b50565b6103dc806102d96000396000f3fe608060405234801561001057600080fd5b50600436106100365760003560e01c806321848c461461003b578063b0f2b72a14610057575b600080fd5b61005560048036038101906100509190610277565b610073565b005b610071600480360381019061006c9190610277565b61010b565b005b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff166321848c46836040518263ffffffff1660e01b81526004016100d2919061030a565b600060405180830381600087803b1580156100ec57600080fd5b505af19250505080156100fd575060015b61010657610107565b5b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663b0f2b72a836040518263ffffffff1660e01b815260040161016a919061030a565b600060405180830381600087803b15801561018457600080fd5b505af1158015610198573d6000803e3d6000fd5b505050505050565b610236816040516024016101b491906102e8565b6040516020818303038152906040527f41304fac000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050610239565b50565b60008151905060006a636f6e736f6c652e6c6f679050602083016000808483855afa5050505050565b6000813590506102718161038f565b92915050565b60006020828403121561028957600080fd5b600061029784828501610262565b91505092915050565b60006102ab82610325565b6102b58185610330565b93506102c581856020860161034b565b6102ce8161037e565b840191505092915050565b6102e281610341565b82525050565b6000602082019050818103600083015261030281846102a0565b905092915050565b600060208201905061031f60008301846102d9565b92915050565b600081519050919050565b600082825260208201905092915050565b6000819050919050565b60005b8381101561036957808201518184015260208101905061034e565b83811115610378576000848401525b50505050565b6000601f19601f8301169050919050565b61039881610341565b81146103a357600080fd5b5056fea264697066735822122079a958a4c7a90094ec761b33fbd301163f4e1e62f3ccae8afe9f42a770e054f264736f6c6343000804003300000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "structLogs": [ - { - "pc": 0, - "op": "PUSH1", - "gas": 223775, - "gasCost": 3, - "depth": 1 - }, - { - "pc": 2, - "op": "PUSH1", - "gas": 223772, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80" - ] - }, - { - "pc": 4, - "op": "MSTORE", - "gas": 223769, - "gasCost": 12, - "depth": 1, - "stack": [ - "0x80", - "0x40" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 5, - "op": "CALLVALUE", - "gas": 223757, - "gasCost": 2, - "depth": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 6, - "op": "DUP1", - "gas": 223755, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 7, - "op": "ISZERO", - "gas": 223752, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 8, - "op": "PUSH2", - "gas": 223749, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x0", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 11, - "op": "JUMPI", - "gas": 223746, - "gasCost": 10, - "depth": 1, - "stack": [ - "0x0", - "0x1", - "0x10" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 16, - "op": "JUMPDEST", - "gas": 223736, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 17, - "op": "POP", - "gas": 223735, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 18, - "op": "PUSH1", - "gas": 223733, - "gasCost": 3, - "depth": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 20, - "op": "MLOAD", - "gas": 223730, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x40" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 21, - "op": "PUSH2", - "gas": 223727, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 24, - "op": "CODESIZE", - "gas": 223724, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x80", - "0x6b5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 25, - "op": "SUB", - "gas": 223722, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x6b5", - "0x6d5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 26, - "op": "DUP1", - "gas": 223719, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 27, - "op": "PUSH2", - "gas": 223716, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x20", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 30, - "op": "DUP4", - "gas": 223713, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x20", - "0x20", - "0x6b5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 31, - "op": "CODECOPY", - "gas": 223710, - "gasCost": 12, - "depth": 1, - "stack": [ - "0x80", - "0x20", - "0x20", - "0x6b5", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 32, - "op": "DUP2", - "gas": 223698, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327" - ] - }, - { - "pc": 33, - "op": "DUP2", - "gas": 223695, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x20", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327" - ] - }, - { - "pc": 34, - "op": "ADD", - "gas": 223692, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x20", - "0x80", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327" - ] - }, - { - "pc": 35, - "op": "PUSH1", - "gas": 223689, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x20", - "0xa0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327" - ] - }, - { - "pc": 37, - "op": "MSTORE", - "gas": 223686, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x20", - "0xa0", - "0x40" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327" - ] - }, - { - "pc": 38, - "op": "DUP2", - "gas": 223683, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327" - ] - }, - { - "pc": 39, - "op": "ADD", - "gas": 223680, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0x20", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327" - ] - }, - { - "pc": 40, - "op": "SWAP1", - "gas": 223677, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80", - "0xa0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327" - ] - }, - { - "pc": 41, - "op": "PUSH2", - "gas": 223674, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa0", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327" - ] - }, - { - "pc": 44, - "op": "SWAP2", - "gas": 223671, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa0", - "0x80", - "0x32" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327" - ] - }, - { - "pc": 45, - "op": "SWAP1", - "gas": 223668, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x32", - "0x80", - "0xa0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327" - ] - }, - { - "pc": 46, - "op": "PUSH2", - "gas": 223665, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x32", - "0xa0", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327" - ] - }, - { - "pc": 49, - "op": "JUMP", - "gas": 223662, - "gasCost": 8, - "depth": 1, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x19d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327" - ] - }, - { - "pc": 413, - "op": "JUMPDEST", - "gas": 223654, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x32", - "0xa0", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327" - ] - }, - { - "pc": 414, - "op": "PUSH1", - "gas": 223653, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x32", - "0xa0", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327" - ] - }, - { - "pc": 416, - "op": "PUSH1", - "gas": 223650, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327" - ] - }, - { - "pc": 418, - "op": "DUP3", - "gas": 223647, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327" - ] - }, - { - "pc": 419, - "op": "DUP5", - "gas": 223644, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x20", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327" - ] - }, - { - "pc": 420, - "op": "SUB", - "gas": 223641, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xa0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327" - ] - }, - { - "pc": 421, - "op": "SLT", - "gas": 223638, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x20", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327" - ] - }, - { - "pc": 422, - "op": "ISZERO", - "gas": 223635, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327" - ] - }, - { - "pc": 423, - "op": "PUSH2", - "gas": 223632, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327" - ] - }, - { - "pc": 426, - "op": "JUMPI", - "gas": 223629, - "gasCost": 10, - "depth": 1, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x1", - "0x1af" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327" - ] - }, - { - "pc": 431, - "op": "JUMPDEST", - "gas": 223619, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327" - ] - }, - { - "pc": 432, - "op": "PUSH1", - "gas": 223618, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327" - ] - }, - { - "pc": 434, - "op": "PUSH2", - "gas": 223615, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327" - ] - }, - { - "pc": 437, - "op": "DUP5", - "gas": 223612, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x1bd" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327" - ] - }, - { - "pc": 438, - "op": "DUP3", - "gas": 223609, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x1bd", - "0xa0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327" - ] - }, - { - "pc": 439, - "op": "DUP6", - "gas": 223606, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x1bd", - "0xa0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327" - ] - }, - { - "pc": 440, - "op": "ADD", - "gas": 223603, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x1bd", - "0xa0", - "0x0", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327" - ] - }, - { - "pc": 441, - "op": "PUSH2", - "gas": 223600, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x1bd", - "0xa0", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327" - ] - }, - { - "pc": 444, - "op": "JUMP", - "gas": 223597, - "gasCost": 8, - "depth": 1, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x1bd", - "0xa0", - "0x80", - "0x188" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327" - ] - }, - { - "pc": 392, - "op": "JUMPDEST", - "gas": 223589, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x1bd", - "0xa0", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327" - ] - }, - { - "pc": 393, - "op": "PUSH1", - "gas": 223588, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x1bd", - "0xa0", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327" - ] - }, - { - "pc": 395, - "op": "DUP2", - "gas": 223585, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x1bd", - "0xa0", - "0x80", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327" - ] - }, - { - "pc": 396, - "op": "MLOAD", - "gas": 223582, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x1bd", - "0xa0", - "0x80", - "0x0", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327" - ] - }, - { - "pc": 397, - "op": "SWAP1", - "gas": 223579, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x1bd", - "0xa0", - "0x80", - "0x0", - "0x5fdbdfae180345c6cff5316c286727cf1a43327" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327" - ] - }, - { - "pc": 398, - "op": "POP", - "gas": 223576, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x1bd", - "0xa0", - "0x80", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327" - ] - }, - { - "pc": 399, - "op": "PUSH2", - "gas": 223574, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x1bd", - "0xa0", - "0x80", - "0x5fdbdfae180345c6cff5316c286727cf1a43327" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327" - ] - }, - { - "pc": 402, - "op": "DUP2", - "gas": 223571, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x1bd", - "0xa0", - "0x80", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x197" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327" - ] - }, - { - "pc": 403, - "op": "PUSH2", - "gas": 223568, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x1bd", - "0xa0", - "0x80", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x197", - "0x5fdbdfae180345c6cff5316c286727cf1a43327" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327" - ] - }, - { - "pc": 406, - "op": "JUMP", - "gas": 223565, - "gasCost": 8, - "depth": 1, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x1bd", - "0xa0", - "0x80", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x197", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x2b3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327" - ] - }, - { - "pc": 691, - "op": "JUMPDEST", - "gas": 223557, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x1bd", - "0xa0", - "0x80", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x197", - "0x5fdbdfae180345c6cff5316c286727cf1a43327" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327" - ] - }, - { - "pc": 692, - "op": "PUSH2", - "gas": 223556, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x1bd", - "0xa0", - "0x80", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x197", - "0x5fdbdfae180345c6cff5316c286727cf1a43327" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327" - ] - }, - { - "pc": 695, - "op": "DUP2", - "gas": 223553, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x1bd", - "0xa0", - "0x80", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x197", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x2bc" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327" - ] - }, - { - "pc": 696, - "op": "PUSH2", - "gas": 223550, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x1bd", - "0xa0", - "0x80", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x197", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x2bc", - "0x5fdbdfae180345c6cff5316c286727cf1a43327" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327" - ] - }, - { - "pc": 699, - "op": "JUMP", - "gas": 223547, - "gasCost": 8, - "depth": 1, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x1bd", - "0xa0", - "0x80", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x197", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x2bc", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x23d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327" - ] - }, - { - "pc": 573, - "op": "JUMPDEST", - "gas": 223539, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x1bd", - "0xa0", - "0x80", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x197", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x2bc", - "0x5fdbdfae180345c6cff5316c286727cf1a43327" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327" - ] - }, - { - "pc": 574, - "op": "PUSH1", - "gas": 223538, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x1bd", - "0xa0", - "0x80", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x197", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x2bc", - "0x5fdbdfae180345c6cff5316c286727cf1a43327" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327" - ] - }, - { - "pc": 576, - "op": "PUSH2", - "gas": 223535, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x1bd", - "0xa0", - "0x80", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x197", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x2bc", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327" - ] - }, - { - "pc": 579, - "op": "DUP3", - "gas": 223532, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x1bd", - "0xa0", - "0x80", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x197", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x2bc", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x0", - "0x248" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327" - ] - }, - { - "pc": 580, - "op": "PUSH2", - "gas": 223529, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x1bd", - "0xa0", - "0x80", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x197", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x2bc", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x0", - "0x248", - "0x5fdbdfae180345c6cff5316c286727cf1a43327" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327" - ] - }, - { - "pc": 583, - "op": "JUMP", - "gas": 223526, - "gasCost": 8, - "depth": 1, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x1bd", - "0xa0", - "0x80", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x197", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x2bc", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x0", - "0x248", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x24f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327" - ] - }, - { - "pc": 591, - "op": "JUMPDEST", - "gas": 223518, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x1bd", - "0xa0", - "0x80", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x197", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x2bc", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x0", - "0x248", - "0x5fdbdfae180345c6cff5316c286727cf1a43327" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327" - ] - }, - { - "pc": 592, - "op": "PUSH1", - "gas": 223517, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x1bd", - "0xa0", - "0x80", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x197", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x2bc", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x0", - "0x248", - "0x5fdbdfae180345c6cff5316c286727cf1a43327" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327" - ] - }, - { - "pc": 594, - "op": "PUSH20", - "gas": 223514, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x1bd", - "0xa0", - "0x80", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x197", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x2bc", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x0", - "0x248", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327" - ] - }, - { - "pc": 615, - "op": "DUP3", - "gas": 223511, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x1bd", - "0xa0", - "0x80", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x197", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x2bc", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x0", - "0x248", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x0", - "0xffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327" - ] - }, - { - "pc": 616, - "op": "AND", - "gas": 223508, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x1bd", - "0xa0", - "0x80", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x197", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x2bc", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x0", - "0x248", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x0", - "0xffffffffffffffffffffffffffffffffffffffff", - "0x5fdbdfae180345c6cff5316c286727cf1a43327" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327" - ] - }, - { - "pc": 617, - "op": "SWAP1", - "gas": 223505, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x1bd", - "0xa0", - "0x80", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x197", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x2bc", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x0", - "0x248", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x0", - "0x5fdbdfae180345c6cff5316c286727cf1a43327" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327" - ] - }, - { - "pc": 618, - "op": "POP", - "gas": 223502, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x1bd", - "0xa0", - "0x80", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x197", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x2bc", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x0", - "0x248", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327" - ] - }, - { - "pc": 619, - "op": "SWAP2", - "gas": 223500, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x1bd", - "0xa0", - "0x80", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x197", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x2bc", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x0", - "0x248", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327" - ] - }, - { - "pc": 620, - "op": "SWAP1", - "gas": 223497, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x1bd", - "0xa0", - "0x80", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x197", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x2bc", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x0", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x248" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327" - ] - }, - { - "pc": 621, - "op": "POP", - "gas": 223494, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x1bd", - "0xa0", - "0x80", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x197", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x2bc", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x0", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x248", - "0x5fdbdfae180345c6cff5316c286727cf1a43327" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327" - ] - }, - { - "pc": 622, - "op": "JUMP", - "gas": 223492, - "gasCost": 8, - "depth": 1, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x1bd", - "0xa0", - "0x80", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x197", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x2bc", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x0", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x248" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327" - ] - }, - { - "pc": 584, - "op": "JUMPDEST", - "gas": 223484, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x1bd", - "0xa0", - "0x80", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x197", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x2bc", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x0", - "0x5fdbdfae180345c6cff5316c286727cf1a43327" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327" - ] - }, - { - "pc": 585, - "op": "SWAP1", - "gas": 223483, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x1bd", - "0xa0", - "0x80", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x197", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x2bc", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x0", - "0x5fdbdfae180345c6cff5316c286727cf1a43327" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327" - ] - }, - { - "pc": 586, - "op": "POP", - "gas": 223480, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x1bd", - "0xa0", - "0x80", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x197", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x2bc", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327" - ] - }, - { - "pc": 587, - "op": "SWAP2", - "gas": 223478, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x1bd", - "0xa0", - "0x80", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x197", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x2bc", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327" - ] - }, - { - "pc": 588, - "op": "SWAP1", - "gas": 223475, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x1bd", - "0xa0", - "0x80", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x197", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x2bc" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327" - ] - }, - { - "pc": 589, - "op": "POP", - "gas": 223472, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x1bd", - "0xa0", - "0x80", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x197", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x2bc", - "0x5fdbdfae180345c6cff5316c286727cf1a43327" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327" - ] - }, - { - "pc": 590, - "op": "JUMP", - "gas": 223470, - "gasCost": 8, - "depth": 1, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x1bd", - "0xa0", - "0x80", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x197", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x2bc" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327" - ] - }, - { - "pc": 700, - "op": "JUMPDEST", - "gas": 223462, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x1bd", - "0xa0", - "0x80", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x197", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327" - ] - }, - { - "pc": 701, - "op": "DUP2", - "gas": 223461, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x1bd", - "0xa0", - "0x80", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x197", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327" - ] - }, - { - "pc": 702, - "op": "EQ", - "gas": 223458, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x1bd", - "0xa0", - "0x80", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x197", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327" - ] - }, - { - "pc": 703, - "op": "PUSH2", - "gas": 223455, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x1bd", - "0xa0", - "0x80", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x197", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327" - ] - }, - { - "pc": 706, - "op": "JUMPI", - "gas": 223452, - "gasCost": 10, - "depth": 1, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x1bd", - "0xa0", - "0x80", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x197", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x1", - "0x2c7" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327" - ] - }, - { - "pc": 711, - "op": "JUMPDEST", - "gas": 223442, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x1bd", - "0xa0", - "0x80", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x197", - "0x5fdbdfae180345c6cff5316c286727cf1a43327" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327" - ] - }, - { - "pc": 712, - "op": "POP", - "gas": 223441, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x1bd", - "0xa0", - "0x80", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x197", - "0x5fdbdfae180345c6cff5316c286727cf1a43327" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327" - ] - }, - { - "pc": 713, - "op": "JUMP", - "gas": 223439, - "gasCost": 8, - "depth": 1, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x1bd", - "0xa0", - "0x80", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x197" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327" - ] - }, - { - "pc": 407, - "op": "JUMPDEST", - "gas": 223431, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x1bd", - "0xa0", - "0x80", - "0x5fdbdfae180345c6cff5316c286727cf1a43327" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327" - ] - }, - { - "pc": 408, - "op": "SWAP3", - "gas": 223430, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x1bd", - "0xa0", - "0x80", - "0x5fdbdfae180345c6cff5316c286727cf1a43327" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327" - ] - }, - { - "pc": 409, - "op": "SWAP2", - "gas": 223427, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0xa0", - "0x80", - "0x1bd" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327" - ] - }, - { - "pc": 410, - "op": "POP", - "gas": 223424, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x1bd", - "0x80", - "0xa0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327" - ] - }, - { - "pc": 411, - "op": "POP", - "gas": 223422, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x1bd", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327" - ] - }, - { - "pc": 412, - "op": "JUMP", - "gas": 223420, - "gasCost": 8, - "depth": 1, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x1bd" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327" - ] - }, - { - "pc": 445, - "op": "JUMPDEST", - "gas": 223412, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x5fdbdfae180345c6cff5316c286727cf1a43327" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327" - ] - }, - { - "pc": 446, - "op": "SWAP2", - "gas": 223411, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x5fdbdfae180345c6cff5316c286727cf1a43327" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327" - ] - }, - { - "pc": 447, - "op": "POP", - "gas": 223408, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327" - ] - }, - { - "pc": 448, - "op": "POP", - "gas": 223406, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327" - ] - }, - { - "pc": 449, - "op": "SWAP3", - "gas": 223404, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x5fdbdfae180345c6cff5316c286727cf1a43327" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327" - ] - }, - { - "pc": 450, - "op": "SWAP2", - "gas": 223401, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0xa0", - "0x80", - "0x32" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327" - ] - }, - { - "pc": 451, - "op": "POP", - "gas": 223398, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x32", - "0x80", - "0xa0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327" - ] - }, - { - "pc": 452, - "op": "POP", - "gas": 223396, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x32", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327" - ] - }, - { - "pc": 453, - "op": "JUMP", - "gas": 223394, - "gasCost": 8, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x32" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327" - ] - }, - { - "pc": 50, - "op": "JUMPDEST", - "gas": 223386, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327" - ] - }, - { - "pc": 51, - "op": "PUSH2", - "gas": 223385, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327" - ] - }, - { - "pc": 54, - "op": "PUSH1", - "gas": 223382, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327" - ] - }, - { - "pc": 56, - "op": "MLOAD", - "gas": 223379, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0x40" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327" - ] - }, - { - "pc": 57, - "op": "DUP1", - "gas": 223376, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327" - ] - }, - { - "pc": 58, - "op": "PUSH1", - "gas": 223373, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0xa0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327" - ] - }, - { - "pc": 60, - "op": "ADD", - "gas": 223370, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0xa0", - "0x40" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327" - ] - }, - { - "pc": 61, - "op": "PUSH1", - "gas": 223367, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0xe0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327" - ] - }, - { - "pc": 63, - "op": "MSTORE", - "gas": 223364, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0xe0", - "0x40" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327" - ] - }, - { - "pc": 64, - "op": "DUP1", - "gas": 223361, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327" - ] - }, - { - "pc": 65, - "op": "PUSH1", - "gas": 223358, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0xa0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327" - ] - }, - { - "pc": 67, - "op": "DUP2", - "gas": 223355, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0xa0", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327" - ] - }, - { - "pc": 68, - "op": "MSTORE", - "gas": 223352, - "gasCost": 6, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0xa0", - "0x4", - "0xa0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 69, - "op": "PUSH1", - "gas": 223346, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0xa0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004" - ] - }, - { - "pc": 71, - "op": "ADD", - "gas": 223343, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0xa0", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004" - ] - }, - { - "pc": 72, - "op": "PUSH32", - "gas": 223340, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0xc0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004" - ] - }, - { - "pc": 105, - "op": "DUP2", - "gas": 223337, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0xc0", - "0x7465737400000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004" - ] - }, - { - "pc": 106, - "op": "MSTORE", - "gas": 223334, - "gasCost": 6, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0xc0", - "0x7465737400000000000000000000000000000000000000000000000000000000", - "0xc0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 107, - "op": "POP", - "gas": 223328, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0xc0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 108, - "op": "PUSH2", - "gas": 223326, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 111, - "op": "PUSH1", - "gas": 223323, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0xc0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 113, - "op": "SHL", - "gas": 223320, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0xc0", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 114, - "op": "PUSH2", - "gas": 223317, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0xc000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 117, - "op": "OR", - "gas": 223314, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0xc000000000", - "0x1a0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 118, - "op": "PUSH1", - "gas": 223311, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0xc0000001a0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 120, - "op": "SHR", - "gas": 223308, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0xc0000001a0", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 121, - "op": "JUMP", - "gas": 223305, - "gasCost": 8, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0xc0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 192, - "op": "JUMPDEST", - "gas": 223297, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 193, - "op": "PUSH2", - "gas": 223296, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 196, - "op": "DUP2", - "gas": 223293, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 197, - "op": "PUSH1", - "gas": 223290, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xa0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 199, - "op": "MLOAD", - "gas": 223287, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xa0", - "0x40" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 200, - "op": "PUSH1", - "gas": 223284, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xa0", - "0xe0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 202, - "op": "ADD", - "gas": 223281, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xa0", - "0xe0", - "0x24" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 203, - "op": "PUSH2", - "gas": 223278, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xa0", - "0x104" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 206, - "op": "SWAP2", - "gas": 223275, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xa0", - "0x104", - "0xd4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 207, - "op": "SWAP1", - "gas": 223272, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0x104", - "0xa0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 208, - "op": "PUSH2", - "gas": 223269, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 211, - "op": "JUMP", - "gas": 223266, - "gasCost": 8, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x1ff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 511, - "op": "JUMPDEST", - "gas": 223258, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 512, - "op": "PUSH1", - "gas": 223257, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 514, - "op": "PUSH1", - "gas": 223254, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 516, - "op": "DUP3", - "gas": 223251, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x0", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 517, - "op": "ADD", - "gas": 223248, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x0", - "0x20", - "0x104" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 518, - "op": "SWAP1", - "gas": 223245, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x0", - "0x124" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 519, - "op": "POP", - "gas": 223242, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 520, - "op": "DUP2", - "gas": 223240, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 521, - "op": "DUP2", - "gas": 223237, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x104" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 522, - "op": "SUB", - "gas": 223234, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x104", - "0x124" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 523, - "op": "PUSH1", - "gas": 223231, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 525, - "op": "DUP4", - "gas": 223228, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x20", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 526, - "op": "ADD", - "gas": 223225, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x20", - "0x0", - "0x104" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 527, - "op": "MSTORE", - "gas": 223222, - "gasCost": 12, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x20", - "0x104" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 528, - "op": "PUSH2", - "gas": 223210, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 531, - "op": "DUP2", - "gas": 223207, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x219" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 532, - "op": "DUP5", - "gas": 223204, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x219", - "0x124" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 533, - "op": "PUSH2", - "gas": 223201, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x219", - "0x124", - "0xa0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 536, - "op": "JUMP", - "gas": 223198, - "gasCost": 8, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x219", - "0x124", - "0xa0", - "0x1c6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 454, - "op": "JUMPDEST", - "gas": 223190, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x219", - "0x124", - "0xa0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 455, - "op": "PUSH1", - "gas": 223189, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x219", - "0x124", - "0xa0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 457, - "op": "PUSH2", - "gas": 223186, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x219", - "0x124", - "0xa0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 460, - "op": "DUP3", - "gas": 223183, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x219", - "0x124", - "0xa0", - "0x0", - "0x1d1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 461, - "op": "PUSH2", - "gas": 223180, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x219", - "0x124", - "0xa0", - "0x0", - "0x1d1", - "0xa0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 464, - "op": "JUMP", - "gas": 223177, - "gasCost": 8, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x219", - "0x124", - "0xa0", - "0x0", - "0x1d1", - "0xa0", - "0x221" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 545, - "op": "JUMPDEST", - "gas": 223169, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x219", - "0x124", - "0xa0", - "0x0", - "0x1d1", - "0xa0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 546, - "op": "PUSH1", - "gas": 223168, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x219", - "0x124", - "0xa0", - "0x0", - "0x1d1", - "0xa0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 548, - "op": "DUP2", - "gas": 223165, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x219", - "0x124", - "0xa0", - "0x0", - "0x1d1", - "0xa0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 549, - "op": "MLOAD", - "gas": 223162, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x219", - "0x124", - "0xa0", - "0x0", - "0x1d1", - "0xa0", - "0x0", - "0xa0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 550, - "op": "SWAP1", - "gas": 223159, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x219", - "0x124", - "0xa0", - "0x0", - "0x1d1", - "0xa0", - "0x0", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 551, - "op": "POP", - "gas": 223156, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x219", - "0x124", - "0xa0", - "0x0", - "0x1d1", - "0xa0", - "0x4", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 552, - "op": "SWAP2", - "gas": 223154, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x219", - "0x124", - "0xa0", - "0x0", - "0x1d1", - "0xa0", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 553, - "op": "SWAP1", - "gas": 223151, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x219", - "0x124", - "0xa0", - "0x0", - "0x4", - "0xa0", - "0x1d1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 554, - "op": "POP", - "gas": 223148, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x219", - "0x124", - "0xa0", - "0x0", - "0x4", - "0x1d1", - "0xa0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 555, - "op": "JUMP", - "gas": 223146, - "gasCost": 8, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x219", - "0x124", - "0xa0", - "0x0", - "0x4", - "0x1d1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 465, - "op": "JUMPDEST", - "gas": 223138, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x219", - "0x124", - "0xa0", - "0x0", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 466, - "op": "PUSH2", - "gas": 223137, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x219", - "0x124", - "0xa0", - "0x0", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 469, - "op": "DUP2", - "gas": 223134, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x219", - "0x124", - "0xa0", - "0x0", - "0x4", - "0x1db" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 470, - "op": "DUP6", - "gas": 223131, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x219", - "0x124", - "0xa0", - "0x0", - "0x4", - "0x1db", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 471, - "op": "PUSH2", - "gas": 223128, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x219", - "0x124", - "0xa0", - "0x0", - "0x4", - "0x1db", - "0x4", - "0x124" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 474, - "op": "JUMP", - "gas": 223125, - "gasCost": 8, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x219", - "0x124", - "0xa0", - "0x0", - "0x4", - "0x1db", - "0x4", - "0x124", - "0x22c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 556, - "op": "JUMPDEST", - "gas": 223117, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x219", - "0x124", - "0xa0", - "0x0", - "0x4", - "0x1db", - "0x4", - "0x124" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 557, - "op": "PUSH1", - "gas": 223116, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x219", - "0x124", - "0xa0", - "0x0", - "0x4", - "0x1db", - "0x4", - "0x124" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 559, - "op": "DUP3", - "gas": 223113, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x219", - "0x124", - "0xa0", - "0x0", - "0x4", - "0x1db", - "0x4", - "0x124", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 560, - "op": "DUP3", - "gas": 223110, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x219", - "0x124", - "0xa0", - "0x0", - "0x4", - "0x1db", - "0x4", - "0x124", - "0x0", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 561, - "op": "MSTORE", - "gas": 223107, - "gasCost": 6, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x219", - "0x124", - "0xa0", - "0x0", - "0x4", - "0x1db", - "0x4", - "0x124", - "0x0", - "0x4", - "0x124" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 562, - "op": "PUSH1", - "gas": 223101, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x219", - "0x124", - "0xa0", - "0x0", - "0x4", - "0x1db", - "0x4", - "0x124", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 564, - "op": "DUP3", - "gas": 223098, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x219", - "0x124", - "0xa0", - "0x0", - "0x4", - "0x1db", - "0x4", - "0x124", - "0x0", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 565, - "op": "ADD", - "gas": 223095, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x219", - "0x124", - "0xa0", - "0x0", - "0x4", - "0x1db", - "0x4", - "0x124", - "0x0", - "0x20", - "0x124" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 566, - "op": "SWAP1", - "gas": 223092, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x219", - "0x124", - "0xa0", - "0x0", - "0x4", - "0x1db", - "0x4", - "0x124", - "0x0", - "0x144" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 567, - "op": "POP", - "gas": 223089, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x219", - "0x124", - "0xa0", - "0x0", - "0x4", - "0x1db", - "0x4", - "0x124", - "0x144", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 568, - "op": "SWAP3", - "gas": 223087, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x219", - "0x124", - "0xa0", - "0x0", - "0x4", - "0x1db", - "0x4", - "0x124", - "0x144" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 569, - "op": "SWAP2", - "gas": 223084, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x219", - "0x124", - "0xa0", - "0x0", - "0x4", - "0x144", - "0x4", - "0x124", - "0x1db" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 570, - "op": "POP", - "gas": 223081, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x219", - "0x124", - "0xa0", - "0x0", - "0x4", - "0x144", - "0x1db", - "0x124", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 571, - "op": "POP", - "gas": 223079, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x219", - "0x124", - "0xa0", - "0x0", - "0x4", - "0x144", - "0x1db", - "0x124" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 572, - "op": "JUMP", - "gas": 223077, - "gasCost": 8, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x219", - "0x124", - "0xa0", - "0x0", - "0x4", - "0x144", - "0x1db" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 475, - "op": "JUMPDEST", - "gas": 223069, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x219", - "0x124", - "0xa0", - "0x0", - "0x4", - "0x144" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 476, - "op": "SWAP4", - "gas": 223068, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x219", - "0x124", - "0xa0", - "0x0", - "0x4", - "0x144" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 477, - "op": "POP", - "gas": 223065, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x219", - "0x144", - "0xa0", - "0x0", - "0x4", - "0x124" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 478, - "op": "PUSH2", - "gas": 223063, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x219", - "0x144", - "0xa0", - "0x0", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 481, - "op": "DUP2", - "gas": 223060, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x219", - "0x144", - "0xa0", - "0x0", - "0x4", - "0x1eb" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 482, - "op": "DUP6", - "gas": 223057, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x219", - "0x144", - "0xa0", - "0x0", - "0x4", - "0x1eb", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 483, - "op": "PUSH1", - "gas": 223054, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x219", - "0x144", - "0xa0", - "0x0", - "0x4", - "0x1eb", - "0x4", - "0x144" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 485, - "op": "DUP7", - "gas": 223051, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x219", - "0x144", - "0xa0", - "0x0", - "0x4", - "0x1eb", - "0x4", - "0x144", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 486, - "op": "ADD", - "gas": 223048, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x219", - "0x144", - "0xa0", - "0x0", - "0x4", - "0x1eb", - "0x4", - "0x144", - "0x20", - "0xa0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 487, - "op": "PUSH2", - "gas": 223045, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x219", - "0x144", - "0xa0", - "0x0", - "0x4", - "0x1eb", - "0x4", - "0x144", - "0xc0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 490, - "op": "JUMP", - "gas": 223042, - "gasCost": 8, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x219", - "0x144", - "0xa0", - "0x0", - "0x4", - "0x1eb", - "0x4", - "0x144", - "0xc0", - "0x26f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 623, - "op": "JUMPDEST", - "gas": 223034, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x219", - "0x144", - "0xa0", - "0x0", - "0x4", - "0x1eb", - "0x4", - "0x144", - "0xc0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 624, - "op": "PUSH1", - "gas": 223033, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x219", - "0x144", - "0xa0", - "0x0", - "0x4", - "0x1eb", - "0x4", - "0x144", - "0xc0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 626, - "op": "JUMPDEST", - "gas": 223030, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x219", - "0x144", - "0xa0", - "0x0", - "0x4", - "0x1eb", - "0x4", - "0x144", - "0xc0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 627, - "op": "DUP4", - "gas": 223029, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x219", - "0x144", - "0xa0", - "0x0", - "0x4", - "0x1eb", - "0x4", - "0x144", - "0xc0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 628, - "op": "DUP2", - "gas": 223026, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x219", - "0x144", - "0xa0", - "0x0", - "0x4", - "0x1eb", - "0x4", - "0x144", - "0xc0", - "0x0", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 629, - "op": "LT", - "gas": 223023, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x219", - "0x144", - "0xa0", - "0x0", - "0x4", - "0x1eb", - "0x4", - "0x144", - "0xc0", - "0x0", - "0x4", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 630, - "op": "ISZERO", - "gas": 223020, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x219", - "0x144", - "0xa0", - "0x0", - "0x4", - "0x1eb", - "0x4", - "0x144", - "0xc0", - "0x0", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 631, - "op": "PUSH2", - "gas": 223017, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x219", - "0x144", - "0xa0", - "0x0", - "0x4", - "0x1eb", - "0x4", - "0x144", - "0xc0", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 634, - "op": "JUMPI", - "gas": 223014, - "gasCost": 10, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x219", - "0x144", - "0xa0", - "0x0", - "0x4", - "0x1eb", - "0x4", - "0x144", - "0xc0", - "0x0", - "0x0", - "0x28d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 635, - "op": "DUP1", - "gas": 223004, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x219", - "0x144", - "0xa0", - "0x0", - "0x4", - "0x1eb", - "0x4", - "0x144", - "0xc0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 636, - "op": "DUP3", - "gas": 223001, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x219", - "0x144", - "0xa0", - "0x0", - "0x4", - "0x1eb", - "0x4", - "0x144", - "0xc0", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 637, - "op": "ADD", - "gas": 222998, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x219", - "0x144", - "0xa0", - "0x0", - "0x4", - "0x1eb", - "0x4", - "0x144", - "0xc0", - "0x0", - "0x0", - "0xc0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 638, - "op": "MLOAD", - "gas": 222995, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x219", - "0x144", - "0xa0", - "0x0", - "0x4", - "0x1eb", - "0x4", - "0x144", - "0xc0", - "0x0", - "0xc0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 639, - "op": "DUP2", - "gas": 222992, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x219", - "0x144", - "0xa0", - "0x0", - "0x4", - "0x1eb", - "0x4", - "0x144", - "0xc0", - "0x0", - "0x7465737400000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 640, - "op": "DUP5", - "gas": 222989, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x219", - "0x144", - "0xa0", - "0x0", - "0x4", - "0x1eb", - "0x4", - "0x144", - "0xc0", - "0x0", - "0x7465737400000000000000000000000000000000000000000000000000000000", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 641, - "op": "ADD", - "gas": 222986, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x219", - "0x144", - "0xa0", - "0x0", - "0x4", - "0x1eb", - "0x4", - "0x144", - "0xc0", - "0x0", - "0x7465737400000000000000000000000000000000000000000000000000000000", - "0x0", - "0x144" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 642, - "op": "MSTORE", - "gas": 222983, - "gasCost": 6, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x219", - "0x144", - "0xa0", - "0x0", - "0x4", - "0x1eb", - "0x4", - "0x144", - "0xc0", - "0x0", - "0x7465737400000000000000000000000000000000000000000000000000000000", - "0x144" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 643, - "op": "PUSH1", - "gas": 222977, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x219", - "0x144", - "0xa0", - "0x0", - "0x4", - "0x1eb", - "0x4", - "0x144", - "0xc0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 645, - "op": "DUP2", - "gas": 222974, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x219", - "0x144", - "0xa0", - "0x0", - "0x4", - "0x1eb", - "0x4", - "0x144", - "0xc0", - "0x0", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 646, - "op": "ADD", - "gas": 222971, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x219", - "0x144", - "0xa0", - "0x0", - "0x4", - "0x1eb", - "0x4", - "0x144", - "0xc0", - "0x0", - "0x20", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 647, - "op": "SWAP1", - "gas": 222968, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x219", - "0x144", - "0xa0", - "0x0", - "0x4", - "0x1eb", - "0x4", - "0x144", - "0xc0", - "0x0", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 648, - "op": "POP", - "gas": 222965, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x219", - "0x144", - "0xa0", - "0x0", - "0x4", - "0x1eb", - "0x4", - "0x144", - "0xc0", - "0x20", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 649, - "op": "PUSH2", - "gas": 222963, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x219", - "0x144", - "0xa0", - "0x0", - "0x4", - "0x1eb", - "0x4", - "0x144", - "0xc0", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 652, - "op": "JUMP", - "gas": 222960, - "gasCost": 8, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x219", - "0x144", - "0xa0", - "0x0", - "0x4", - "0x1eb", - "0x4", - "0x144", - "0xc0", - "0x20", - "0x272" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 626, - "op": "JUMPDEST", - "gas": 222952, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x219", - "0x144", - "0xa0", - "0x0", - "0x4", - "0x1eb", - "0x4", - "0x144", - "0xc0", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 627, - "op": "DUP4", - "gas": 222951, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x219", - "0x144", - "0xa0", - "0x0", - "0x4", - "0x1eb", - "0x4", - "0x144", - "0xc0", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 628, - "op": "DUP2", - "gas": 222948, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x219", - "0x144", - "0xa0", - "0x0", - "0x4", - "0x1eb", - "0x4", - "0x144", - "0xc0", - "0x20", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 629, - "op": "LT", - "gas": 222945, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x219", - "0x144", - "0xa0", - "0x0", - "0x4", - "0x1eb", - "0x4", - "0x144", - "0xc0", - "0x20", - "0x4", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 630, - "op": "ISZERO", - "gas": 222942, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x219", - "0x144", - "0xa0", - "0x0", - "0x4", - "0x1eb", - "0x4", - "0x144", - "0xc0", - "0x20", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 631, - "op": "PUSH2", - "gas": 222939, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x219", - "0x144", - "0xa0", - "0x0", - "0x4", - "0x1eb", - "0x4", - "0x144", - "0xc0", - "0x20", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 634, - "op": "JUMPI", - "gas": 222936, - "gasCost": 10, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x219", - "0x144", - "0xa0", - "0x0", - "0x4", - "0x1eb", - "0x4", - "0x144", - "0xc0", - "0x20", - "0x1", - "0x28d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 653, - "op": "JUMPDEST", - "gas": 222926, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x219", - "0x144", - "0xa0", - "0x0", - "0x4", - "0x1eb", - "0x4", - "0x144", - "0xc0", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 654, - "op": "DUP4", - "gas": 222925, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x219", - "0x144", - "0xa0", - "0x0", - "0x4", - "0x1eb", - "0x4", - "0x144", - "0xc0", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 655, - "op": "DUP2", - "gas": 222922, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x219", - "0x144", - "0xa0", - "0x0", - "0x4", - "0x1eb", - "0x4", - "0x144", - "0xc0", - "0x20", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 656, - "op": "GT", - "gas": 222919, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x219", - "0x144", - "0xa0", - "0x0", - "0x4", - "0x1eb", - "0x4", - "0x144", - "0xc0", - "0x20", - "0x4", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 657, - "op": "ISZERO", - "gas": 222916, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x219", - "0x144", - "0xa0", - "0x0", - "0x4", - "0x1eb", - "0x4", - "0x144", - "0xc0", - "0x20", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 658, - "op": "PUSH2", - "gas": 222913, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x219", - "0x144", - "0xa0", - "0x0", - "0x4", - "0x1eb", - "0x4", - "0x144", - "0xc0", - "0x20", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 661, - "op": "JUMPI", - "gas": 222910, - "gasCost": 10, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x219", - "0x144", - "0xa0", - "0x0", - "0x4", - "0x1eb", - "0x4", - "0x144", - "0xc0", - "0x20", - "0x0", - "0x29c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 662, - "op": "PUSH1", - "gas": 222900, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x219", - "0x144", - "0xa0", - "0x0", - "0x4", - "0x1eb", - "0x4", - "0x144", - "0xc0", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 664, - "op": "DUP5", - "gas": 222897, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x219", - "0x144", - "0xa0", - "0x0", - "0x4", - "0x1eb", - "0x4", - "0x144", - "0xc0", - "0x20", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 665, - "op": "DUP5", - "gas": 222894, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x219", - "0x144", - "0xa0", - "0x0", - "0x4", - "0x1eb", - "0x4", - "0x144", - "0xc0", - "0x20", - "0x0", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 666, - "op": "ADD", - "gas": 222891, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x219", - "0x144", - "0xa0", - "0x0", - "0x4", - "0x1eb", - "0x4", - "0x144", - "0xc0", - "0x20", - "0x0", - "0x4", - "0x144" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 667, - "op": "MSTORE", - "gas": 222888, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x219", - "0x144", - "0xa0", - "0x0", - "0x4", - "0x1eb", - "0x4", - "0x144", - "0xc0", - "0x20", - "0x0", - "0x148" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 668, - "op": "JUMPDEST", - "gas": 222885, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x219", - "0x144", - "0xa0", - "0x0", - "0x4", - "0x1eb", - "0x4", - "0x144", - "0xc0", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 669, - "op": "POP", - "gas": 222884, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x219", - "0x144", - "0xa0", - "0x0", - "0x4", - "0x1eb", - "0x4", - "0x144", - "0xc0", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 670, - "op": "POP", - "gas": 222882, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x219", - "0x144", - "0xa0", - "0x0", - "0x4", - "0x1eb", - "0x4", - "0x144", - "0xc0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 671, - "op": "POP", - "gas": 222880, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x219", - "0x144", - "0xa0", - "0x0", - "0x4", - "0x1eb", - "0x4", - "0x144" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 672, - "op": "POP", - "gas": 222878, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x219", - "0x144", - "0xa0", - "0x0", - "0x4", - "0x1eb", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 673, - "op": "JUMP", - "gas": 222876, - "gasCost": 8, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x219", - "0x144", - "0xa0", - "0x0", - "0x4", - "0x1eb" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 491, - "op": "JUMPDEST", - "gas": 222868, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x219", - "0x144", - "0xa0", - "0x0", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 492, - "op": "PUSH2", - "gas": 222867, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x219", - "0x144", - "0xa0", - "0x0", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 495, - "op": "DUP2", - "gas": 222864, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x219", - "0x144", - "0xa0", - "0x0", - "0x4", - "0x1f4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 496, - "op": "PUSH2", - "gas": 222861, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x219", - "0x144", - "0xa0", - "0x0", - "0x4", - "0x1f4", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 499, - "op": "JUMP", - "gas": 222858, - "gasCost": 8, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x219", - "0x144", - "0xa0", - "0x0", - "0x4", - "0x1f4", - "0x4", - "0x2a2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 674, - "op": "JUMPDEST", - "gas": 222850, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x219", - "0x144", - "0xa0", - "0x0", - "0x4", - "0x1f4", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 675, - "op": "PUSH1", - "gas": 222849, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x219", - "0x144", - "0xa0", - "0x0", - "0x4", - "0x1f4", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 677, - "op": "PUSH1", - "gas": 222846, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x219", - "0x144", - "0xa0", - "0x0", - "0x4", - "0x1f4", - "0x4", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 679, - "op": "NOT", - "gas": 222843, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x219", - "0x144", - "0xa0", - "0x0", - "0x4", - "0x1f4", - "0x4", - "0x0", - "0x1f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 680, - "op": "PUSH1", - "gas": 222840, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x219", - "0x144", - "0xa0", - "0x0", - "0x4", - "0x1f4", - "0x4", - "0x0", - "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 682, - "op": "DUP4", - "gas": 222837, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x219", - "0x144", - "0xa0", - "0x0", - "0x4", - "0x1f4", - "0x4", - "0x0", - "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", - "0x1f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 683, - "op": "ADD", - "gas": 222834, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x219", - "0x144", - "0xa0", - "0x0", - "0x4", - "0x1f4", - "0x4", - "0x0", - "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", - "0x1f", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 684, - "op": "AND", - "gas": 222831, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x219", - "0x144", - "0xa0", - "0x0", - "0x4", - "0x1f4", - "0x4", - "0x0", - "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", - "0x23" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 685, - "op": "SWAP1", - "gas": 222828, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x219", - "0x144", - "0xa0", - "0x0", - "0x4", - "0x1f4", - "0x4", - "0x0", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 686, - "op": "POP", - "gas": 222825, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x219", - "0x144", - "0xa0", - "0x0", - "0x4", - "0x1f4", - "0x4", - "0x20", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 687, - "op": "SWAP2", - "gas": 222823, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x219", - "0x144", - "0xa0", - "0x0", - "0x4", - "0x1f4", - "0x4", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 688, - "op": "SWAP1", - "gas": 222820, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x219", - "0x144", - "0xa0", - "0x0", - "0x4", - "0x20", - "0x4", - "0x1f4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 689, - "op": "POP", - "gas": 222817, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x219", - "0x144", - "0xa0", - "0x0", - "0x4", - "0x20", - "0x1f4", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 690, - "op": "JUMP", - "gas": 222815, - "gasCost": 8, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x219", - "0x144", - "0xa0", - "0x0", - "0x4", - "0x20", - "0x1f4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 500, - "op": "JUMPDEST", - "gas": 222807, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x219", - "0x144", - "0xa0", - "0x0", - "0x4", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 501, - "op": "DUP5", - "gas": 222806, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x219", - "0x144", - "0xa0", - "0x0", - "0x4", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 502, - "op": "ADD", - "gas": 222803, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x219", - "0x144", - "0xa0", - "0x0", - "0x4", - "0x20", - "0x144" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 503, - "op": "SWAP2", - "gas": 222800, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x219", - "0x144", - "0xa0", - "0x0", - "0x4", - "0x164" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 504, - "op": "POP", - "gas": 222797, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x219", - "0x144", - "0xa0", - "0x164", - "0x4", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 505, - "op": "POP", - "gas": 222795, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x219", - "0x144", - "0xa0", - "0x164", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 506, - "op": "SWAP3", - "gas": 222793, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x219", - "0x144", - "0xa0", - "0x164" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 507, - "op": "SWAP2", - "gas": 222790, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x164", - "0x144", - "0xa0", - "0x219" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 508, - "op": "POP", - "gas": 222787, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x164", - "0x219", - "0xa0", - "0x144" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 509, - "op": "POP", - "gas": 222785, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x164", - "0x219", - "0xa0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 510, - "op": "JUMP", - "gas": 222783, - "gasCost": 8, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x164", - "0x219" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 537, - "op": "JUMPDEST", - "gas": 222775, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x164" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 538, - "op": "SWAP1", - "gas": 222774, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x124", - "0x164" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 539, - "op": "POP", - "gas": 222771, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x164", - "0x124" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 540, - "op": "SWAP3", - "gas": 222769, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xd4", - "0xa0", - "0x104", - "0x164" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 541, - "op": "SWAP2", - "gas": 222766, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0x164", - "0xa0", - "0x104", - "0xd4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 542, - "op": "POP", - "gas": 222763, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0x164", - "0xd4", - "0x104", - "0xa0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 543, - "op": "POP", - "gas": 222761, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0x164", - "0xd4", - "0x104" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 544, - "op": "JUMP", - "gas": 222759, - "gasCost": 8, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0x164", - "0xd4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 212, - "op": "JUMPDEST", - "gas": 222751, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0x164" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 213, - "op": "PUSH1", - "gas": 222750, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0x164" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 215, - "op": "MLOAD", - "gas": 222747, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0x164", - "0x40" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 216, - "op": "PUSH1", - "gas": 222744, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0x164", - "0xe0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 218, - "op": "DUP2", - "gas": 222741, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0x164", - "0xe0", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 219, - "op": "DUP4", - "gas": 222738, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0x164", - "0xe0", - "0x20", - "0xe0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 220, - "op": "SUB", - "gas": 222735, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0x164", - "0xe0", - "0x20", - "0xe0", - "0x164" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 221, - "op": "SUB", - "gas": 222732, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0x164", - "0xe0", - "0x20", - "0x84" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 222, - "op": "DUP2", - "gas": 222729, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0x164", - "0xe0", - "0x64" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 223, - "op": "MSTORE", - "gas": 222726, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0x164", - "0xe0", - "0x64", - "0xe0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 224, - "op": "SWAP1", - "gas": 222723, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0x164", - "0xe0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 225, - "op": "PUSH1", - "gas": 222720, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xe0", - "0x164" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 227, - "op": "MSTORE", - "gas": 222717, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xe0", - "0x164", - "0x40" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 228, - "op": "PUSH32", - "gas": 222714, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xe0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 261, - "op": "PUSH28", - "gas": 222711, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xe0", - "0x41304fac00000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 290, - "op": "NOT", - "gas": 222708, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xe0", - "0x41304fac00000000000000000000000000000000000000000000000000000000", - "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 291, - "op": "AND", - "gas": 222705, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xe0", - "0x41304fac00000000000000000000000000000000000000000000000000000000", - "0xffffffff00000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 292, - "op": "PUSH1", - "gas": 222702, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xe0", - "0x41304fac00000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 294, - "op": "DUP3", - "gas": 222699, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xe0", - "0x41304fac00000000000000000000000000000000000000000000000000000000", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 295, - "op": "ADD", - "gas": 222696, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xe0", - "0x41304fac00000000000000000000000000000000000000000000000000000000", - "0x20", - "0xe0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 296, - "op": "DUP1", - "gas": 222693, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xe0", - "0x41304fac00000000000000000000000000000000000000000000000000000000", - "0x100" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 297, - "op": "MLOAD", - "gas": 222690, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xe0", - "0x41304fac00000000000000000000000000000000000000000000000000000000", - "0x100", - "0x100" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 298, - "op": "PUSH28", - "gas": 222687, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xe0", - "0x41304fac00000000000000000000000000000000000000000000000000000000", - "0x100", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 327, - "op": "DUP4", - "gas": 222684, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xe0", - "0x41304fac00000000000000000000000000000000000000000000000000000000", - "0x100", - "0x0", - "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 328, - "op": "DUP2", - "gas": 222681, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xe0", - "0x41304fac00000000000000000000000000000000000000000000000000000000", - "0x100", - "0x0", - "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0x41304fac00000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 329, - "op": "DUP4", - "gas": 222678, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xe0", - "0x41304fac00000000000000000000000000000000000000000000000000000000", - "0x100", - "0x0", - "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0x41304fac00000000000000000000000000000000000000000000000000000000", - "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 330, - "op": "AND", - "gas": 222675, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xe0", - "0x41304fac00000000000000000000000000000000000000000000000000000000", - "0x100", - "0x0", - "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0x41304fac00000000000000000000000000000000000000000000000000000000", - "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 331, - "op": "OR", - "gas": 222672, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xe0", - "0x41304fac00000000000000000000000000000000000000000000000000000000", - "0x100", - "0x0", - "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0x41304fac00000000000000000000000000000000000000000000000000000000", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 332, - "op": "DUP4", - "gas": 222669, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xe0", - "0x41304fac00000000000000000000000000000000000000000000000000000000", - "0x100", - "0x0", - "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0x41304fac00000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 333, - "op": "MSTORE", - "gas": 222666, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xe0", - "0x41304fac00000000000000000000000000000000000000000000000000000000", - "0x100", - "0x0", - "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0x41304fac00000000000000000000000000000000000000000000000000000000", - "0x100" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 334, - "op": "POP", - "gas": 222663, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xe0", - "0x41304fac00000000000000000000000000000000000000000000000000000000", - "0x100", - "0x0", - "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "41304fac00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 335, - "op": "POP", - "gas": 222661, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xe0", - "0x41304fac00000000000000000000000000000000000000000000000000000000", - "0x100", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "41304fac00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 336, - "op": "POP", - "gas": 222659, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xe0", - "0x41304fac00000000000000000000000000000000000000000000000000000000", - "0x100" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "41304fac00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 337, - "op": "POP", - "gas": 222657, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xe0", - "0x41304fac00000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "41304fac00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 338, - "op": "PUSH2", - "gas": 222655, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xe0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "41304fac00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 341, - "op": "PUSH1", - "gas": 222652, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xe0", - "0x15f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "41304fac00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 343, - "op": "SHL", - "gas": 222649, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xe0", - "0x15f", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "41304fac00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 344, - "op": "PUSH1", - "gas": 222646, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xe0", - "0x15f00000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "41304fac00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 346, - "op": "SHR", - "gas": 222643, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xe0", - "0x15f00000000", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "41304fac00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 347, - "op": "JUMP", - "gas": 222640, - "gasCost": 8, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xe0", - "0x15f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "41304fac00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 351, - "op": "JUMPDEST", - "gas": 222632, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xe0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "41304fac00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 352, - "op": "PUSH1", - "gas": 222631, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xe0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "41304fac00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 354, - "op": "DUP2", - "gas": 222628, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xe0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "41304fac00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 355, - "op": "MLOAD", - "gas": 222625, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xe0", - "0x0", - "0xe0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "41304fac00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 356, - "op": "SWAP1", - "gas": 222622, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xe0", - "0x0", - "0x64" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "41304fac00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 357, - "op": "POP", - "gas": 222619, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xe0", - "0x64", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "41304fac00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 358, - "op": "PUSH1", - "gas": 222617, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xe0", - "0x64" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "41304fac00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 360, - "op": "PUSH11", - "gas": 222614, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xe0", - "0x64", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "41304fac00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 372, - "op": "SWAP1", - "gas": 222611, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xe0", - "0x64", - "0x0", - "0x636f6e736f6c652e6c6f67" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "41304fac00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 373, - "op": "POP", - "gas": 222608, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xe0", - "0x64", - "0x636f6e736f6c652e6c6f67", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "41304fac00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 374, - "op": "PUSH1", - "gas": 222606, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xe0", - "0x64", - "0x636f6e736f6c652e6c6f67" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "41304fac00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 376, - "op": "DUP4", - "gas": 222603, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xe0", - "0x64", - "0x636f6e736f6c652e6c6f67", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "41304fac00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 377, - "op": "ADD", - "gas": 222600, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xe0", - "0x64", - "0x636f6e736f6c652e6c6f67", - "0x20", - "0xe0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "41304fac00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 378, - "op": "PUSH1", - "gas": 222597, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xe0", - "0x64", - "0x636f6e736f6c652e6c6f67", - "0x100" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "41304fac00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 380, - "op": "DUP1", - "gas": 222594, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xe0", - "0x64", - "0x636f6e736f6c652e6c6f67", - "0x100", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "41304fac00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 381, - "op": "DUP5", - "gas": 222591, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xe0", - "0x64", - "0x636f6e736f6c652e6c6f67", - "0x100", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "41304fac00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 382, - "op": "DUP4", - "gas": 222588, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xe0", - "0x64", - "0x636f6e736f6c652e6c6f67", - "0x100", - "0x0", - "0x0", - "0x64" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "41304fac00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 383, - "op": "DUP6", - "gas": 222585, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xe0", - "0x64", - "0x636f6e736f6c652e6c6f67", - "0x100", - "0x0", - "0x0", - "0x64", - "0x100" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "41304fac00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 384, - "op": "GAS", - "gas": 222582, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xe0", - "0x64", - "0x636f6e736f6c652e6c6f67", - "0x100", - "0x0", - "0x0", - "0x64", - "0x100", - "0x636f6e736f6c652e6c6f67" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "41304fac00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 385, - "op": "STATICCALL", - "gas": 222580, - "gasCost": 219143, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xe0", - "0x64", - "0x636f6e736f6c652e6c6f67", - "0x100", - "0x0", - "0x0", - "0x64", - "0x100", - "0x636f6e736f6c652e6c6f67", - "0x36574" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "41304fac00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "extraData": { - "codeList": [ - "0x" - ], - "proofList": [ - { - "address": "0x000000000000000000636f6e736f6c652e6c6f67", - "nonce": 0, - "balance": "0x0", - "codeHash": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "address": "0x000000000000000000636f6e736f6c652e6c6f67", - "nonce": 0, - "balance": "0x0", - "codeHash": "0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470" - } - ] - } - }, - { - "pc": 386, - "op": "POP", - "gas": 219980, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xe0", - "0x64", - "0x636f6e736f6c652e6c6f67", - "0x100", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "41304fac00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 387, - "op": "POP", - "gas": 219978, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xe0", - "0x64", - "0x636f6e736f6c652e6c6f67", - "0x100" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "41304fac00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 388, - "op": "POP", - "gas": 219976, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xe0", - "0x64", - "0x636f6e736f6c652e6c6f67" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "41304fac00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 389, - "op": "POP", - "gas": 219974, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xe0", - "0x64" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "41304fac00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 390, - "op": "POP", - "gas": 219972, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c", - "0xe0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "41304fac00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 391, - "op": "JUMP", - "gas": 219970, - "gasCost": 8, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0", - "0x15c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "41304fac00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 348, - "op": "JUMPDEST", - "gas": 219962, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "41304fac00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 349, - "op": "POP", - "gas": 219961, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a", - "0xa0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "41304fac00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 350, - "op": "JUMP", - "gas": 219959, - "gasCost": 8, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x7a" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "41304fac00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 122, - "op": "JUMPDEST", - "gas": 219951, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "41304fac00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 123, - "op": "DUP1", - "gas": 219950, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "41304fac00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 124, - "op": "PUSH1", - "gas": 219947, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "41304fac00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 126, - "op": "DUP1", - "gas": 219944, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "41304fac00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 127, - "op": "PUSH2", - "gas": 219941, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "41304fac00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 130, - "op": "EXP", - "gas": 219938, - "gasCost": 10, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x0", - "0x0", - "0x100" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "41304fac00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 131, - "op": "DUP2", - "gas": 219928, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x0", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "41304fac00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 132, - "op": "SLOAD", - "gas": 219925, - "gasCost": 2100, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x0", - "0x1", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "41304fac00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0x0000000000000000000000000000000000000000000000000000000000000000": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - "extraData": { - "proofList": [ - { - "address": "0xb36feaeaf76c2a33335b73bef9aef7a23d9af1e3", - "nonce": 1, - "balance": "0x0", - "codeHash": "0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470", - "storage": { - "key": "0x0000000000000000000000000000000000000000000000000000000000000000", - "value": "0x0000000000000000000000000000000000000000000000000000000000000000" - } - } - ] - } - }, - { - "pc": 133, - "op": "DUP2", - "gas": 217825, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x0", - "0x1", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "41304fac00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 134, - "op": "PUSH20", - "gas": 217822, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x0", - "0x1", - "0x0", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "41304fac00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 155, - "op": "MUL", - "gas": 217819, - "gasCost": 5, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x0", - "0x1", - "0x0", - "0x1", - "0xffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "41304fac00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 156, - "op": "NOT", - "gas": 217814, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x0", - "0x1", - "0x0", - "0xffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "41304fac00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 157, - "op": "AND", - "gas": 217811, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x0", - "0x1", - "0x0", - "0xffffffffffffffffffffffff0000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "41304fac00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 158, - "op": "SWAP1", - "gas": 217808, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x0", - "0x1", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "41304fac00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 159, - "op": "DUP4", - "gas": 217805, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x0", - "0x0", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "41304fac00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 160, - "op": "PUSH20", - "gas": 217802, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x0", - "0x0", - "0x1", - "0x5fdbdfae180345c6cff5316c286727cf1a43327" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "41304fac00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 181, - "op": "AND", - "gas": 217799, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x0", - "0x0", - "0x1", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0xffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "41304fac00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 182, - "op": "MUL", - "gas": 217796, - "gasCost": 5, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x0", - "0x0", - "0x1", - "0x5fdbdfae180345c6cff5316c286727cf1a43327" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "41304fac00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 183, - "op": "OR", - "gas": 217791, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x0", - "0x0", - "0x5fdbdfae180345c6cff5316c286727cf1a43327" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "41304fac00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 184, - "op": "SWAP1", - "gas": 217788, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x0", - "0x5fdbdfae180345c6cff5316c286727cf1a43327" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "41304fac00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 185, - "op": "SSTORE", - "gas": 217785, - "gasCost": 20000, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "41304fac00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0x0000000000000000000000000000000000000000000000000000000000000000": "0x00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327" - }, - "extraData": { - "proofList": [ - { - "address": "0xb36feaeaf76c2a33335b73bef9aef7a23d9af1e3", - "nonce": 1, - "balance": "0x0", - "codeHash": "0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470", - "storage": { - "key": "0x0000000000000000000000000000000000000000000000000000000000000000", - "value": "0x0000000000000000000000000000000000000000000000000000000000000000" - } - } - ] - } - }, - { - "pc": 186, - "op": "POP", - "gas": 197785, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "41304fac00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 187, - "op": "POP", - "gas": 197783, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x5fdbdfae180345c6cff5316c286727cf1a43327" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "41304fac00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 188, - "op": "PUSH2", - "gas": 197781, - "gasCost": 3, - "depth": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "41304fac00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 191, - "op": "JUMP", - "gas": 197778, - "gasCost": 8, - "depth": 1, - "stack": [ - "0x2ca" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "41304fac00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 714, - "op": "JUMPDEST", - "gas": 197770, - "gasCost": 1, - "depth": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "41304fac00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 715, - "op": "PUSH2", - "gas": 197769, - "gasCost": 3, - "depth": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "41304fac00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 718, - "op": "DUP1", - "gas": 197766, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x3dc" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "41304fac00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 719, - "op": "PUSH2", - "gas": 197763, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x3dc", - "0x3dc" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "41304fac00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 722, - "op": "PUSH1", - "gas": 197760, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x3dc", - "0x3dc", - "0x2d9" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "41304fac00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 724, - "op": "CODECOPY", - "gas": 197757, - "gasCost": 154, - "depth": 1, - "stack": [ - "0x3dc", - "0x3dc", - "0x2d9", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000164", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "41304fac00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 725, - "op": "PUSH1", - "gas": 197603, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x3dc" - ], - "memory": [ - "608060405234801561001057600080fd5b50600436106100365760003560e01c", - "806321848c461461003b578063b0f2b72a14610057575b600080fd5b61005560", - "048036038101906100509190610277565b610073565b005b6100716004803603", - "81019061006c9190610277565b61010b565b005b60008060009054906101000a", - "900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffff", - "ffffffffffffffffffffffffffffffff166321848c46836040518263ffffffff", - "1660e01b81526004016100d2919061030a565b60006040518083038160008780", - "3b1580156100ec57600080fd5b505af19250505080156100fd575060015b6101", - "0657610107565b5b5050565b60008060009054906101000a900473ffffffffff", - "ffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffff", - "ffffffffffffffff1663b0f2b72a836040518263ffffffff1660e01b81526004", - "0161016a919061030a565b600060405180830381600087803b15801561018457", - "600080fd5b505af1158015610198573d6000803e3d6000fd5b50505050505056", - "5b610236816040516024016101b491906102e8565b6040516020818303038152", - "906040527f41304fac0000000000000000000000000000000000000000000000", - "00000000007bffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ffff19166020820180517bffffffffffffffffffffffffffffffffffffffffff", - "ffffffffffffff8381831617835250505050610239565b50565b600081519050", - "60006a636f6e736f6c652e6c6f679050602083016000808483855afa50505050", - "50565b6000813590506102718161038f565b92915050565b6000602082840312", - "1561028957600080fd5b600061029784828501610262565b9150509291505056", - "5b60006102ab82610325565b6102b58185610330565b93506102c58185602086", - "0161034b565b6102ce8161037e565b840191505092915050565b6102e2816103", - "41565b82525050565b6000602082019050818103600083015261030281846102", - "a0565b905092915050565b600060208201905061031f60008301846102d9565b", - "92915050565b600081519050919050565b600082825260208201905092915050", - "565b6000819050919050565b60005b8381101561036957808201518184015260", - "208101905061034e565b83811115610378576000848401525b50505050565b60", - "00601f19601f8301169050919050565b61039881610341565b81146103a35760", - "0080fd5b5056fea264697066735822122079a958a4c7a90094ec761b33fbd301", - "163f4e1e62f3ccae8afe9f42a770e054f264736f6c6343000804003300000000" - ] - }, - { - "pc": 727, - "op": "RETURN", - "gas": 197600, - "gasCost": 0, - "depth": 1, - "stack": [ - "0x3dc", - "0x0" - ], - "memory": [ - "608060405234801561001057600080fd5b50600436106100365760003560e01c", - "806321848c461461003b578063b0f2b72a14610057575b600080fd5b61005560", - "048036038101906100509190610277565b610073565b005b6100716004803603", - "81019061006c9190610277565b61010b565b005b60008060009054906101000a", - "900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffff", - "ffffffffffffffffffffffffffffffff166321848c46836040518263ffffffff", - "1660e01b81526004016100d2919061030a565b60006040518083038160008780", - "3b1580156100ec57600080fd5b505af19250505080156100fd575060015b6101", - "0657610107565b5b5050565b60008060009054906101000a900473ffffffffff", - "ffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffff", - "ffffffffffffffff1663b0f2b72a836040518263ffffffff1660e01b81526004", - "0161016a919061030a565b600060405180830381600087803b15801561018457", - "600080fd5b505af1158015610198573d6000803e3d6000fd5b50505050505056", - "5b610236816040516024016101b491906102e8565b6040516020818303038152", - "906040527f41304fac0000000000000000000000000000000000000000000000", - "00000000007bffffffffffffffffffffffffffffffffffffffffffffffffffff", - "ffff19166020820180517bffffffffffffffffffffffffffffffffffffffffff", - "ffffffffffffff8381831617835250505050610239565b50565b600081519050", - "60006a636f6e736f6c652e6c6f679050602083016000808483855afa50505050", - "50565b6000813590506102718161038f565b92915050565b6000602082840312", - "1561028957600080fd5b600061029784828501610262565b9150509291505056", - "5b60006102ab82610325565b6102b58185610330565b93506102c58185602086", - "0161034b565b6102ce8161037e565b840191505092915050565b6102e2816103", - "41565b82525050565b6000602082019050818103600083015261030281846102", - "a0565b905092915050565b600060208201905061031f60008301846102d9565b", - "92915050565b600081519050919050565b600082825260208201905092915050", - "565b6000819050919050565b60005b8381101561036957808201518184015260", - "208101905061034e565b83811115610378576000848401525b50505050565b60", - "00601f19601f8301169050919050565b61039881610341565b81146103a35760", - "0080fd5b5056fea264697066735822122079a958a4c7a90094ec761b33fbd301", - "163f4e1e62f3ccae8afe9f42a770e054f264736f6c6343000804003300000000" - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/trie/zkproof/fail_call_trace.json b/trie/zkproof/fail_call_trace.json deleted file mode 100644 index ba1e1be55f..0000000000 --- a/trie/zkproof/fail_call_trace.json +++ /dev/null @@ -1,7946 +0,0 @@ -{ - "blockTrace": { - "number": "0x9", - "hash": "0x0889c40215749c5099e243e3c2459a338dfce2c906b856d3fba0a6fd0baa4b26", - "gasLimit": 6781272, - "difficulty": "0x2", - "baseFee": "0x13d38004", - "coinbase": { - "address": "0x0000000000000000000000000000000000000000", - "nonce": 0, - "balance": "0x0", - "codeHash": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - "time": 1656148698, - "transactions": [ - { - "type": 2, - "nonce": 9, - "gas": 3021784, - "gasPrice": "0x1917ae05", - "from": "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "to": "0xb36feaeaf76c2a33335b73bef9aef7a23d9af1e3", - "chainId": "0xcf55", - "value": "0x0", - "data": "0x21848c46000000000000000000000000000000000000000000000000000001819a279ef6", - "isCreate": false, - "v": "0x1", - "r": "0xbc8e17186d456247001178bef1818a44a5d61ae677da13715402a8a7f80f6596", - "s": "0x2af544332b3c8a482d2055faaa7b601a42cdd9b06ee9391472b385499baae52f" - } - ] - }, - "storageTrace": { - "rootBefore": "0x04b202d40c1365de84c6c749040bfa8869fff4cbaa0fcbff9cb8cb26885254a6", - "rootAfter": "0x1bc888249fb5e6cefec15d4bcc54148a69c53040e20e2d12991848afbafdd412", - "proofs": { - "0x0000000000000000000000000000000000000000": [ - "0x006f1b1aaa0786b0ffda98b55f7f6e70fefe08769c301f7367dfa71314749f4a0a830a43ab28f2b8c5f19e05fbc1b89e04c9d2109b4c7f725cdf9a87923c1b0c29", - "0x01e232499c4754368052075d13fb84b18537b94a2da166170e7bd94bdc879097090404000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000cc0a77f6e063b4b62eb7d9ed6f427cf687d8d0071d751850cfe5d136bc60d3ab17f322bba5548b6498505e3601fd4418459cabb94a6ac1288274463ca8e70a1700", - "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" - ], - "0x05fDbDfaE180345C6Cff5316c286727CF1a43327": [ - "0x006f1b1aaa0786b0ffda98b55f7f6e70fefe08769c301f7367dfa71314749f4a0a830a43ab28f2b8c5f19e05fbc1b89e04c9d2109b4c7f725cdf9a87923c1b0c29", - "0x007fedc4cb57b39dadd6aec7d278c9acf8c9dfac0a6e5ceb698cb0913c3edaaa19091597898616115b64d21445d74143d5e7c57e902b833cdd2da42d09ed17270e", - "0x01fb6c28252d0ee14db1cdabda01391300ac75dcfdcda6ba1880e509aed4bc1225040400000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000009d2fd3a7cb9d5547a21c851248d703921e6348bfbdf4c0130695a3263f916ef0896d91ba522a27b1a9e1ba9ba3fd07b8bce34f0ecab3bbb05f34fa1abf5516d00", - "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" - ], - "0x4cb1aB63aF5D8931Ce09673EbD8ae2ce16fD6571": [ - "0x006f1b1aaa0786b0ffda98b55f7f6e70fefe08769c301f7367dfa71314749f4a0a830a43ab28f2b8c5f19e05fbc1b89e04c9d2109b4c7f725cdf9a87923c1b0c29", - "0x007fedc4cb57b39dadd6aec7d278c9acf8c9dfac0a6e5ceb698cb0913c3edaaa19091597898616115b64d21445d74143d5e7c57e902b833cdd2da42d09ed17270e", - "0x002f719a7d94e0142e3e0ccb05942a65398e36ee904d8455b862801431ee19601da47d3fb02fb657da171255b74455e53291c4cb14a7f6eaa02bc75548a5062a0f", - "0x001bb3c5a68be370d6804d285428857a562adadc8477be5254ed9e550daed91b1b0000000000000000000000000000000000000000000000000000000000000000", - "0x000000000000000000000000000000000000000000000000000000000000000000f985ee7ad1812bc674cd7864a74efb29f55f7f398db2a4456ac2dba3576ff914", - "0x0078c7b59d789c294f21339f0a872b81a418d6b24273fe959dc00126520917970dafedcbd6ee898d33323fa9fff25c5571c39c3876e33a7f4de1da349b9d81e207", - "0x00000000000000000000000000000000000000000000000000000000000000000053e72b619a3425716a09d18693ede3f51e1f974c9bb86fa3888dd533433d1522", - "0x00ed46bc9a7f3d0393c49b94cc391dfc076d8488a8df1b0d85100bcdeb3e45b004a72c67edca1db779b38140aaee9baf382c96315f0884909da4a4a7480f3ab82d", - "0x017581e431a68d0fa641e14a7d29a6c2b150db6da1d13f59dee6f7f492a0bebd290404000000000000000000000000000000000000000000000000000000000000000000090056bc75e2d630fffffffffffffffffffffffffffffffffffff9bd55fae97c0ac5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470000000000000000000000000000000000000000000000000000000000000000000", - "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" - ], - "0xb36feAEaF76c2A33335b73bEF9aEf7a23d9af1e3": [ - "0x006f1b1aaa0786b0ffda98b55f7f6e70fefe08769c301f7367dfa71314749f4a0a830a43ab28f2b8c5f19e05fbc1b89e04c9d2109b4c7f725cdf9a87923c1b0c29", - "0x007fedc4cb57b39dadd6aec7d278c9acf8c9dfac0a6e5ceb698cb0913c3edaaa19091597898616115b64d21445d74143d5e7c57e902b833cdd2da42d09ed17270e", - "0x002f719a7d94e0142e3e0ccb05942a65398e36ee904d8455b862801431ee19601da47d3fb02fb657da171255b74455e53291c4cb14a7f6eaa02bc75548a5062a0f", - "0x001bb3c5a68be370d6804d285428857a562adadc8477be5254ed9e550daed91b1b0000000000000000000000000000000000000000000000000000000000000000", - "0x000000000000000000000000000000000000000000000000000000000000000000f985ee7ad1812bc674cd7864a74efb29f55f7f398db2a4456ac2dba3576ff914", - "0x0078c7b59d789c294f21339f0a872b81a418d6b24273fe959dc00126520917970dafedcbd6ee898d33323fa9fff25c5571c39c3876e33a7f4de1da349b9d81e207", - "0x00000000000000000000000000000000000000000000000000000000000000000053e72b619a3425716a09d18693ede3f51e1f974c9bb86fa3888dd533433d1522", - "0x00ed46bc9a7f3d0393c49b94cc391dfc076d8488a8df1b0d85100bcdeb3e45b004a72c67edca1db779b38140aaee9baf382c96315f0884909da4a4a7480f3ab82d", - "0x01f59112e5670628682b1ec72767b1a6153096d47742e1d9455c175a955211e9000404000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000cf73ee5d93a98045cd55efe938790c20effb831ac0646f6875213fb4aca6631921b9f6b124d61bfa2a988690fe447213304911cc93299f2b183e8018257d78e200", - "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" - ] - }, - "storageProofs": { - "0x05fDbDfaE180345C6Cff5316c286727CF1a43327": { - "0x0000000000000000000000000000000000000000000000000000000000000000": [ - "0x016448b64684ee39a823d5fe5fd52431dc81e4817bf2c3ea3cab9e239efbf5982001010000000000000000000000000000000000000000000000000000000001819a18d19800", - "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" - ] - }, - "0xb36feAEaF76c2A33335b73bEF9aEf7a23d9af1e3": { - "0x0000000000000000000000000000000000000000000000000000000000000000": [ - "0x016448b64684ee39a823d5fe5fd52431dc81e4817bf2c3ea3cab9e239efbf598200101000000000000000000000000000005fdbdfae180345c6cff5316c286727cf1a4332700", - "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" - ] - } - } - }, - "executionResults": [ - { - "gas": 32223, - "failed": false, - "from": { - "address": "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "nonce": 9, - "balance": "0x56bc75e2d630fffffffffffffffffffffffffffffffffffff9bd55fae97c0a", - "codeHash": "0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470" - }, - "to": { - "address": "0xb36feaeaf76c2a33335b73bef9aef7a23d9af1e3", - "nonce": 1, - "balance": "0x0", - "codeHash": "0xcf73ee5d93a98045cd55efe938790c20effb831ac0646f6875213fb4aca66319" - }, - "accountAfter": [ - { - "address": "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "nonce": 10, - "balance": "0x56bc75e2d630fffffffffffffffffffffffffffffffffffff9b396702b048e", - "codeHash": "0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470" - }, - { - "address": "0xb36feaeaf76c2a33335b73bef9aef7a23d9af1e3", - "nonce": 1, - "balance": "0x0", - "codeHash": "0xcf73ee5d93a98045cd55efe938790c20effb831ac0646f6875213fb4aca66319" - } - ], - "codeHash": "0xcf73ee5d93a98045cd55efe938790c20effb831ac0646f6875213fb4aca66319", - "byteCode": "0x608060405234801561001057600080fd5b50600436106100365760003560e01c806321848c461461003b578063b0f2b72a14610057575b600080fd5b61005560048036038101906100509190610277565b610073565b005b610071600480360381019061006c9190610277565b61010b565b005b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff166321848c46836040518263ffffffff1660e01b81526004016100d2919061030a565b600060405180830381600087803b1580156100ec57600080fd5b505af19250505080156100fd575060015b61010657610107565b5b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663b0f2b72a836040518263ffffffff1660e01b815260040161016a919061030a565b600060405180830381600087803b15801561018457600080fd5b505af1158015610198573d6000803e3d6000fd5b505050505050565b610236816040516024016101b491906102e8565b6040516020818303038152906040527f41304fac000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050610239565b50565b60008151905060006a636f6e736f6c652e6c6f679050602083016000808483855afa5050505050565b6000813590506102718161038f565b92915050565b60006020828403121561028957600080fd5b600061029784828501610262565b91505092915050565b60006102ab82610325565b6102b58185610330565b93506102c581856020860161034b565b6102ce8161037e565b840191505092915050565b6102e281610341565b82525050565b6000602082019050818103600083015261030281846102a0565b905092915050565b600060208201905061031f60008301846102d9565b92915050565b600081519050919050565b600082825260208201905092915050565b6000819050919050565b60005b8381101561036957808201518184015260208101905061034e565b83811115610378576000848401525b50505050565b6000601f19601f8301169050919050565b61039881610341565b81146103a357600080fd5b5056fea264697066735822122079a958a4c7a90094ec761b33fbd301163f4e1e62f3ccae8afe9f42a770e054f264736f6c63430008040033", - "structLogs": [ - { - "pc": 0, - "op": "PUSH1", - "gas": 3000520, - "gasCost": 3, - "depth": 1 - }, - { - "pc": 2, - "op": "PUSH1", - "gas": 3000517, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80" - ] - }, - { - "pc": 4, - "op": "MSTORE", - "gas": 3000514, - "gasCost": 12, - "depth": 1, - "stack": [ - "0x80", - "0x40" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 5, - "op": "CALLVALUE", - "gas": 3000502, - "gasCost": 2, - "depth": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 6, - "op": "DUP1", - "gas": 3000500, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 7, - "op": "ISZERO", - "gas": 3000497, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 8, - "op": "PUSH2", - "gas": 3000494, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x0", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 11, - "op": "JUMPI", - "gas": 3000491, - "gasCost": 10, - "depth": 1, - "stack": [ - "0x0", - "0x1", - "0x10" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 16, - "op": "JUMPDEST", - "gas": 3000481, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 17, - "op": "POP", - "gas": 3000480, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 18, - "op": "PUSH1", - "gas": 3000478, - "gasCost": 3, - "depth": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 20, - "op": "CALLDATASIZE", - "gas": 3000475, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 21, - "op": "LT", - "gas": 3000473, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x4", - "0x24" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 22, - "op": "PUSH2", - "gas": 3000470, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 25, - "op": "JUMPI", - "gas": 3000467, - "gasCost": 10, - "depth": 1, - "stack": [ - "0x0", - "0x36" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 26, - "op": "PUSH1", - "gas": 3000457, - "gasCost": 3, - "depth": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 28, - "op": "CALLDATALOAD", - "gas": 3000454, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 29, - "op": "PUSH1", - "gas": 3000451, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c4600000000000000000000000000000000000000000000000000000181" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 31, - "op": "SHR", - "gas": 3000448, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c4600000000000000000000000000000000000000000000000000000181", - "0xe0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 32, - "op": "DUP1", - "gas": 3000445, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 33, - "op": "PUSH4", - "gas": 3000442, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x21848c46" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 38, - "op": "EQ", - "gas": 3000439, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x21848c46", - "0x21848c46" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 39, - "op": "PUSH2", - "gas": 3000436, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 42, - "op": "JUMPI", - "gas": 3000433, - "gasCost": 10, - "depth": 1, - "stack": [ - "0x21848c46", - "0x1", - "0x3b" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 59, - "op": "JUMPDEST", - "gas": 3000423, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x21848c46" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 60, - "op": "PUSH2", - "gas": 3000422, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 63, - "op": "PUSH1", - "gas": 3000419, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 65, - "op": "DUP1", - "gas": 3000416, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 66, - "op": "CALLDATASIZE", - "gas": 3000413, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x4", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 67, - "op": "SUB", - "gas": 3000411, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x4", - "0x4", - "0x24" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 68, - "op": "DUP2", - "gas": 3000408, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x4", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 69, - "op": "ADD", - "gas": 3000405, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x4", - "0x20", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 70, - "op": "SWAP1", - "gas": 3000402, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x4", - "0x24" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 71, - "op": "PUSH2", - "gas": 3000399, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x24", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 74, - "op": "SWAP2", - "gas": 3000396, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x24", - "0x4", - "0x50" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 75, - "op": "SWAP1", - "gas": 3000393, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x50", - "0x4", - "0x24" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 76, - "op": "PUSH2", - "gas": 3000390, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x50", - "0x24", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 79, - "op": "JUMP", - "gas": 3000387, - "gasCost": 8, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x50", - "0x24", - "0x4", - "0x277" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 631, - "op": "JUMPDEST", - "gas": 3000379, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x50", - "0x24", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 632, - "op": "PUSH1", - "gas": 3000378, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x50", - "0x24", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 634, - "op": "PUSH1", - "gas": 3000375, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x50", - "0x24", - "0x4", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 636, - "op": "DUP3", - "gas": 3000372, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x50", - "0x24", - "0x4", - "0x0", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 637, - "op": "DUP5", - "gas": 3000369, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x50", - "0x24", - "0x4", - "0x0", - "0x20", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 638, - "op": "SUB", - "gas": 3000366, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x50", - "0x24", - "0x4", - "0x0", - "0x20", - "0x4", - "0x24" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 639, - "op": "SLT", - "gas": 3000363, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x50", - "0x24", - "0x4", - "0x0", - "0x20", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 640, - "op": "ISZERO", - "gas": 3000360, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x50", - "0x24", - "0x4", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 641, - "op": "PUSH2", - "gas": 3000357, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x50", - "0x24", - "0x4", - "0x0", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 644, - "op": "JUMPI", - "gas": 3000354, - "gasCost": 10, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x50", - "0x24", - "0x4", - "0x0", - "0x1", - "0x289" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 649, - "op": "JUMPDEST", - "gas": 3000344, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x50", - "0x24", - "0x4", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 650, - "op": "PUSH1", - "gas": 3000343, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x50", - "0x24", - "0x4", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 652, - "op": "PUSH2", - "gas": 3000340, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x50", - "0x24", - "0x4", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 655, - "op": "DUP5", - "gas": 3000337, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x50", - "0x24", - "0x4", - "0x0", - "0x0", - "0x297" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 656, - "op": "DUP3", - "gas": 3000334, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x50", - "0x24", - "0x4", - "0x0", - "0x0", - "0x297", - "0x24" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 657, - "op": "DUP6", - "gas": 3000331, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x50", - "0x24", - "0x4", - "0x0", - "0x0", - "0x297", - "0x24", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 658, - "op": "ADD", - "gas": 3000328, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x50", - "0x24", - "0x4", - "0x0", - "0x0", - "0x297", - "0x24", - "0x0", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 659, - "op": "PUSH2", - "gas": 3000325, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x50", - "0x24", - "0x4", - "0x0", - "0x0", - "0x297", - "0x24", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 662, - "op": "JUMP", - "gas": 3000322, - "gasCost": 8, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x50", - "0x24", - "0x4", - "0x0", - "0x0", - "0x297", - "0x24", - "0x4", - "0x262" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 610, - "op": "JUMPDEST", - "gas": 3000314, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x50", - "0x24", - "0x4", - "0x0", - "0x0", - "0x297", - "0x24", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 611, - "op": "PUSH1", - "gas": 3000313, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x50", - "0x24", - "0x4", - "0x0", - "0x0", - "0x297", - "0x24", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 613, - "op": "DUP2", - "gas": 3000310, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x50", - "0x24", - "0x4", - "0x0", - "0x0", - "0x297", - "0x24", - "0x4", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 614, - "op": "CALLDATALOAD", - "gas": 3000307, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x50", - "0x24", - "0x4", - "0x0", - "0x0", - "0x297", - "0x24", - "0x4", - "0x0", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 615, - "op": "SWAP1", - "gas": 3000304, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x50", - "0x24", - "0x4", - "0x0", - "0x0", - "0x297", - "0x24", - "0x4", - "0x0", - "0x1819a279ef6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 616, - "op": "POP", - "gas": 3000301, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x50", - "0x24", - "0x4", - "0x0", - "0x0", - "0x297", - "0x24", - "0x4", - "0x1819a279ef6", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 617, - "op": "PUSH2", - "gas": 3000299, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x50", - "0x24", - "0x4", - "0x0", - "0x0", - "0x297", - "0x24", - "0x4", - "0x1819a279ef6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 620, - "op": "DUP2", - "gas": 3000296, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x50", - "0x24", - "0x4", - "0x0", - "0x0", - "0x297", - "0x24", - "0x4", - "0x1819a279ef6", - "0x271" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 621, - "op": "PUSH2", - "gas": 3000293, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x50", - "0x24", - "0x4", - "0x0", - "0x0", - "0x297", - "0x24", - "0x4", - "0x1819a279ef6", - "0x271", - "0x1819a279ef6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 624, - "op": "JUMP", - "gas": 3000290, - "gasCost": 8, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x50", - "0x24", - "0x4", - "0x0", - "0x0", - "0x297", - "0x24", - "0x4", - "0x1819a279ef6", - "0x271", - "0x1819a279ef6", - "0x38f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 911, - "op": "JUMPDEST", - "gas": 3000282, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x50", - "0x24", - "0x4", - "0x0", - "0x0", - "0x297", - "0x24", - "0x4", - "0x1819a279ef6", - "0x271", - "0x1819a279ef6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 912, - "op": "PUSH2", - "gas": 3000281, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x50", - "0x24", - "0x4", - "0x0", - "0x0", - "0x297", - "0x24", - "0x4", - "0x1819a279ef6", - "0x271", - "0x1819a279ef6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 915, - "op": "DUP2", - "gas": 3000278, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x50", - "0x24", - "0x4", - "0x0", - "0x0", - "0x297", - "0x24", - "0x4", - "0x1819a279ef6", - "0x271", - "0x1819a279ef6", - "0x398" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 916, - "op": "PUSH2", - "gas": 3000275, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x50", - "0x24", - "0x4", - "0x0", - "0x0", - "0x297", - "0x24", - "0x4", - "0x1819a279ef6", - "0x271", - "0x1819a279ef6", - "0x398", - "0x1819a279ef6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 919, - "op": "JUMP", - "gas": 3000272, - "gasCost": 8, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x50", - "0x24", - "0x4", - "0x0", - "0x0", - "0x297", - "0x24", - "0x4", - "0x1819a279ef6", - "0x271", - "0x1819a279ef6", - "0x398", - "0x1819a279ef6", - "0x341" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 833, - "op": "JUMPDEST", - "gas": 3000264, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x50", - "0x24", - "0x4", - "0x0", - "0x0", - "0x297", - "0x24", - "0x4", - "0x1819a279ef6", - "0x271", - "0x1819a279ef6", - "0x398", - "0x1819a279ef6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 834, - "op": "PUSH1", - "gas": 3000263, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x50", - "0x24", - "0x4", - "0x0", - "0x0", - "0x297", - "0x24", - "0x4", - "0x1819a279ef6", - "0x271", - "0x1819a279ef6", - "0x398", - "0x1819a279ef6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 836, - "op": "DUP2", - "gas": 3000260, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x50", - "0x24", - "0x4", - "0x0", - "0x0", - "0x297", - "0x24", - "0x4", - "0x1819a279ef6", - "0x271", - "0x1819a279ef6", - "0x398", - "0x1819a279ef6", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 837, - "op": "SWAP1", - "gas": 3000257, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x50", - "0x24", - "0x4", - "0x0", - "0x0", - "0x297", - "0x24", - "0x4", - "0x1819a279ef6", - "0x271", - "0x1819a279ef6", - "0x398", - "0x1819a279ef6", - "0x0", - "0x1819a279ef6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 838, - "op": "POP", - "gas": 3000254, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x50", - "0x24", - "0x4", - "0x0", - "0x0", - "0x297", - "0x24", - "0x4", - "0x1819a279ef6", - "0x271", - "0x1819a279ef6", - "0x398", - "0x1819a279ef6", - "0x1819a279ef6", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 839, - "op": "SWAP2", - "gas": 3000252, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x50", - "0x24", - "0x4", - "0x0", - "0x0", - "0x297", - "0x24", - "0x4", - "0x1819a279ef6", - "0x271", - "0x1819a279ef6", - "0x398", - "0x1819a279ef6", - "0x1819a279ef6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 840, - "op": "SWAP1", - "gas": 3000249, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x50", - "0x24", - "0x4", - "0x0", - "0x0", - "0x297", - "0x24", - "0x4", - "0x1819a279ef6", - "0x271", - "0x1819a279ef6", - "0x1819a279ef6", - "0x1819a279ef6", - "0x398" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 841, - "op": "POP", - "gas": 3000246, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x50", - "0x24", - "0x4", - "0x0", - "0x0", - "0x297", - "0x24", - "0x4", - "0x1819a279ef6", - "0x271", - "0x1819a279ef6", - "0x1819a279ef6", - "0x398", - "0x1819a279ef6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 842, - "op": "JUMP", - "gas": 3000244, - "gasCost": 8, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x50", - "0x24", - "0x4", - "0x0", - "0x0", - "0x297", - "0x24", - "0x4", - "0x1819a279ef6", - "0x271", - "0x1819a279ef6", - "0x1819a279ef6", - "0x398" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 920, - "op": "JUMPDEST", - "gas": 3000236, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x50", - "0x24", - "0x4", - "0x0", - "0x0", - "0x297", - "0x24", - "0x4", - "0x1819a279ef6", - "0x271", - "0x1819a279ef6", - "0x1819a279ef6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 921, - "op": "DUP2", - "gas": 3000235, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x50", - "0x24", - "0x4", - "0x0", - "0x0", - "0x297", - "0x24", - "0x4", - "0x1819a279ef6", - "0x271", - "0x1819a279ef6", - "0x1819a279ef6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 922, - "op": "EQ", - "gas": 3000232, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x50", - "0x24", - "0x4", - "0x0", - "0x0", - "0x297", - "0x24", - "0x4", - "0x1819a279ef6", - "0x271", - "0x1819a279ef6", - "0x1819a279ef6", - "0x1819a279ef6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 923, - "op": "PUSH2", - "gas": 3000229, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x50", - "0x24", - "0x4", - "0x0", - "0x0", - "0x297", - "0x24", - "0x4", - "0x1819a279ef6", - "0x271", - "0x1819a279ef6", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 926, - "op": "JUMPI", - "gas": 3000226, - "gasCost": 10, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x50", - "0x24", - "0x4", - "0x0", - "0x0", - "0x297", - "0x24", - "0x4", - "0x1819a279ef6", - "0x271", - "0x1819a279ef6", - "0x1", - "0x3a3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 931, - "op": "JUMPDEST", - "gas": 3000216, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x50", - "0x24", - "0x4", - "0x0", - "0x0", - "0x297", - "0x24", - "0x4", - "0x1819a279ef6", - "0x271", - "0x1819a279ef6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 932, - "op": "POP", - "gas": 3000215, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x50", - "0x24", - "0x4", - "0x0", - "0x0", - "0x297", - "0x24", - "0x4", - "0x1819a279ef6", - "0x271", - "0x1819a279ef6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 933, - "op": "JUMP", - "gas": 3000213, - "gasCost": 8, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x50", - "0x24", - "0x4", - "0x0", - "0x0", - "0x297", - "0x24", - "0x4", - "0x1819a279ef6", - "0x271" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 625, - "op": "JUMPDEST", - "gas": 3000205, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x50", - "0x24", - "0x4", - "0x0", - "0x0", - "0x297", - "0x24", - "0x4", - "0x1819a279ef6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 626, - "op": "SWAP3", - "gas": 3000204, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x50", - "0x24", - "0x4", - "0x0", - "0x0", - "0x297", - "0x24", - "0x4", - "0x1819a279ef6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 627, - "op": "SWAP2", - "gas": 3000201, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x50", - "0x24", - "0x4", - "0x0", - "0x0", - "0x1819a279ef6", - "0x24", - "0x4", - "0x297" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 628, - "op": "POP", - "gas": 3000198, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x50", - "0x24", - "0x4", - "0x0", - "0x0", - "0x1819a279ef6", - "0x297", - "0x4", - "0x24" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 629, - "op": "POP", - "gas": 3000196, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x50", - "0x24", - "0x4", - "0x0", - "0x0", - "0x1819a279ef6", - "0x297", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 630, - "op": "JUMP", - "gas": 3000194, - "gasCost": 8, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x50", - "0x24", - "0x4", - "0x0", - "0x0", - "0x1819a279ef6", - "0x297" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 663, - "op": "JUMPDEST", - "gas": 3000186, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x50", - "0x24", - "0x4", - "0x0", - "0x0", - "0x1819a279ef6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 664, - "op": "SWAP2", - "gas": 3000185, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x50", - "0x24", - "0x4", - "0x0", - "0x0", - "0x1819a279ef6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 665, - "op": "POP", - "gas": 3000182, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x50", - "0x24", - "0x4", - "0x1819a279ef6", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 666, - "op": "POP", - "gas": 3000180, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x50", - "0x24", - "0x4", - "0x1819a279ef6", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 667, - "op": "SWAP3", - "gas": 3000178, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x50", - "0x24", - "0x4", - "0x1819a279ef6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 668, - "op": "SWAP2", - "gas": 3000175, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a279ef6", - "0x24", - "0x4", - "0x50" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 669, - "op": "POP", - "gas": 3000172, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a279ef6", - "0x50", - "0x4", - "0x24" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 670, - "op": "POP", - "gas": 3000170, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a279ef6", - "0x50", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 671, - "op": "JUMP", - "gas": 3000168, - "gasCost": 8, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a279ef6", - "0x50" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 80, - "op": "JUMPDEST", - "gas": 3000160, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a279ef6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 81, - "op": "PUSH2", - "gas": 3000159, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a279ef6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 84, - "op": "JUMP", - "gas": 3000156, - "gasCost": 8, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a279ef6", - "0x73" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 115, - "op": "JUMPDEST", - "gas": 3000148, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a279ef6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 116, - "op": "PUSH1", - "gas": 3000147, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a279ef6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 118, - "op": "DUP1", - "gas": 3000144, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a279ef6", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 119, - "op": "PUSH1", - "gas": 3000141, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a279ef6", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 121, - "op": "SWAP1", - "gas": 3000138, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a279ef6", - "0x0", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 122, - "op": "SLOAD", - "gas": 3000135, - "gasCost": 2100, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a279ef6", - "0x0", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0x0000000000000000000000000000000000000000000000000000000000000000": "0x00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327" - }, - "extraData": { - "proofList": [ - { - "address": "0xb36feaeaf76c2a33335b73bef9aef7a23d9af1e3", - "nonce": 1, - "balance": "0x0", - "codeHash": "0xcf73ee5d93a98045cd55efe938790c20effb831ac0646f6875213fb4aca66319", - "storage": { - "key": "0x0000000000000000000000000000000000000000000000000000000000000000", - "value": "0x00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327" - } - } - ] - } - }, - { - "pc": 123, - "op": "SWAP1", - "gas": 2998035, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a279ef6", - "0x0", - "0x0", - "0x5fdbdfae180345c6cff5316c286727cf1a43327" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 124, - "op": "PUSH2", - "gas": 2998032, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a279ef6", - "0x0", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 127, - "op": "EXP", - "gas": 2998029, - "gasCost": 10, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a279ef6", - "0x0", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x0", - "0x100" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 128, - "op": "SWAP1", - "gas": 2998019, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a279ef6", - "0x0", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 129, - "op": "DIV", - "gas": 2998016, - "gasCost": 5, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a279ef6", - "0x0", - "0x1", - "0x5fdbdfae180345c6cff5316c286727cf1a43327" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 130, - "op": "PUSH20", - "gas": 2998011, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a279ef6", - "0x0", - "0x5fdbdfae180345c6cff5316c286727cf1a43327" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 151, - "op": "AND", - "gas": 2998008, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a279ef6", - "0x0", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0xffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 152, - "op": "SWAP1", - "gas": 2998005, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a279ef6", - "0x0", - "0x5fdbdfae180345c6cff5316c286727cf1a43327" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 153, - "op": "POP", - "gas": 2998002, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a279ef6", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 154, - "op": "DUP1", - "gas": 2998000, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a279ef6", - "0x5fdbdfae180345c6cff5316c286727cf1a43327" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 155, - "op": "PUSH20", - "gas": 2997997, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a279ef6", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 176, - "op": "AND", - "gas": 2997994, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a279ef6", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0xffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 177, - "op": "PUSH4", - "gas": 2997991, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a279ef6", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 182, - "op": "DUP4", - "gas": 2997988, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a279ef6", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 183, - "op": "PUSH1", - "gas": 2997985, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a279ef6", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0x1819a279ef6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 185, - "op": "MLOAD", - "gas": 2997982, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a279ef6", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0x1819a279ef6", - "0x40" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 186, - "op": "DUP3", - "gas": 2997979, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a279ef6", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0x1819a279ef6", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 187, - "op": "PUSH4", - "gas": 2997976, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a279ef6", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0x1819a279ef6", - "0x80", - "0x21848c46" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 192, - "op": "AND", - "gas": 2997973, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a279ef6", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0x1819a279ef6", - "0x80", - "0x21848c46", - "0xffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 193, - "op": "PUSH1", - "gas": 2997970, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a279ef6", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0x1819a279ef6", - "0x80", - "0x21848c46" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 195, - "op": "SHL", - "gas": 2997967, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a279ef6", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0x1819a279ef6", - "0x80", - "0x21848c46", - "0xe0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 196, - "op": "DUP2", - "gas": 2997964, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a279ef6", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0x1819a279ef6", - "0x80", - "0x21848c4600000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 197, - "op": "MSTORE", - "gas": 2997961, - "gasCost": 9, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a279ef6", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0x1819a279ef6", - "0x80", - "0x21848c4600000000000000000000000000000000000000000000000000000000", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 198, - "op": "PUSH1", - "gas": 2997952, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a279ef6", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0x1819a279ef6", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 200, - "op": "ADD", - "gas": 2997949, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a279ef6", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0x1819a279ef6", - "0x80", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 201, - "op": "PUSH2", - "gas": 2997946, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a279ef6", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0x1819a279ef6", - "0x84" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 204, - "op": "SWAP2", - "gas": 2997943, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a279ef6", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0x1819a279ef6", - "0x84", - "0xd2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 205, - "op": "SWAP1", - "gas": 2997940, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a279ef6", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0xd2", - "0x84", - "0x1819a279ef6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 206, - "op": "PUSH2", - "gas": 2997937, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a279ef6", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0xd2", - "0x1819a279ef6", - "0x84" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 209, - "op": "JUMP", - "gas": 2997934, - "gasCost": 8, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a279ef6", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0xd2", - "0x1819a279ef6", - "0x84", - "0x30a" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 778, - "op": "JUMPDEST", - "gas": 2997926, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a279ef6", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0xd2", - "0x1819a279ef6", - "0x84" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 779, - "op": "PUSH1", - "gas": 2997925, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a279ef6", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0xd2", - "0x1819a279ef6", - "0x84" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 781, - "op": "PUSH1", - "gas": 2997922, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a279ef6", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0xd2", - "0x1819a279ef6", - "0x84", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 783, - "op": "DUP3", - "gas": 2997919, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a279ef6", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0xd2", - "0x1819a279ef6", - "0x84", - "0x0", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 784, - "op": "ADD", - "gas": 2997916, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a279ef6", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0xd2", - "0x1819a279ef6", - "0x84", - "0x0", - "0x20", - "0x84" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 785, - "op": "SWAP1", - "gas": 2997913, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a279ef6", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0xd2", - "0x1819a279ef6", - "0x84", - "0x0", - "0xa4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 786, - "op": "POP", - "gas": 2997910, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a279ef6", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0xd2", - "0x1819a279ef6", - "0x84", - "0xa4", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 787, - "op": "PUSH2", - "gas": 2997908, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a279ef6", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0xd2", - "0x1819a279ef6", - "0x84", - "0xa4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 790, - "op": "PUSH1", - "gas": 2997905, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a279ef6", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0xd2", - "0x1819a279ef6", - "0x84", - "0xa4", - "0x31f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 792, - "op": "DUP4", - "gas": 2997902, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a279ef6", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0xd2", - "0x1819a279ef6", - "0x84", - "0xa4", - "0x31f", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 793, - "op": "ADD", - "gas": 2997899, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a279ef6", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0xd2", - "0x1819a279ef6", - "0x84", - "0xa4", - "0x31f", - "0x0", - "0x84" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 794, - "op": "DUP5", - "gas": 2997896, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a279ef6", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0xd2", - "0x1819a279ef6", - "0x84", - "0xa4", - "0x31f", - "0x84" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 795, - "op": "PUSH2", - "gas": 2997893, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a279ef6", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0xd2", - "0x1819a279ef6", - "0x84", - "0xa4", - "0x31f", - "0x84", - "0x1819a279ef6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 798, - "op": "JUMP", - "gas": 2997890, - "gasCost": 8, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a279ef6", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0xd2", - "0x1819a279ef6", - "0x84", - "0xa4", - "0x31f", - "0x84", - "0x1819a279ef6", - "0x2d9" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 729, - "op": "JUMPDEST", - "gas": 2997882, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a279ef6", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0xd2", - "0x1819a279ef6", - "0x84", - "0xa4", - "0x31f", - "0x84", - "0x1819a279ef6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 730, - "op": "PUSH2", - "gas": 2997881, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a279ef6", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0xd2", - "0x1819a279ef6", - "0x84", - "0xa4", - "0x31f", - "0x84", - "0x1819a279ef6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 733, - "op": "DUP2", - "gas": 2997878, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a279ef6", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0xd2", - "0x1819a279ef6", - "0x84", - "0xa4", - "0x31f", - "0x84", - "0x1819a279ef6", - "0x2e2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 734, - "op": "PUSH2", - "gas": 2997875, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a279ef6", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0xd2", - "0x1819a279ef6", - "0x84", - "0xa4", - "0x31f", - "0x84", - "0x1819a279ef6", - "0x2e2", - "0x1819a279ef6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 737, - "op": "JUMP", - "gas": 2997872, - "gasCost": 8, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a279ef6", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0xd2", - "0x1819a279ef6", - "0x84", - "0xa4", - "0x31f", - "0x84", - "0x1819a279ef6", - "0x2e2", - "0x1819a279ef6", - "0x341" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 833, - "op": "JUMPDEST", - "gas": 2997864, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a279ef6", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0xd2", - "0x1819a279ef6", - "0x84", - "0xa4", - "0x31f", - "0x84", - "0x1819a279ef6", - "0x2e2", - "0x1819a279ef6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 834, - "op": "PUSH1", - "gas": 2997863, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a279ef6", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0xd2", - "0x1819a279ef6", - "0x84", - "0xa4", - "0x31f", - "0x84", - "0x1819a279ef6", - "0x2e2", - "0x1819a279ef6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 836, - "op": "DUP2", - "gas": 2997860, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a279ef6", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0xd2", - "0x1819a279ef6", - "0x84", - "0xa4", - "0x31f", - "0x84", - "0x1819a279ef6", - "0x2e2", - "0x1819a279ef6", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 837, - "op": "SWAP1", - "gas": 2997857, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a279ef6", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0xd2", - "0x1819a279ef6", - "0x84", - "0xa4", - "0x31f", - "0x84", - "0x1819a279ef6", - "0x2e2", - "0x1819a279ef6", - "0x0", - "0x1819a279ef6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 838, - "op": "POP", - "gas": 2997854, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a279ef6", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0xd2", - "0x1819a279ef6", - "0x84", - "0xa4", - "0x31f", - "0x84", - "0x1819a279ef6", - "0x2e2", - "0x1819a279ef6", - "0x1819a279ef6", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 839, - "op": "SWAP2", - "gas": 2997852, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a279ef6", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0xd2", - "0x1819a279ef6", - "0x84", - "0xa4", - "0x31f", - "0x84", - "0x1819a279ef6", - "0x2e2", - "0x1819a279ef6", - "0x1819a279ef6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 840, - "op": "SWAP1", - "gas": 2997849, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a279ef6", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0xd2", - "0x1819a279ef6", - "0x84", - "0xa4", - "0x31f", - "0x84", - "0x1819a279ef6", - "0x1819a279ef6", - "0x1819a279ef6", - "0x2e2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 841, - "op": "POP", - "gas": 2997846, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a279ef6", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0xd2", - "0x1819a279ef6", - "0x84", - "0xa4", - "0x31f", - "0x84", - "0x1819a279ef6", - "0x1819a279ef6", - "0x2e2", - "0x1819a279ef6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 842, - "op": "JUMP", - "gas": 2997844, - "gasCost": 8, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a279ef6", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0xd2", - "0x1819a279ef6", - "0x84", - "0xa4", - "0x31f", - "0x84", - "0x1819a279ef6", - "0x1819a279ef6", - "0x2e2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 738, - "op": "JUMPDEST", - "gas": 2997836, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a279ef6", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0xd2", - "0x1819a279ef6", - "0x84", - "0xa4", - "0x31f", - "0x84", - "0x1819a279ef6", - "0x1819a279ef6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 739, - "op": "DUP3", - "gas": 2997835, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a279ef6", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0xd2", - "0x1819a279ef6", - "0x84", - "0xa4", - "0x31f", - "0x84", - "0x1819a279ef6", - "0x1819a279ef6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 740, - "op": "MSTORE", - "gas": 2997832, - "gasCost": 6, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a279ef6", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0xd2", - "0x1819a279ef6", - "0x84", - "0xa4", - "0x31f", - "0x84", - "0x1819a279ef6", - "0x1819a279ef6", - "0x84" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 741, - "op": "POP", - "gas": 2997826, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a279ef6", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0xd2", - "0x1819a279ef6", - "0x84", - "0xa4", - "0x31f", - "0x84", - "0x1819a279ef6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000181", - "9a279ef600000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 742, - "op": "POP", - "gas": 2997824, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a279ef6", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0xd2", - "0x1819a279ef6", - "0x84", - "0xa4", - "0x31f", - "0x84" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000181", - "9a279ef600000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 743, - "op": "JUMP", - "gas": 2997822, - "gasCost": 8, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a279ef6", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0xd2", - "0x1819a279ef6", - "0x84", - "0xa4", - "0x31f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000181", - "9a279ef600000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 799, - "op": "JUMPDEST", - "gas": 2997814, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a279ef6", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0xd2", - "0x1819a279ef6", - "0x84", - "0xa4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000181", - "9a279ef600000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 800, - "op": "SWAP3", - "gas": 2997813, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a279ef6", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0xd2", - "0x1819a279ef6", - "0x84", - "0xa4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000181", - "9a279ef600000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 801, - "op": "SWAP2", - "gas": 2997810, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a279ef6", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0xa4", - "0x1819a279ef6", - "0x84", - "0xd2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000181", - "9a279ef600000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 802, - "op": "POP", - "gas": 2997807, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a279ef6", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0xa4", - "0xd2", - "0x84", - "0x1819a279ef6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000181", - "9a279ef600000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 803, - "op": "POP", - "gas": 2997805, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a279ef6", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0xa4", - "0xd2", - "0x84" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000181", - "9a279ef600000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 804, - "op": "JUMP", - "gas": 2997803, - "gasCost": 8, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a279ef6", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0xa4", - "0xd2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000181", - "9a279ef600000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 210, - "op": "JUMPDEST", - "gas": 2997795, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a279ef6", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0xa4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000181", - "9a279ef600000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 211, - "op": "PUSH1", - "gas": 2997794, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a279ef6", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0xa4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000181", - "9a279ef600000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 213, - "op": "PUSH1", - "gas": 2997791, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a279ef6", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0xa4", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000181", - "9a279ef600000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 215, - "op": "MLOAD", - "gas": 2997788, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a279ef6", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0xa4", - "0x0", - "0x40" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000181", - "9a279ef600000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 216, - "op": "DUP1", - "gas": 2997785, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a279ef6", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0xa4", - "0x0", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000181", - "9a279ef600000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 217, - "op": "DUP4", - "gas": 2997782, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a279ef6", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0xa4", - "0x0", - "0x80", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000181", - "9a279ef600000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 218, - "op": "SUB", - "gas": 2997779, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a279ef6", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0xa4", - "0x0", - "0x80", - "0x80", - "0xa4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000181", - "9a279ef600000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 219, - "op": "DUP2", - "gas": 2997776, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a279ef6", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0xa4", - "0x0", - "0x80", - "0x24" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000181", - "9a279ef600000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 220, - "op": "PUSH1", - "gas": 2997773, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a279ef6", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0xa4", - "0x0", - "0x80", - "0x24", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000181", - "9a279ef600000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 222, - "op": "DUP8", - "gas": 2997770, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a279ef6", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0xa4", - "0x0", - "0x80", - "0x24", - "0x80", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000181", - "9a279ef600000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 223, - "op": "DUP1", - "gas": 2997767, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a279ef6", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0xa4", - "0x0", - "0x80", - "0x24", - "0x80", - "0x0", - "0x5fdbdfae180345c6cff5316c286727cf1a43327" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000181", - "9a279ef600000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 224, - "op": "EXTCODESIZE", - "gas": 2997764, - "gasCost": 2600, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a279ef6", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0xa4", - "0x0", - "0x80", - "0x24", - "0x80", - "0x0", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000181", - "9a279ef600000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 225, - "op": "ISZERO", - "gas": 2995164, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a279ef6", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0xa4", - "0x0", - "0x80", - "0x24", - "0x80", - "0x0", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x1c0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000181", - "9a279ef600000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 226, - "op": "DUP1", - "gas": 2995161, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a279ef6", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0xa4", - "0x0", - "0x80", - "0x24", - "0x80", - "0x0", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000181", - "9a279ef600000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 227, - "op": "ISZERO", - "gas": 2995158, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a279ef6", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0xa4", - "0x0", - "0x80", - "0x24", - "0x80", - "0x0", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000181", - "9a279ef600000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 228, - "op": "PUSH2", - "gas": 2995155, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a279ef6", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0xa4", - "0x0", - "0x80", - "0x24", - "0x80", - "0x0", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x0", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000181", - "9a279ef600000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 231, - "op": "JUMPI", - "gas": 2995152, - "gasCost": 10, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a279ef6", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0xa4", - "0x0", - "0x80", - "0x24", - "0x80", - "0x0", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x0", - "0x1", - "0xec" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000181", - "9a279ef600000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 236, - "op": "JUMPDEST", - "gas": 2995142, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a279ef6", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0xa4", - "0x0", - "0x80", - "0x24", - "0x80", - "0x0", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000181", - "9a279ef600000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 237, - "op": "POP", - "gas": 2995141, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a279ef6", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0xa4", - "0x0", - "0x80", - "0x24", - "0x80", - "0x0", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000181", - "9a279ef600000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 238, - "op": "GAS", - "gas": 2995139, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a279ef6", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0xa4", - "0x0", - "0x80", - "0x24", - "0x80", - "0x0", - "0x5fdbdfae180345c6cff5316c286727cf1a43327" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000181", - "9a279ef600000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 239, - "op": "CALL", - "gas": 2995137, - "gasCost": 2948340, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a279ef6", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0xa4", - "0x0", - "0x80", - "0x24", - "0x80", - "0x0", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x2db3c1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000181", - "9a279ef600000000000000000000000000000000000000000000000000000000" - ], - "extraData": { - "callFailed": true, - "codeList": [ - "0x608060405234801561001057600080fd5b50600436106100365760003560e01c806321848c461461003b578063b0f2b72a14610057575b600080fd5b61005560048036038101906100509190610277565b610073565b005b610071600480360381019061006c9190610277565b61010b565b005b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff166321848c46836040518263ffffffff1660e01b81526004016100d2919061030a565b600060405180830381600087803b1580156100ec57600080fd5b505af19250505080156100fd575060015b61010657610107565b5b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663b0f2b72a836040518263ffffffff1660e01b815260040161016a919061030a565b600060405180830381600087803b15801561018457600080fd5b505af1158015610198573d6000803e3d6000fd5b505050505050565b610236816040516024016101b491906102e8565b6040516020818303038152906040527f41304fac000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050610239565b50565b60008151905060006a636f6e736f6c652e6c6f679050602083016000808483855afa5050505050565b6000813590506102718161038f565b92915050565b60006020828403121561028957600080fd5b600061029784828501610262565b91505092915050565b60006102ab82610325565b6102b58185610330565b93506102c581856020860161034b565b6102ce8161037e565b840191505092915050565b6102e281610341565b82525050565b6000602082019050818103600083015261030281846102a0565b905092915050565b600060208201905061031f60008301846102d9565b92915050565b600081519050919050565b600082825260208201905092915050565b6000819050919050565b60005b8381101561036957808201518184015260208101905061034e565b83811115610378576000848401525b50505050565b6000601f19601f8301169050919050565b61039881610341565b81146103a357600080fd5b5056fea264697066735822122079a958a4c7a90094ec761b33fbd301163f4e1e62f3ccae8afe9f42a770e054f264736f6c63430008040033", - "0x608060405234801561001057600080fd5b506004361061004c5760003560e01c806321848c46146100515780632e64cec11461006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61006b60048036038101906100669190610116565b6100c5565b005b6100756100da565b604051610082919061014e565b60405180910390f35b6100a560048036038101906100a09190610116565b6100e3565b005b6100af6100ed565b6040516100bc919061014e565b60405180910390f35b8060008190555060006100d757600080fd5b50565b60008054905090565b8060008190555050565b6000806100f957600080fd5b600054905090565b60008135905061011081610173565b92915050565b60006020828403121561012857600080fd5b600061013684828501610101565b91505092915050565b61014881610169565b82525050565b6000602082019050610163600083018461013f565b92915050565b6000819050919050565b61017c81610169565b811461018757600080fd5b5056fea26469706673582212204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923f32e64736f6c63430008040033" - ], - "proofList": [ - { - "address": "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "nonce": 10, - "balance": "0x56bc75e2d630fffffffffffffffffffffffffffffffffffff62b2cf13d0caa", - "codeHash": "0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470" - }, - { - "address": "0x05fdbdfae180345c6cff5316c286727cf1a43327", - "nonce": 1, - "balance": "0x0", - "codeHash": "0x09d2fd3a7cb9d5547a21c851248d703921e6348bfbdf4c0130695a3263f916ef" - }, - { - "address": "0x05fdbdfae180345c6cff5316c286727cf1a43327", - "nonce": 1, - "balance": "0x0", - "codeHash": "0x09d2fd3a7cb9d5547a21c851248d703921e6348bfbdf4c0130695a3263f916ef" - } - ] - } - }, - { - "pc": 0, - "op": "PUSH1", - "gas": 2948240, - "gasCost": 3, - "depth": 2 - }, - { - "pc": 2, - "op": "PUSH1", - "gas": 2948237, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x80" - ] - }, - { - "pc": 4, - "op": "MSTORE", - "gas": 2948234, - "gasCost": 12, - "depth": 2, - "stack": [ - "0x80", - "0x40" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 5, - "op": "CALLVALUE", - "gas": 2948222, - "gasCost": 2, - "depth": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 6, - "op": "DUP1", - "gas": 2948220, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 7, - "op": "ISZERO", - "gas": 2948217, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 8, - "op": "PUSH2", - "gas": 2948214, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x0", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 11, - "op": "JUMPI", - "gas": 2948211, - "gasCost": 10, - "depth": 2, - "stack": [ - "0x0", - "0x1", - "0x10" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 16, - "op": "JUMPDEST", - "gas": 2948201, - "gasCost": 1, - "depth": 2, - "stack": [ - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 17, - "op": "POP", - "gas": 2948200, - "gasCost": 2, - "depth": 2, - "stack": [ - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 18, - "op": "PUSH1", - "gas": 2948198, - "gasCost": 3, - "depth": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 20, - "op": "CALLDATASIZE", - "gas": 2948195, - "gasCost": 2, - "depth": 2, - "stack": [ - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 21, - "op": "LT", - "gas": 2948193, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x4", - "0x24" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 22, - "op": "PUSH2", - "gas": 2948190, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 25, - "op": "JUMPI", - "gas": 2948187, - "gasCost": 10, - "depth": 2, - "stack": [ - "0x0", - "0x4c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 26, - "op": "PUSH1", - "gas": 2948177, - "gasCost": 3, - "depth": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 28, - "op": "CALLDATALOAD", - "gas": 2948174, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 29, - "op": "PUSH1", - "gas": 2948171, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x21848c4600000000000000000000000000000000000000000000000000000181" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 31, - "op": "SHR", - "gas": 2948168, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x21848c4600000000000000000000000000000000000000000000000000000181", - "0xe0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 32, - "op": "DUP1", - "gas": 2948165, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x21848c46" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 33, - "op": "PUSH4", - "gas": 2948162, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x21848c46", - "0x21848c46" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 38, - "op": "EQ", - "gas": 2948159, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x21848c46", - "0x21848c46", - "0x21848c46" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 39, - "op": "PUSH2", - "gas": 2948156, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x21848c46", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 42, - "op": "JUMPI", - "gas": 2948153, - "gasCost": 10, - "depth": 2, - "stack": [ - "0x21848c46", - "0x1", - "0x51" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 81, - "op": "JUMPDEST", - "gas": 2948143, - "gasCost": 1, - "depth": 2, - "stack": [ - "0x21848c46" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 82, - "op": "PUSH2", - "gas": 2948142, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x21848c46" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 85, - "op": "PUSH1", - "gas": 2948139, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 87, - "op": "DUP1", - "gas": 2948136, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 88, - "op": "CALLDATASIZE", - "gas": 2948133, - "gasCost": 2, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x4", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 89, - "op": "SUB", - "gas": 2948131, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x4", - "0x4", - "0x24" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 90, - "op": "DUP2", - "gas": 2948128, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x4", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 91, - "op": "ADD", - "gas": 2948125, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x4", - "0x20", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 92, - "op": "SWAP1", - "gas": 2948122, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x4", - "0x24" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 93, - "op": "PUSH2", - "gas": 2948119, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x24", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 96, - "op": "SWAP2", - "gas": 2948116, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x24", - "0x4", - "0x66" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 97, - "op": "SWAP1", - "gas": 2948113, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x66", - "0x4", - "0x24" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 98, - "op": "PUSH2", - "gas": 2948110, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x66", - "0x24", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 101, - "op": "JUMP", - "gas": 2948107, - "gasCost": 8, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x66", - "0x24", - "0x4", - "0x116" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 278, - "op": "JUMPDEST", - "gas": 2948099, - "gasCost": 1, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x66", - "0x24", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 279, - "op": "PUSH1", - "gas": 2948098, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x66", - "0x24", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 281, - "op": "PUSH1", - "gas": 2948095, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x66", - "0x24", - "0x4", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 283, - "op": "DUP3", - "gas": 2948092, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x66", - "0x24", - "0x4", - "0x0", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 284, - "op": "DUP5", - "gas": 2948089, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x66", - "0x24", - "0x4", - "0x0", - "0x20", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 285, - "op": "SUB", - "gas": 2948086, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x66", - "0x24", - "0x4", - "0x0", - "0x20", - "0x4", - "0x24" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 286, - "op": "SLT", - "gas": 2948083, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x66", - "0x24", - "0x4", - "0x0", - "0x20", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 287, - "op": "ISZERO", - "gas": 2948080, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x66", - "0x24", - "0x4", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 288, - "op": "PUSH2", - "gas": 2948077, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x66", - "0x24", - "0x4", - "0x0", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 291, - "op": "JUMPI", - "gas": 2948074, - "gasCost": 10, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x66", - "0x24", - "0x4", - "0x0", - "0x1", - "0x128" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 296, - "op": "JUMPDEST", - "gas": 2948064, - "gasCost": 1, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x66", - "0x24", - "0x4", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 297, - "op": "PUSH1", - "gas": 2948063, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x66", - "0x24", - "0x4", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 299, - "op": "PUSH2", - "gas": 2948060, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x66", - "0x24", - "0x4", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 302, - "op": "DUP5", - "gas": 2948057, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x66", - "0x24", - "0x4", - "0x0", - "0x0", - "0x136" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 303, - "op": "DUP3", - "gas": 2948054, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x66", - "0x24", - "0x4", - "0x0", - "0x0", - "0x136", - "0x24" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 304, - "op": "DUP6", - "gas": 2948051, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x66", - "0x24", - "0x4", - "0x0", - "0x0", - "0x136", - "0x24", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 305, - "op": "ADD", - "gas": 2948048, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x66", - "0x24", - "0x4", - "0x0", - "0x0", - "0x136", - "0x24", - "0x0", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 306, - "op": "PUSH2", - "gas": 2948045, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x66", - "0x24", - "0x4", - "0x0", - "0x0", - "0x136", - "0x24", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 309, - "op": "JUMP", - "gas": 2948042, - "gasCost": 8, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x66", - "0x24", - "0x4", - "0x0", - "0x0", - "0x136", - "0x24", - "0x4", - "0x101" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 257, - "op": "JUMPDEST", - "gas": 2948034, - "gasCost": 1, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x66", - "0x24", - "0x4", - "0x0", - "0x0", - "0x136", - "0x24", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 258, - "op": "PUSH1", - "gas": 2948033, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x66", - "0x24", - "0x4", - "0x0", - "0x0", - "0x136", - "0x24", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 260, - "op": "DUP2", - "gas": 2948030, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x66", - "0x24", - "0x4", - "0x0", - "0x0", - "0x136", - "0x24", - "0x4", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 261, - "op": "CALLDATALOAD", - "gas": 2948027, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x66", - "0x24", - "0x4", - "0x0", - "0x0", - "0x136", - "0x24", - "0x4", - "0x0", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 262, - "op": "SWAP1", - "gas": 2948024, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x66", - "0x24", - "0x4", - "0x0", - "0x0", - "0x136", - "0x24", - "0x4", - "0x0", - "0x1819a279ef6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 263, - "op": "POP", - "gas": 2948021, - "gasCost": 2, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x66", - "0x24", - "0x4", - "0x0", - "0x0", - "0x136", - "0x24", - "0x4", - "0x1819a279ef6", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 264, - "op": "PUSH2", - "gas": 2948019, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x66", - "0x24", - "0x4", - "0x0", - "0x0", - "0x136", - "0x24", - "0x4", - "0x1819a279ef6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 267, - "op": "DUP2", - "gas": 2948016, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x66", - "0x24", - "0x4", - "0x0", - "0x0", - "0x136", - "0x24", - "0x4", - "0x1819a279ef6", - "0x110" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 268, - "op": "PUSH2", - "gas": 2948013, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x66", - "0x24", - "0x4", - "0x0", - "0x0", - "0x136", - "0x24", - "0x4", - "0x1819a279ef6", - "0x110", - "0x1819a279ef6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 271, - "op": "JUMP", - "gas": 2948010, - "gasCost": 8, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x66", - "0x24", - "0x4", - "0x0", - "0x0", - "0x136", - "0x24", - "0x4", - "0x1819a279ef6", - "0x110", - "0x1819a279ef6", - "0x173" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 371, - "op": "JUMPDEST", - "gas": 2948002, - "gasCost": 1, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x66", - "0x24", - "0x4", - "0x0", - "0x0", - "0x136", - "0x24", - "0x4", - "0x1819a279ef6", - "0x110", - "0x1819a279ef6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 372, - "op": "PUSH2", - "gas": 2948001, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x66", - "0x24", - "0x4", - "0x0", - "0x0", - "0x136", - "0x24", - "0x4", - "0x1819a279ef6", - "0x110", - "0x1819a279ef6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 375, - "op": "DUP2", - "gas": 2947998, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x66", - "0x24", - "0x4", - "0x0", - "0x0", - "0x136", - "0x24", - "0x4", - "0x1819a279ef6", - "0x110", - "0x1819a279ef6", - "0x17c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 376, - "op": "PUSH2", - "gas": 2947995, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x66", - "0x24", - "0x4", - "0x0", - "0x0", - "0x136", - "0x24", - "0x4", - "0x1819a279ef6", - "0x110", - "0x1819a279ef6", - "0x17c", - "0x1819a279ef6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 379, - "op": "JUMP", - "gas": 2947992, - "gasCost": 8, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x66", - "0x24", - "0x4", - "0x0", - "0x0", - "0x136", - "0x24", - "0x4", - "0x1819a279ef6", - "0x110", - "0x1819a279ef6", - "0x17c", - "0x1819a279ef6", - "0x169" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 361, - "op": "JUMPDEST", - "gas": 2947984, - "gasCost": 1, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x66", - "0x24", - "0x4", - "0x0", - "0x0", - "0x136", - "0x24", - "0x4", - "0x1819a279ef6", - "0x110", - "0x1819a279ef6", - "0x17c", - "0x1819a279ef6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 362, - "op": "PUSH1", - "gas": 2947983, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x66", - "0x24", - "0x4", - "0x0", - "0x0", - "0x136", - "0x24", - "0x4", - "0x1819a279ef6", - "0x110", - "0x1819a279ef6", - "0x17c", - "0x1819a279ef6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 364, - "op": "DUP2", - "gas": 2947980, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x66", - "0x24", - "0x4", - "0x0", - "0x0", - "0x136", - "0x24", - "0x4", - "0x1819a279ef6", - "0x110", - "0x1819a279ef6", - "0x17c", - "0x1819a279ef6", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 365, - "op": "SWAP1", - "gas": 2947977, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x66", - "0x24", - "0x4", - "0x0", - "0x0", - "0x136", - "0x24", - "0x4", - "0x1819a279ef6", - "0x110", - "0x1819a279ef6", - "0x17c", - "0x1819a279ef6", - "0x0", - "0x1819a279ef6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 366, - "op": "POP", - "gas": 2947974, - "gasCost": 2, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x66", - "0x24", - "0x4", - "0x0", - "0x0", - "0x136", - "0x24", - "0x4", - "0x1819a279ef6", - "0x110", - "0x1819a279ef6", - "0x17c", - "0x1819a279ef6", - "0x1819a279ef6", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 367, - "op": "SWAP2", - "gas": 2947972, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x66", - "0x24", - "0x4", - "0x0", - "0x0", - "0x136", - "0x24", - "0x4", - "0x1819a279ef6", - "0x110", - "0x1819a279ef6", - "0x17c", - "0x1819a279ef6", - "0x1819a279ef6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 368, - "op": "SWAP1", - "gas": 2947969, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x66", - "0x24", - "0x4", - "0x0", - "0x0", - "0x136", - "0x24", - "0x4", - "0x1819a279ef6", - "0x110", - "0x1819a279ef6", - "0x1819a279ef6", - "0x1819a279ef6", - "0x17c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 369, - "op": "POP", - "gas": 2947966, - "gasCost": 2, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x66", - "0x24", - "0x4", - "0x0", - "0x0", - "0x136", - "0x24", - "0x4", - "0x1819a279ef6", - "0x110", - "0x1819a279ef6", - "0x1819a279ef6", - "0x17c", - "0x1819a279ef6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 370, - "op": "JUMP", - "gas": 2947964, - "gasCost": 8, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x66", - "0x24", - "0x4", - "0x0", - "0x0", - "0x136", - "0x24", - "0x4", - "0x1819a279ef6", - "0x110", - "0x1819a279ef6", - "0x1819a279ef6", - "0x17c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 380, - "op": "JUMPDEST", - "gas": 2947956, - "gasCost": 1, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x66", - "0x24", - "0x4", - "0x0", - "0x0", - "0x136", - "0x24", - "0x4", - "0x1819a279ef6", - "0x110", - "0x1819a279ef6", - "0x1819a279ef6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 381, - "op": "DUP2", - "gas": 2947955, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x66", - "0x24", - "0x4", - "0x0", - "0x0", - "0x136", - "0x24", - "0x4", - "0x1819a279ef6", - "0x110", - "0x1819a279ef6", - "0x1819a279ef6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 382, - "op": "EQ", - "gas": 2947952, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x66", - "0x24", - "0x4", - "0x0", - "0x0", - "0x136", - "0x24", - "0x4", - "0x1819a279ef6", - "0x110", - "0x1819a279ef6", - "0x1819a279ef6", - "0x1819a279ef6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 383, - "op": "PUSH2", - "gas": 2947949, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x66", - "0x24", - "0x4", - "0x0", - "0x0", - "0x136", - "0x24", - "0x4", - "0x1819a279ef6", - "0x110", - "0x1819a279ef6", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 386, - "op": "JUMPI", - "gas": 2947946, - "gasCost": 10, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x66", - "0x24", - "0x4", - "0x0", - "0x0", - "0x136", - "0x24", - "0x4", - "0x1819a279ef6", - "0x110", - "0x1819a279ef6", - "0x1", - "0x187" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 391, - "op": "JUMPDEST", - "gas": 2947936, - "gasCost": 1, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x66", - "0x24", - "0x4", - "0x0", - "0x0", - "0x136", - "0x24", - "0x4", - "0x1819a279ef6", - "0x110", - "0x1819a279ef6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 392, - "op": "POP", - "gas": 2947935, - "gasCost": 2, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x66", - "0x24", - "0x4", - "0x0", - "0x0", - "0x136", - "0x24", - "0x4", - "0x1819a279ef6", - "0x110", - "0x1819a279ef6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 393, - "op": "JUMP", - "gas": 2947933, - "gasCost": 8, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x66", - "0x24", - "0x4", - "0x0", - "0x0", - "0x136", - "0x24", - "0x4", - "0x1819a279ef6", - "0x110" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 272, - "op": "JUMPDEST", - "gas": 2947925, - "gasCost": 1, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x66", - "0x24", - "0x4", - "0x0", - "0x0", - "0x136", - "0x24", - "0x4", - "0x1819a279ef6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 273, - "op": "SWAP3", - "gas": 2947924, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x66", - "0x24", - "0x4", - "0x0", - "0x0", - "0x136", - "0x24", - "0x4", - "0x1819a279ef6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 274, - "op": "SWAP2", - "gas": 2947921, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x66", - "0x24", - "0x4", - "0x0", - "0x0", - "0x1819a279ef6", - "0x24", - "0x4", - "0x136" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 275, - "op": "POP", - "gas": 2947918, - "gasCost": 2, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x66", - "0x24", - "0x4", - "0x0", - "0x0", - "0x1819a279ef6", - "0x136", - "0x4", - "0x24" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 276, - "op": "POP", - "gas": 2947916, - "gasCost": 2, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x66", - "0x24", - "0x4", - "0x0", - "0x0", - "0x1819a279ef6", - "0x136", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 277, - "op": "JUMP", - "gas": 2947914, - "gasCost": 8, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x66", - "0x24", - "0x4", - "0x0", - "0x0", - "0x1819a279ef6", - "0x136" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 310, - "op": "JUMPDEST", - "gas": 2947906, - "gasCost": 1, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x66", - "0x24", - "0x4", - "0x0", - "0x0", - "0x1819a279ef6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 311, - "op": "SWAP2", - "gas": 2947905, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x66", - "0x24", - "0x4", - "0x0", - "0x0", - "0x1819a279ef6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 312, - "op": "POP", - "gas": 2947902, - "gasCost": 2, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x66", - "0x24", - "0x4", - "0x1819a279ef6", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 313, - "op": "POP", - "gas": 2947900, - "gasCost": 2, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x66", - "0x24", - "0x4", - "0x1819a279ef6", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 314, - "op": "SWAP3", - "gas": 2947898, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x66", - "0x24", - "0x4", - "0x1819a279ef6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 315, - "op": "SWAP2", - "gas": 2947895, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x1819a279ef6", - "0x24", - "0x4", - "0x66" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 316, - "op": "POP", - "gas": 2947892, - "gasCost": 2, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x1819a279ef6", - "0x66", - "0x4", - "0x24" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 317, - "op": "POP", - "gas": 2947890, - "gasCost": 2, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x1819a279ef6", - "0x66", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 318, - "op": "JUMP", - "gas": 2947888, - "gasCost": 8, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x1819a279ef6", - "0x66" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 102, - "op": "JUMPDEST", - "gas": 2947880, - "gasCost": 1, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x1819a279ef6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 103, - "op": "PUSH2", - "gas": 2947879, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x1819a279ef6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 106, - "op": "JUMP", - "gas": 2947876, - "gasCost": 8, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x1819a279ef6", - "0xc5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 197, - "op": "JUMPDEST", - "gas": 2947868, - "gasCost": 1, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x1819a279ef6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 198, - "op": "DUP1", - "gas": 2947867, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x1819a279ef6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 199, - "op": "PUSH1", - "gas": 2947864, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x1819a279ef6", - "0x1819a279ef6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 201, - "op": "DUP2", - "gas": 2947861, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x1819a279ef6", - "0x1819a279ef6", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 202, - "op": "SWAP1", - "gas": 2947858, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x1819a279ef6", - "0x1819a279ef6", - "0x0", - "0x1819a279ef6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 203, - "op": "SSTORE", - "gas": 2947855, - "gasCost": 5000, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x1819a279ef6", - "0x1819a279ef6", - "0x1819a279ef6", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0x0000000000000000000000000000000000000000000000000000000000000000": "0x000000000000000000000000000000000000000000000000000001819a279ef6" - }, - "extraData": { - "proofList": [ - { - "address": "0x05fdbdfae180345c6cff5316c286727cf1a43327", - "nonce": 1, - "balance": "0x0", - "codeHash": "0x09d2fd3a7cb9d5547a21c851248d703921e6348bfbdf4c0130695a3263f916ef", - "storage": { - "key": "0x0000000000000000000000000000000000000000000000000000000000000000", - "value": "0x000000000000000000000000000000000000000000000000000001819a18d198" - } - } - ] - } - }, - { - "pc": 204, - "op": "POP", - "gas": 2942855, - "gasCost": 2, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x1819a279ef6", - "0x1819a279ef6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 205, - "op": "PUSH1", - "gas": 2942853, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x1819a279ef6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 207, - "op": "PUSH2", - "gas": 2942850, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x1819a279ef6", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 210, - "op": "JUMPI", - "gas": 2942847, - "gasCost": 10, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x1819a279ef6", - "0x0", - "0xd7" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 211, - "op": "PUSH1", - "gas": 2942837, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x1819a279ef6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 213, - "op": "DUP1", - "gas": 2942834, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x1819a279ef6", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 214, - "op": "REVERT", - "gas": 2942831, - "gasCost": 0, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x1819a279ef6", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 240, - "op": "SWAP3", - "gas": 2989628, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a279ef6", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0xa4", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000181", - "9a279ef600000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 241, - "op": "POP", - "gas": 2989625, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a279ef6", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x0", - "0x21848c46", - "0xa4", - "0x5fdbdfae180345c6cff5316c286727cf1a43327" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000181", - "9a279ef600000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 242, - "op": "POP", - "gas": 2989623, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a279ef6", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x0", - "0x21848c46", - "0xa4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000181", - "9a279ef600000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 243, - "op": "POP", - "gas": 2989621, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a279ef6", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x0", - "0x21848c46" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000181", - "9a279ef600000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 244, - "op": "DUP1", - "gas": 2989619, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a279ef6", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000181", - "9a279ef600000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 245, - "op": "ISZERO", - "gas": 2989616, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a279ef6", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000181", - "9a279ef600000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 246, - "op": "PUSH2", - "gas": 2989613, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a279ef6", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x0", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000181", - "9a279ef600000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 249, - "op": "JUMPI", - "gas": 2989610, - "gasCost": 10, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a279ef6", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x0", - "0x1", - "0xfd" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000181", - "9a279ef600000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 253, - "op": "JUMPDEST", - "gas": 2989600, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a279ef6", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000181", - "9a279ef600000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 254, - "op": "PUSH2", - "gas": 2989599, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a279ef6", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000181", - "9a279ef600000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 257, - "op": "JUMPI", - "gas": 2989596, - "gasCost": 10, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a279ef6", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x0", - "0x106" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000181", - "9a279ef600000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 258, - "op": "PUSH2", - "gas": 2989586, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a279ef6", - "0x5fdbdfae180345c6cff5316c286727cf1a43327" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000181", - "9a279ef600000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 261, - "op": "JUMP", - "gas": 2989583, - "gasCost": 8, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a279ef6", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x107" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000181", - "9a279ef600000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 263, - "op": "JUMPDEST", - "gas": 2989575, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a279ef6", - "0x5fdbdfae180345c6cff5316c286727cf1a43327" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000181", - "9a279ef600000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 264, - "op": "POP", - "gas": 2989574, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a279ef6", - "0x5fdbdfae180345c6cff5316c286727cf1a43327" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000181", - "9a279ef600000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 265, - "op": "POP", - "gas": 2989572, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a279ef6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000181", - "9a279ef600000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 266, - "op": "JUMP", - "gas": 2989570, - "gasCost": 8, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000181", - "9a279ef600000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 85, - "op": "JUMPDEST", - "gas": 2989562, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x21848c46" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000181", - "9a279ef600000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 86, - "op": "STOP", - "gas": 2989561, - "gasCost": 0, - "depth": 1, - "stack": [ - "0x21848c46" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000181", - "9a279ef600000000000000000000000000000000000000000000000000000000" - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/trie/zkproof/fail_create_trace.json b/trie/zkproof/fail_create_trace.json deleted file mode 100644 index 487f42b6a8..0000000000 --- a/trie/zkproof/fail_create_trace.json +++ /dev/null @@ -1,8127 +0,0 @@ -{ - "blockTrace": { - "number": "0xa", - "hash": "0xed80bb18abd374e4fe382bb2dc1ac8f6d828a381b885f630d004da2ddedb6d6e", - "gasLimit": 6787893, - "difficulty": "0x2", - "baseFee": "0x115f178a", - "coinbase": { - "address": "0x0000000000000000000000000000000000000000", - "nonce": 0, - "balance": "0x0", - "codeHash": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - "time": 1656148741, - "transactions": [ - { - "type": 2, - "nonce": 10, - "gas": 3021400, - "gasPrice": "0x15fc59ca", - "from": "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "to": "0x33b5ddf9b5e82bb958eb885f5f241e783a113f18", - "chainId": "0xcf55", - "value": "0x0", - "data": "0xce0dbd670000000000000000000000000000000000000000000000000000000000000000", - "isCreate": false, - "v": "0x0", - "r": "0x77a6fdd44f51943b3837155efd3703a4dd8fb19d45bd9a355b937654714cd025", - "s": "0x2fa35cfe263d2fa6d2389bc48e043d3e9dc7d69f032a4dcbccd8e81d417206c3" - } - ] - }, - "storageTrace": { - "rootBefore": "0x1bc888249fb5e6cefec15d4bcc54148a69c53040e20e2d12991848afbafdd412", - "rootAfter": "0x0989b56cc83867479b6b821982bb6b1f7d2d895cb2cd6bee6b9e3f81b3d0f411", - "proofs": { - "0x0000000000000000000000000000000000000000": [ - "0x006f1b1aaa0786b0ffda98b55f7f6e70fefe08769c301f7367dfa71314749f4a0a849517211e98af78df9b3e9b974febf445dfe3e3a5f46be8c5ac34498c11ac2d", - "0x01e232499c4754368052075d13fb84b18537b94a2da166170e7bd94bdc879097090404000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000cc0a77f6e063b4b62eb7d9ed6f427cf687d8d0071d751850cfe5d136bc60d3ab17f322bba5548b6498505e3601fd4418459cabb94a6ac1288274463ca8e70a1700", - "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" - ], - "0x1933a003498bb0419206ec0379243a6720C2e5CE": [ - "0x006f1b1aaa0786b0ffda98b55f7f6e70fefe08769c301f7367dfa71314749f4a0a849517211e98af78df9b3e9b974febf445dfe3e3a5f46be8c5ac34498c11ac2d", - "0x01e232499c4754368052075d13fb84b18537b94a2da166170e7bd94bdc879097090404000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000cc0a77f6e063b4b62eb7d9ed6f427cf687d8d0071d751850cfe5d136bc60d3ab17f322bba5548b6498505e3601fd4418459cabb94a6ac1288274463ca8e70a1700", - "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" - ], - "0x33B5DDf9b5e82Bb958EB885F5F241E783A113f18": [ - "0x006f1b1aaa0786b0ffda98b55f7f6e70fefe08769c301f7367dfa71314749f4a0a849517211e98af78df9b3e9b974febf445dfe3e3a5f46be8c5ac34498c11ac2d", - "0x01e232499c4754368052075d13fb84b18537b94a2da166170e7bd94bdc879097090404000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000cc0a77f6e063b4b62eb7d9ed6f427cf687d8d0071d751850cfe5d136bc60d3ab17f322bba5548b6498505e3601fd4418459cabb94a6ac1288274463ca8e70a1700", - "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" - ], - "0x4cb1aB63aF5D8931Ce09673EbD8ae2ce16fD6571": [ - "0x006f1b1aaa0786b0ffda98b55f7f6e70fefe08769c301f7367dfa71314749f4a0a849517211e98af78df9b3e9b974febf445dfe3e3a5f46be8c5ac34498c11ac2d", - "0x00841e58b43426560fbcd60d84d8abaaef23307b7916474b2c170e0029e16b972b091597898616115b64d21445d74143d5e7c57e902b833cdd2da42d09ed17270e", - "0x002f719a7d94e0142e3e0ccb05942a65398e36ee904d8455b862801431ee19601d369cbc67ff102d269a81b8f96e119eb00d3c3f88def7d74cf63e9db7da798e09", - "0x004611d73dcdcd8fdfde9c8593c190f9239a24ee22c18745f824c7ca459bbad5160000000000000000000000000000000000000000000000000000000000000000", - "0x000000000000000000000000000000000000000000000000000000000000000000cbb91cd7429a3b4bba84771d4a36f130e0b5835b33b650b67e6a5326a5a9030e", - "0x0078c7b59d789c294f21339f0a872b81a418d6b24273fe959dc00126520917970da70f0a33b50d6c7e19c5e0a831d842bb6754b2d4f638f990e4b76890e4129a02", - "0x000000000000000000000000000000000000000000000000000000000000000000679f79c699b73bee27a76e500dc7315960eb6df677cd40a27d62d9462ddb391b", - "0x00831b136503d215092beed8d3b4e24d4671be42557fa232a11db719235ca17f05a72c67edca1db779b38140aaee9baf382c96315f0884909da4a4a7480f3ab82d", - "0x017581e431a68d0fa641e14a7d29a6c2b150db6da1d13f59dee6f7f492a0bebd2904040000000000000000000000000000000000000000000000000000000000000000000a0056bc75e2d630fffffffffffffffffffffffffffffffffffff9b396702b048ec5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470000000000000000000000000000000000000000000000000000000000000000000", - "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" - ] - }, - "storageProofs": { - "0x33B5DDf9b5e82Bb958EB885F5F241E783A113f18": { - "0x0000000000000000000000000000000000000000000000000000000000000000": [ - "0x016448b64684ee39a823d5fe5fd52431dc81e4817bf2c3ea3cab9e239efbf598200101000000000000000000000000000075d0d116b2f8a249a427bc68aac7818684e2531900", - "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" - ] - } - } - }, - "executionResults": [ - { - "gas": 54585, - "failed": false, - "from": { - "address": "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "nonce": 10, - "balance": "0x56bc75e2d630fffffffffffffffffffffffffffffffffffff9b396702b048e", - "codeHash": "0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470" - }, - "to": { - "address": "0x33b5ddf9b5e82bb958eb885f5f241e783a113f18", - "nonce": 2, - "balance": "0x0", - "codeHash": "0xcc0a77f6e063b4b62eb7d9ed6f427cf687d8d0071d751850cfe5d136bc60d3ab" - }, - "accountAfter": [ - { - "address": "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "nonce": 11, - "balance": "0x56bc75e2d630fffffffffffffffffffffffffffffffffffff9a51e7368f4d4", - "codeHash": "0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470" - }, - { - "address": "0x33b5ddf9b5e82bb958eb885f5f241e783a113f18", - "nonce": 3, - "balance": "0x0", - "codeHash": "0xcc0a77f6e063b4b62eb7d9ed6f427cf687d8d0071d751850cfe5d136bc60d3ab" - } - ], - "codeHash": "0xcc0a77f6e063b4b62eb7d9ed6f427cf687d8d0071d751850cfe5d136bc60d3ab", - "byteCode": "0x608060405234801561001057600080fd5b50600436106100415760003560e01c8063314a09a814610046578063c5b0437c14610064578063ce0dbd6714610080575b600080fd5b61004e61009c565b60405161005b919061026f565b60405180910390f35b61007e60048036038101906100799190610228565b6100c5565b005b61009a60048036038101906100959190610228565b610141565b005b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000816040516100d4906101fa565b6100de919061028a565b604051809103906000f0801580156100fa573d6000803e3d6000fd5b509050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b8060405161014e90610207565b610158919061028a565b604051809103906000f0801561016b5760015b6101b55760008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506101f7565b806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505b50565b61026d806102f983390190565b60e28061056683390190565b600081359050610222816102e1565b92915050565b60006020828403121561023a57600080fd5b600061024884828501610213565b91505092915050565b61025a816102a5565b82525050565b610269816102d7565b82525050565b60006020820190506102846000830184610251565b92915050565b600060208201905061029f6000830184610260565b92915050565b60006102b0826102b7565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6102ea816102d7565b81146102f557600080fd5b5056fe608060405234801561001057600080fd5b5060405161026d38038061026d83398181016040528101906100329190610054565b806000819055505061009e565b60008151905061004e81610087565b92915050565b60006020828403121561006657600080fd5b60006100748482850161003f565b91505092915050565b6000819050919050565b6100908161007d565b811461009b57600080fd5b50565b6101c0806100ad6000396000f3fe608060405234801561001057600080fd5b506004361061004c5760003560e01c806321848c46146100515780632e64cec11461006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61006b60048036038101906100669190610116565b6100c5565b005b6100756100da565b604051610082919061014e565b60405180910390f35b6100a560048036038101906100a09190610116565b6100e3565b005b6100af6100ed565b6040516100bc919061014e565b60405180910390f35b8060008190555060006100d757600080fd5b50565b60008054905090565b8060008190555050565b6000806100f957600080fd5b600054905090565b60008135905061011081610173565b92915050565b60006020828403121561012857600080fd5b600061013684828501610101565b91505092915050565b61014881610169565b82525050565b6000602082019050610163600083018461013f565b92915050565b6000819050919050565b61017c81610169565b811461018757600080fd5b5056fea26469706673582212204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923f32e64736f6c634300080400336080604052348015600f57600080fd5b5060405160e238038060e28339818101604052810190602d91906052565b6000811415603a57600080fd5b506096565b600081519050604c816082565b92915050565b600060208284031215606357600080fd5b6000606f84828501603f565b91505092915050565b6000819050919050565b6089816078565b8114609357600080fd5b50565b603f8060a36000396000f3fe6080604052600080fdfea2646970667358221220560e159a32ea605e9aee00bc872694a542a7b8138ecc1b3745625561482898cc64736f6c63430008040033a2646970667358221220c8f2016f54e3fbe7b8d1a5d27b87e132360e287af3dc087208cb2eca804de3af64736f6c63430008040033", - "structLogs": [ - { - "pc": 0, - "op": "PUSH1", - "gas": 3000208, - "gasCost": 3, - "depth": 1 - }, - { - "pc": 2, - "op": "PUSH1", - "gas": 3000205, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80" - ] - }, - { - "pc": 4, - "op": "MSTORE", - "gas": 3000202, - "gasCost": 12, - "depth": 1, - "stack": [ - "0x80", - "0x40" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 5, - "op": "CALLVALUE", - "gas": 3000190, - "gasCost": 2, - "depth": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 6, - "op": "DUP1", - "gas": 3000188, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 7, - "op": "ISZERO", - "gas": 3000185, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 8, - "op": "PUSH2", - "gas": 3000182, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x0", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 11, - "op": "JUMPI", - "gas": 3000179, - "gasCost": 10, - "depth": 1, - "stack": [ - "0x0", - "0x1", - "0x10" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 16, - "op": "JUMPDEST", - "gas": 3000169, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 17, - "op": "POP", - "gas": 3000168, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 18, - "op": "PUSH1", - "gas": 3000166, - "gasCost": 3, - "depth": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 20, - "op": "CALLDATASIZE", - "gas": 3000163, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 21, - "op": "LT", - "gas": 3000161, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x4", - "0x24" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 22, - "op": "PUSH2", - "gas": 3000158, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 25, - "op": "JUMPI", - "gas": 3000155, - "gasCost": 10, - "depth": 1, - "stack": [ - "0x0", - "0x41" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 26, - "op": "PUSH1", - "gas": 3000145, - "gasCost": 3, - "depth": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 28, - "op": "CALLDATALOAD", - "gas": 3000142, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 29, - "op": "PUSH1", - "gas": 3000139, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xce0dbd6700000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 31, - "op": "SHR", - "gas": 3000136, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xce0dbd6700000000000000000000000000000000000000000000000000000000", - "0xe0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 32, - "op": "DUP1", - "gas": 3000133, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xce0dbd67" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 33, - "op": "PUSH4", - "gas": 3000130, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0xce0dbd67" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 38, - "op": "EQ", - "gas": 3000127, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0xce0dbd67", - "0x314a09a8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 39, - "op": "PUSH2", - "gas": 3000124, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 42, - "op": "JUMPI", - "gas": 3000121, - "gasCost": 10, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x0", - "0x46" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 43, - "op": "DUP1", - "gas": 3000111, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xce0dbd67" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 44, - "op": "PUSH4", - "gas": 3000108, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0xce0dbd67" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 49, - "op": "EQ", - "gas": 3000105, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0xce0dbd67", - "0xc5b0437c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 50, - "op": "PUSH2", - "gas": 3000102, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 53, - "op": "JUMPI", - "gas": 3000099, - "gasCost": 10, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x0", - "0x64" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 54, - "op": "DUP1", - "gas": 3000089, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xce0dbd67" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 55, - "op": "PUSH4", - "gas": 3000086, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0xce0dbd67" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 60, - "op": "EQ", - "gas": 3000083, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0xce0dbd67", - "0xce0dbd67" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 61, - "op": "PUSH2", - "gas": 3000080, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 64, - "op": "JUMPI", - "gas": 3000077, - "gasCost": 10, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x1", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 128, - "op": "JUMPDEST", - "gas": 3000067, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xce0dbd67" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 129, - "op": "PUSH2", - "gas": 3000066, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xce0dbd67" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 132, - "op": "PUSH1", - "gas": 3000063, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 134, - "op": "DUP1", - "gas": 3000060, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 135, - "op": "CALLDATASIZE", - "gas": 3000057, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x4", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 136, - "op": "SUB", - "gas": 3000055, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x4", - "0x4", - "0x24" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 137, - "op": "DUP2", - "gas": 3000052, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x4", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 138, - "op": "ADD", - "gas": 3000049, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x4", - "0x20", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 139, - "op": "SWAP1", - "gas": 3000046, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x4", - "0x24" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 140, - "op": "PUSH2", - "gas": 3000043, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x24", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 143, - "op": "SWAP2", - "gas": 3000040, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x24", - "0x4", - "0x95" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 144, - "op": "SWAP1", - "gas": 3000037, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x95", - "0x4", - "0x24" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 145, - "op": "PUSH2", - "gas": 3000034, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x95", - "0x24", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 148, - "op": "JUMP", - "gas": 3000031, - "gasCost": 8, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x95", - "0x24", - "0x4", - "0x228" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 552, - "op": "JUMPDEST", - "gas": 3000023, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x95", - "0x24", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 553, - "op": "PUSH1", - "gas": 3000022, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x95", - "0x24", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 555, - "op": "PUSH1", - "gas": 3000019, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x95", - "0x24", - "0x4", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 557, - "op": "DUP3", - "gas": 3000016, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x95", - "0x24", - "0x4", - "0x0", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 558, - "op": "DUP5", - "gas": 3000013, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x95", - "0x24", - "0x4", - "0x0", - "0x20", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 559, - "op": "SUB", - "gas": 3000010, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x95", - "0x24", - "0x4", - "0x0", - "0x20", - "0x4", - "0x24" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 560, - "op": "SLT", - "gas": 3000007, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x95", - "0x24", - "0x4", - "0x0", - "0x20", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 561, - "op": "ISZERO", - "gas": 3000004, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x95", - "0x24", - "0x4", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 562, - "op": "PUSH2", - "gas": 3000001, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x95", - "0x24", - "0x4", - "0x0", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 565, - "op": "JUMPI", - "gas": 2999998, - "gasCost": 10, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x95", - "0x24", - "0x4", - "0x0", - "0x1", - "0x23a" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 570, - "op": "JUMPDEST", - "gas": 2999988, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x95", - "0x24", - "0x4", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 571, - "op": "PUSH1", - "gas": 2999987, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x95", - "0x24", - "0x4", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 573, - "op": "PUSH2", - "gas": 2999984, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x95", - "0x24", - "0x4", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 576, - "op": "DUP5", - "gas": 2999981, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x95", - "0x24", - "0x4", - "0x0", - "0x0", - "0x248" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 577, - "op": "DUP3", - "gas": 2999978, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x95", - "0x24", - "0x4", - "0x0", - "0x0", - "0x248", - "0x24" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 578, - "op": "DUP6", - "gas": 2999975, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x95", - "0x24", - "0x4", - "0x0", - "0x0", - "0x248", - "0x24", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 579, - "op": "ADD", - "gas": 2999972, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x95", - "0x24", - "0x4", - "0x0", - "0x0", - "0x248", - "0x24", - "0x0", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 580, - "op": "PUSH2", - "gas": 2999969, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x95", - "0x24", - "0x4", - "0x0", - "0x0", - "0x248", - "0x24", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 583, - "op": "JUMP", - "gas": 2999966, - "gasCost": 8, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x95", - "0x24", - "0x4", - "0x0", - "0x0", - "0x248", - "0x24", - "0x4", - "0x213" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 531, - "op": "JUMPDEST", - "gas": 2999958, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x95", - "0x24", - "0x4", - "0x0", - "0x0", - "0x248", - "0x24", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 532, - "op": "PUSH1", - "gas": 2999957, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x95", - "0x24", - "0x4", - "0x0", - "0x0", - "0x248", - "0x24", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 534, - "op": "DUP2", - "gas": 2999954, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x95", - "0x24", - "0x4", - "0x0", - "0x0", - "0x248", - "0x24", - "0x4", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 535, - "op": "CALLDATALOAD", - "gas": 2999951, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x95", - "0x24", - "0x4", - "0x0", - "0x0", - "0x248", - "0x24", - "0x4", - "0x0", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 536, - "op": "SWAP1", - "gas": 2999948, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x95", - "0x24", - "0x4", - "0x0", - "0x0", - "0x248", - "0x24", - "0x4", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 537, - "op": "POP", - "gas": 2999945, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x95", - "0x24", - "0x4", - "0x0", - "0x0", - "0x248", - "0x24", - "0x4", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 538, - "op": "PUSH2", - "gas": 2999943, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x95", - "0x24", - "0x4", - "0x0", - "0x0", - "0x248", - "0x24", - "0x4", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 541, - "op": "DUP2", - "gas": 2999940, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x95", - "0x24", - "0x4", - "0x0", - "0x0", - "0x248", - "0x24", - "0x4", - "0x0", - "0x222" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 542, - "op": "PUSH2", - "gas": 2999937, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x95", - "0x24", - "0x4", - "0x0", - "0x0", - "0x248", - "0x24", - "0x4", - "0x0", - "0x222", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 545, - "op": "JUMP", - "gas": 2999934, - "gasCost": 8, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x95", - "0x24", - "0x4", - "0x0", - "0x0", - "0x248", - "0x24", - "0x4", - "0x0", - "0x222", - "0x0", - "0x2e1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 737, - "op": "JUMPDEST", - "gas": 2999926, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x95", - "0x24", - "0x4", - "0x0", - "0x0", - "0x248", - "0x24", - "0x4", - "0x0", - "0x222", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 738, - "op": "PUSH2", - "gas": 2999925, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x95", - "0x24", - "0x4", - "0x0", - "0x0", - "0x248", - "0x24", - "0x4", - "0x0", - "0x222", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 741, - "op": "DUP2", - "gas": 2999922, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x95", - "0x24", - "0x4", - "0x0", - "0x0", - "0x248", - "0x24", - "0x4", - "0x0", - "0x222", - "0x0", - "0x2ea" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 742, - "op": "PUSH2", - "gas": 2999919, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x95", - "0x24", - "0x4", - "0x0", - "0x0", - "0x248", - "0x24", - "0x4", - "0x0", - "0x222", - "0x0", - "0x2ea", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 745, - "op": "JUMP", - "gas": 2999916, - "gasCost": 8, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x95", - "0x24", - "0x4", - "0x0", - "0x0", - "0x248", - "0x24", - "0x4", - "0x0", - "0x222", - "0x0", - "0x2ea", - "0x0", - "0x2d7" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 727, - "op": "JUMPDEST", - "gas": 2999908, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x95", - "0x24", - "0x4", - "0x0", - "0x0", - "0x248", - "0x24", - "0x4", - "0x0", - "0x222", - "0x0", - "0x2ea", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 728, - "op": "PUSH1", - "gas": 2999907, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x95", - "0x24", - "0x4", - "0x0", - "0x0", - "0x248", - "0x24", - "0x4", - "0x0", - "0x222", - "0x0", - "0x2ea", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 730, - "op": "DUP2", - "gas": 2999904, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x95", - "0x24", - "0x4", - "0x0", - "0x0", - "0x248", - "0x24", - "0x4", - "0x0", - "0x222", - "0x0", - "0x2ea", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 731, - "op": "SWAP1", - "gas": 2999901, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x95", - "0x24", - "0x4", - "0x0", - "0x0", - "0x248", - "0x24", - "0x4", - "0x0", - "0x222", - "0x0", - "0x2ea", - "0x0", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 732, - "op": "POP", - "gas": 2999898, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x95", - "0x24", - "0x4", - "0x0", - "0x0", - "0x248", - "0x24", - "0x4", - "0x0", - "0x222", - "0x0", - "0x2ea", - "0x0", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 733, - "op": "SWAP2", - "gas": 2999896, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x95", - "0x24", - "0x4", - "0x0", - "0x0", - "0x248", - "0x24", - "0x4", - "0x0", - "0x222", - "0x0", - "0x2ea", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 734, - "op": "SWAP1", - "gas": 2999893, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x95", - "0x24", - "0x4", - "0x0", - "0x0", - "0x248", - "0x24", - "0x4", - "0x0", - "0x222", - "0x0", - "0x0", - "0x0", - "0x2ea" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 735, - "op": "POP", - "gas": 2999890, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x95", - "0x24", - "0x4", - "0x0", - "0x0", - "0x248", - "0x24", - "0x4", - "0x0", - "0x222", - "0x0", - "0x0", - "0x2ea", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 736, - "op": "JUMP", - "gas": 2999888, - "gasCost": 8, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x95", - "0x24", - "0x4", - "0x0", - "0x0", - "0x248", - "0x24", - "0x4", - "0x0", - "0x222", - "0x0", - "0x0", - "0x2ea" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 746, - "op": "JUMPDEST", - "gas": 2999880, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x95", - "0x24", - "0x4", - "0x0", - "0x0", - "0x248", - "0x24", - "0x4", - "0x0", - "0x222", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 747, - "op": "DUP2", - "gas": 2999879, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x95", - "0x24", - "0x4", - "0x0", - "0x0", - "0x248", - "0x24", - "0x4", - "0x0", - "0x222", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 748, - "op": "EQ", - "gas": 2999876, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x95", - "0x24", - "0x4", - "0x0", - "0x0", - "0x248", - "0x24", - "0x4", - "0x0", - "0x222", - "0x0", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 749, - "op": "PUSH2", - "gas": 2999873, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x95", - "0x24", - "0x4", - "0x0", - "0x0", - "0x248", - "0x24", - "0x4", - "0x0", - "0x222", - "0x0", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 752, - "op": "JUMPI", - "gas": 2999870, - "gasCost": 10, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x95", - "0x24", - "0x4", - "0x0", - "0x0", - "0x248", - "0x24", - "0x4", - "0x0", - "0x222", - "0x0", - "0x1", - "0x2f5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 757, - "op": "JUMPDEST", - "gas": 2999860, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x95", - "0x24", - "0x4", - "0x0", - "0x0", - "0x248", - "0x24", - "0x4", - "0x0", - "0x222", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 758, - "op": "POP", - "gas": 2999859, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x95", - "0x24", - "0x4", - "0x0", - "0x0", - "0x248", - "0x24", - "0x4", - "0x0", - "0x222", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 759, - "op": "JUMP", - "gas": 2999857, - "gasCost": 8, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x95", - "0x24", - "0x4", - "0x0", - "0x0", - "0x248", - "0x24", - "0x4", - "0x0", - "0x222" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 546, - "op": "JUMPDEST", - "gas": 2999849, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x95", - "0x24", - "0x4", - "0x0", - "0x0", - "0x248", - "0x24", - "0x4", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 547, - "op": "SWAP3", - "gas": 2999848, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x95", - "0x24", - "0x4", - "0x0", - "0x0", - "0x248", - "0x24", - "0x4", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 548, - "op": "SWAP2", - "gas": 2999845, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x95", - "0x24", - "0x4", - "0x0", - "0x0", - "0x0", - "0x24", - "0x4", - "0x248" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 549, - "op": "POP", - "gas": 2999842, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x95", - "0x24", - "0x4", - "0x0", - "0x0", - "0x0", - "0x248", - "0x4", - "0x24" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 550, - "op": "POP", - "gas": 2999840, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x95", - "0x24", - "0x4", - "0x0", - "0x0", - "0x0", - "0x248", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 551, - "op": "JUMP", - "gas": 2999838, - "gasCost": 8, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x95", - "0x24", - "0x4", - "0x0", - "0x0", - "0x0", - "0x248" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 584, - "op": "JUMPDEST", - "gas": 2999830, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x95", - "0x24", - "0x4", - "0x0", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 585, - "op": "SWAP2", - "gas": 2999829, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x95", - "0x24", - "0x4", - "0x0", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 586, - "op": "POP", - "gas": 2999826, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x95", - "0x24", - "0x4", - "0x0", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 587, - "op": "POP", - "gas": 2999824, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x95", - "0x24", - "0x4", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 588, - "op": "SWAP3", - "gas": 2999822, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x95", - "0x24", - "0x4", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 589, - "op": "SWAP2", - "gas": 2999819, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x0", - "0x24", - "0x4", - "0x95" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 590, - "op": "POP", - "gas": 2999816, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x0", - "0x95", - "0x4", - "0x24" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 591, - "op": "POP", - "gas": 2999814, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x0", - "0x95", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 592, - "op": "JUMP", - "gas": 2999812, - "gasCost": 8, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x0", - "0x95" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 149, - "op": "JUMPDEST", - "gas": 2999804, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 150, - "op": "PUSH2", - "gas": 2999803, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 153, - "op": "JUMP", - "gas": 2999800, - "gasCost": 8, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x0", - "0x141" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 321, - "op": "JUMPDEST", - "gas": 2999792, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 322, - "op": "DUP1", - "gas": 2999791, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 323, - "op": "PUSH1", - "gas": 2999788, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 325, - "op": "MLOAD", - "gas": 2999785, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x0", - "0x0", - "0x40" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 326, - "op": "PUSH2", - "gas": 2999782, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x0", - "0x0", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 329, - "op": "SWAP1", - "gas": 2999779, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x0", - "0x0", - "0x80", - "0x14e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 330, - "op": "PUSH2", - "gas": 2999776, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x0", - "0x0", - "0x14e", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 333, - "op": "JUMP", - "gas": 2999773, - "gasCost": 8, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x0", - "0x0", - "0x14e", - "0x80", - "0x207" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 519, - "op": "JUMPDEST", - "gas": 2999765, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x0", - "0x0", - "0x14e", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 520, - "op": "PUSH1", - "gas": 2999764, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x0", - "0x0", - "0x14e", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 522, - "op": "DUP1", - "gas": 2999761, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x0", - "0x0", - "0x14e", - "0x80", - "0xe2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 523, - "op": "PUSH2", - "gas": 2999758, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x0", - "0x0", - "0x14e", - "0x80", - "0xe2", - "0xe2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 526, - "op": "DUP4", - "gas": 2999755, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x0", - "0x0", - "0x14e", - "0x80", - "0xe2", - "0xe2", - "0x566" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 527, - "op": "CODECOPY", - "gas": 2999752, - "gasCost": 54, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x0", - "0x0", - "0x14e", - "0x80", - "0xe2", - "0xe2", - "0x566", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 528, - "op": "ADD", - "gas": 2999698, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x0", - "0x0", - "0x14e", - "0x80", - "0xe2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "6080604052348015600f57600080fd5b5060405160e238038060e28339818101", - "604052810190602d91906052565b6000811415603a57600080fd5b506096565b", - "600081519050604c816082565b92915050565b60006020828403121560635760", - "0080fd5b6000606f84828501603f565b91505092915050565b60008190509190", - "50565b6089816078565b8114609357600080fd5b50565b603f8060a360003960", - "00f3fe6080604052600080fdfea2646970667358221220560e159a32ea605e9a", - "ee00bc872694a542a7b8138ecc1b3745625561482898cc64736f6c6343000804", - "0033000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 529, - "op": "SWAP1", - "gas": 2999695, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x0", - "0x0", - "0x14e", - "0x162" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "6080604052348015600f57600080fd5b5060405160e238038060e28339818101", - "604052810190602d91906052565b6000811415603a57600080fd5b506096565b", - "600081519050604c816082565b92915050565b60006020828403121560635760", - "0080fd5b6000606f84828501603f565b91505092915050565b60008190509190", - "50565b6089816078565b8114609357600080fd5b50565b603f8060a360003960", - "00f3fe6080604052600080fdfea2646970667358221220560e159a32ea605e9a", - "ee00bc872694a542a7b8138ecc1b3745625561482898cc64736f6c6343000804", - "0033000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 530, - "op": "JUMP", - "gas": 2999692, - "gasCost": 8, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x0", - "0x0", - "0x162", - "0x14e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "6080604052348015600f57600080fd5b5060405160e238038060e28339818101", - "604052810190602d91906052565b6000811415603a57600080fd5b506096565b", - "600081519050604c816082565b92915050565b60006020828403121560635760", - "0080fd5b6000606f84828501603f565b91505092915050565b60008190509190", - "50565b6089816078565b8114609357600080fd5b50565b603f8060a360003960", - "00f3fe6080604052600080fdfea2646970667358221220560e159a32ea605e9a", - "ee00bc872694a542a7b8138ecc1b3745625561482898cc64736f6c6343000804", - "0033000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 334, - "op": "JUMPDEST", - "gas": 2999684, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x0", - "0x0", - "0x162" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "6080604052348015600f57600080fd5b5060405160e238038060e28339818101", - "604052810190602d91906052565b6000811415603a57600080fd5b506096565b", - "600081519050604c816082565b92915050565b60006020828403121560635760", - "0080fd5b6000606f84828501603f565b91505092915050565b60008190509190", - "50565b6089816078565b8114609357600080fd5b50565b603f8060a360003960", - "00f3fe6080604052600080fdfea2646970667358221220560e159a32ea605e9a", - "ee00bc872694a542a7b8138ecc1b3745625561482898cc64736f6c6343000804", - "0033000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 335, - "op": "PUSH2", - "gas": 2999683, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x0", - "0x0", - "0x162" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "6080604052348015600f57600080fd5b5060405160e238038060e28339818101", - "604052810190602d91906052565b6000811415603a57600080fd5b506096565b", - "600081519050604c816082565b92915050565b60006020828403121560635760", - "0080fd5b6000606f84828501603f565b91505092915050565b60008190509190", - "50565b6089816078565b8114609357600080fd5b50565b603f8060a360003960", - "00f3fe6080604052600080fdfea2646970667358221220560e159a32ea605e9a", - "ee00bc872694a542a7b8138ecc1b3745625561482898cc64736f6c6343000804", - "0033000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 338, - "op": "SWAP2", - "gas": 2999680, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x0", - "0x0", - "0x162", - "0x158" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "6080604052348015600f57600080fd5b5060405160e238038060e28339818101", - "604052810190602d91906052565b6000811415603a57600080fd5b506096565b", - "600081519050604c816082565b92915050565b60006020828403121560635760", - "0080fd5b6000606f84828501603f565b91505092915050565b60008190509190", - "50565b6089816078565b8114609357600080fd5b50565b603f8060a360003960", - "00f3fe6080604052600080fdfea2646970667358221220560e159a32ea605e9a", - "ee00bc872694a542a7b8138ecc1b3745625561482898cc64736f6c6343000804", - "0033000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 339, - "op": "SWAP1", - "gas": 2999677, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x0", - "0x158", - "0x162", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "6080604052348015600f57600080fd5b5060405160e238038060e28339818101", - "604052810190602d91906052565b6000811415603a57600080fd5b506096565b", - "600081519050604c816082565b92915050565b60006020828403121560635760", - "0080fd5b6000606f84828501603f565b91505092915050565b60008190509190", - "50565b6089816078565b8114609357600080fd5b50565b603f8060a360003960", - "00f3fe6080604052600080fdfea2646970667358221220560e159a32ea605e9a", - "ee00bc872694a542a7b8138ecc1b3745625561482898cc64736f6c6343000804", - "0033000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 340, - "op": "PUSH2", - "gas": 2999674, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x0", - "0x158", - "0x0", - "0x162" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "6080604052348015600f57600080fd5b5060405160e238038060e28339818101", - "604052810190602d91906052565b6000811415603a57600080fd5b506096565b", - "600081519050604c816082565b92915050565b60006020828403121560635760", - "0080fd5b6000606f84828501603f565b91505092915050565b60008190509190", - "50565b6089816078565b8114609357600080fd5b50565b603f8060a360003960", - "00f3fe6080604052600080fdfea2646970667358221220560e159a32ea605e9a", - "ee00bc872694a542a7b8138ecc1b3745625561482898cc64736f6c6343000804", - "0033000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 343, - "op": "JUMP", - "gas": 2999671, - "gasCost": 8, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x0", - "0x158", - "0x0", - "0x162", - "0x28a" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "6080604052348015600f57600080fd5b5060405160e238038060e28339818101", - "604052810190602d91906052565b6000811415603a57600080fd5b506096565b", - "600081519050604c816082565b92915050565b60006020828403121560635760", - "0080fd5b6000606f84828501603f565b91505092915050565b60008190509190", - "50565b6089816078565b8114609357600080fd5b50565b603f8060a360003960", - "00f3fe6080604052600080fdfea2646970667358221220560e159a32ea605e9a", - "ee00bc872694a542a7b8138ecc1b3745625561482898cc64736f6c6343000804", - "0033000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 650, - "op": "JUMPDEST", - "gas": 2999663, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x0", - "0x158", - "0x0", - "0x162" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "6080604052348015600f57600080fd5b5060405160e238038060e28339818101", - "604052810190602d91906052565b6000811415603a57600080fd5b506096565b", - "600081519050604c816082565b92915050565b60006020828403121560635760", - "0080fd5b6000606f84828501603f565b91505092915050565b60008190509190", - "50565b6089816078565b8114609357600080fd5b50565b603f8060a360003960", - "00f3fe6080604052600080fdfea2646970667358221220560e159a32ea605e9a", - "ee00bc872694a542a7b8138ecc1b3745625561482898cc64736f6c6343000804", - "0033000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 651, - "op": "PUSH1", - "gas": 2999662, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x0", - "0x158", - "0x0", - "0x162" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "6080604052348015600f57600080fd5b5060405160e238038060e28339818101", - "604052810190602d91906052565b6000811415603a57600080fd5b506096565b", - "600081519050604c816082565b92915050565b60006020828403121560635760", - "0080fd5b6000606f84828501603f565b91505092915050565b60008190509190", - "50565b6089816078565b8114609357600080fd5b50565b603f8060a360003960", - "00f3fe6080604052600080fdfea2646970667358221220560e159a32ea605e9a", - "ee00bc872694a542a7b8138ecc1b3745625561482898cc64736f6c6343000804", - "0033000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 653, - "op": "PUSH1", - "gas": 2999659, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x0", - "0x158", - "0x0", - "0x162", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "6080604052348015600f57600080fd5b5060405160e238038060e28339818101", - "604052810190602d91906052565b6000811415603a57600080fd5b506096565b", - "600081519050604c816082565b92915050565b60006020828403121560635760", - "0080fd5b6000606f84828501603f565b91505092915050565b60008190509190", - "50565b6089816078565b8114609357600080fd5b50565b603f8060a360003960", - "00f3fe6080604052600080fdfea2646970667358221220560e159a32ea605e9a", - "ee00bc872694a542a7b8138ecc1b3745625561482898cc64736f6c6343000804", - "0033000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 655, - "op": "DUP3", - "gas": 2999656, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x0", - "0x158", - "0x0", - "0x162", - "0x0", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "6080604052348015600f57600080fd5b5060405160e238038060e28339818101", - "604052810190602d91906052565b6000811415603a57600080fd5b506096565b", - "600081519050604c816082565b92915050565b60006020828403121560635760", - "0080fd5b6000606f84828501603f565b91505092915050565b60008190509190", - "50565b6089816078565b8114609357600080fd5b50565b603f8060a360003960", - "00f3fe6080604052600080fdfea2646970667358221220560e159a32ea605e9a", - "ee00bc872694a542a7b8138ecc1b3745625561482898cc64736f6c6343000804", - "0033000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 656, - "op": "ADD", - "gas": 2999653, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x0", - "0x158", - "0x0", - "0x162", - "0x0", - "0x20", - "0x162" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "6080604052348015600f57600080fd5b5060405160e238038060e28339818101", - "604052810190602d91906052565b6000811415603a57600080fd5b506096565b", - "600081519050604c816082565b92915050565b60006020828403121560635760", - "0080fd5b6000606f84828501603f565b91505092915050565b60008190509190", - "50565b6089816078565b8114609357600080fd5b50565b603f8060a360003960", - "00f3fe6080604052600080fdfea2646970667358221220560e159a32ea605e9a", - "ee00bc872694a542a7b8138ecc1b3745625561482898cc64736f6c6343000804", - "0033000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 657, - "op": "SWAP1", - "gas": 2999650, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x0", - "0x158", - "0x0", - "0x162", - "0x0", - "0x182" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "6080604052348015600f57600080fd5b5060405160e238038060e28339818101", - "604052810190602d91906052565b6000811415603a57600080fd5b506096565b", - "600081519050604c816082565b92915050565b60006020828403121560635760", - "0080fd5b6000606f84828501603f565b91505092915050565b60008190509190", - "50565b6089816078565b8114609357600080fd5b50565b603f8060a360003960", - "00f3fe6080604052600080fdfea2646970667358221220560e159a32ea605e9a", - "ee00bc872694a542a7b8138ecc1b3745625561482898cc64736f6c6343000804", - "0033000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 658, - "op": "POP", - "gas": 2999647, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x0", - "0x158", - "0x0", - "0x162", - "0x182", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "6080604052348015600f57600080fd5b5060405160e238038060e28339818101", - "604052810190602d91906052565b6000811415603a57600080fd5b506096565b", - "600081519050604c816082565b92915050565b60006020828403121560635760", - "0080fd5b6000606f84828501603f565b91505092915050565b60008190509190", - "50565b6089816078565b8114609357600080fd5b50565b603f8060a360003960", - "00f3fe6080604052600080fdfea2646970667358221220560e159a32ea605e9a", - "ee00bc872694a542a7b8138ecc1b3745625561482898cc64736f6c6343000804", - "0033000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 659, - "op": "PUSH2", - "gas": 2999645, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x0", - "0x158", - "0x0", - "0x162", - "0x182" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "6080604052348015600f57600080fd5b5060405160e238038060e28339818101", - "604052810190602d91906052565b6000811415603a57600080fd5b506096565b", - "600081519050604c816082565b92915050565b60006020828403121560635760", - "0080fd5b6000606f84828501603f565b91505092915050565b60008190509190", - "50565b6089816078565b8114609357600080fd5b50565b603f8060a360003960", - "00f3fe6080604052600080fdfea2646970667358221220560e159a32ea605e9a", - "ee00bc872694a542a7b8138ecc1b3745625561482898cc64736f6c6343000804", - "0033000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 662, - "op": "PUSH1", - "gas": 2999642, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x0", - "0x158", - "0x0", - "0x162", - "0x182", - "0x29f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "6080604052348015600f57600080fd5b5060405160e238038060e28339818101", - "604052810190602d91906052565b6000811415603a57600080fd5b506096565b", - "600081519050604c816082565b92915050565b60006020828403121560635760", - "0080fd5b6000606f84828501603f565b91505092915050565b60008190509190", - "50565b6089816078565b8114609357600080fd5b50565b603f8060a360003960", - "00f3fe6080604052600080fdfea2646970667358221220560e159a32ea605e9a", - "ee00bc872694a542a7b8138ecc1b3745625561482898cc64736f6c6343000804", - "0033000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 664, - "op": "DUP4", - "gas": 2999639, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x0", - "0x158", - "0x0", - "0x162", - "0x182", - "0x29f", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "6080604052348015600f57600080fd5b5060405160e238038060e28339818101", - "604052810190602d91906052565b6000811415603a57600080fd5b506096565b", - "600081519050604c816082565b92915050565b60006020828403121560635760", - "0080fd5b6000606f84828501603f565b91505092915050565b60008190509190", - "50565b6089816078565b8114609357600080fd5b50565b603f8060a360003960", - "00f3fe6080604052600080fdfea2646970667358221220560e159a32ea605e9a", - "ee00bc872694a542a7b8138ecc1b3745625561482898cc64736f6c6343000804", - "0033000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 665, - "op": "ADD", - "gas": 2999636, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x0", - "0x158", - "0x0", - "0x162", - "0x182", - "0x29f", - "0x0", - "0x162" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "6080604052348015600f57600080fd5b5060405160e238038060e28339818101", - "604052810190602d91906052565b6000811415603a57600080fd5b506096565b", - "600081519050604c816082565b92915050565b60006020828403121560635760", - "0080fd5b6000606f84828501603f565b91505092915050565b60008190509190", - "50565b6089816078565b8114609357600080fd5b50565b603f8060a360003960", - "00f3fe6080604052600080fdfea2646970667358221220560e159a32ea605e9a", - "ee00bc872694a542a7b8138ecc1b3745625561482898cc64736f6c6343000804", - "0033000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 666, - "op": "DUP5", - "gas": 2999633, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x0", - "0x158", - "0x0", - "0x162", - "0x182", - "0x29f", - "0x162" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "6080604052348015600f57600080fd5b5060405160e238038060e28339818101", - "604052810190602d91906052565b6000811415603a57600080fd5b506096565b", - "600081519050604c816082565b92915050565b60006020828403121560635760", - "0080fd5b6000606f84828501603f565b91505092915050565b60008190509190", - "50565b6089816078565b8114609357600080fd5b50565b603f8060a360003960", - "00f3fe6080604052600080fdfea2646970667358221220560e159a32ea605e9a", - "ee00bc872694a542a7b8138ecc1b3745625561482898cc64736f6c6343000804", - "0033000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 667, - "op": "PUSH2", - "gas": 2999630, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x0", - "0x158", - "0x0", - "0x162", - "0x182", - "0x29f", - "0x162", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "6080604052348015600f57600080fd5b5060405160e238038060e28339818101", - "604052810190602d91906052565b6000811415603a57600080fd5b506096565b", - "600081519050604c816082565b92915050565b60006020828403121560635760", - "0080fd5b6000606f84828501603f565b91505092915050565b60008190509190", - "50565b6089816078565b8114609357600080fd5b50565b603f8060a360003960", - "00f3fe6080604052600080fdfea2646970667358221220560e159a32ea605e9a", - "ee00bc872694a542a7b8138ecc1b3745625561482898cc64736f6c6343000804", - "0033000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 670, - "op": "JUMP", - "gas": 2999627, - "gasCost": 8, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x0", - "0x158", - "0x0", - "0x162", - "0x182", - "0x29f", - "0x162", - "0x0", - "0x260" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "6080604052348015600f57600080fd5b5060405160e238038060e28339818101", - "604052810190602d91906052565b6000811415603a57600080fd5b506096565b", - "600081519050604c816082565b92915050565b60006020828403121560635760", - "0080fd5b6000606f84828501603f565b91505092915050565b60008190509190", - "50565b6089816078565b8114609357600080fd5b50565b603f8060a360003960", - "00f3fe6080604052600080fdfea2646970667358221220560e159a32ea605e9a", - "ee00bc872694a542a7b8138ecc1b3745625561482898cc64736f6c6343000804", - "0033000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 608, - "op": "JUMPDEST", - "gas": 2999619, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x0", - "0x158", - "0x0", - "0x162", - "0x182", - "0x29f", - "0x162", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "6080604052348015600f57600080fd5b5060405160e238038060e28339818101", - "604052810190602d91906052565b6000811415603a57600080fd5b506096565b", - "600081519050604c816082565b92915050565b60006020828403121560635760", - "0080fd5b6000606f84828501603f565b91505092915050565b60008190509190", - "50565b6089816078565b8114609357600080fd5b50565b603f8060a360003960", - "00f3fe6080604052600080fdfea2646970667358221220560e159a32ea605e9a", - "ee00bc872694a542a7b8138ecc1b3745625561482898cc64736f6c6343000804", - "0033000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 609, - "op": "PUSH2", - "gas": 2999618, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x0", - "0x158", - "0x0", - "0x162", - "0x182", - "0x29f", - "0x162", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "6080604052348015600f57600080fd5b5060405160e238038060e28339818101", - "604052810190602d91906052565b6000811415603a57600080fd5b506096565b", - "600081519050604c816082565b92915050565b60006020828403121560635760", - "0080fd5b6000606f84828501603f565b91505092915050565b60008190509190", - "50565b6089816078565b8114609357600080fd5b50565b603f8060a360003960", - "00f3fe6080604052600080fdfea2646970667358221220560e159a32ea605e9a", - "ee00bc872694a542a7b8138ecc1b3745625561482898cc64736f6c6343000804", - "0033000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 612, - "op": "DUP2", - "gas": 2999615, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x0", - "0x158", - "0x0", - "0x162", - "0x182", - "0x29f", - "0x162", - "0x0", - "0x269" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "6080604052348015600f57600080fd5b5060405160e238038060e28339818101", - "604052810190602d91906052565b6000811415603a57600080fd5b506096565b", - "600081519050604c816082565b92915050565b60006020828403121560635760", - "0080fd5b6000606f84828501603f565b91505092915050565b60008190509190", - "50565b6089816078565b8114609357600080fd5b50565b603f8060a360003960", - "00f3fe6080604052600080fdfea2646970667358221220560e159a32ea605e9a", - "ee00bc872694a542a7b8138ecc1b3745625561482898cc64736f6c6343000804", - "0033000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 613, - "op": "PUSH2", - "gas": 2999612, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x0", - "0x158", - "0x0", - "0x162", - "0x182", - "0x29f", - "0x162", - "0x0", - "0x269", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "6080604052348015600f57600080fd5b5060405160e238038060e28339818101", - "604052810190602d91906052565b6000811415603a57600080fd5b506096565b", - "600081519050604c816082565b92915050565b60006020828403121560635760", - "0080fd5b6000606f84828501603f565b91505092915050565b60008190509190", - "50565b6089816078565b8114609357600080fd5b50565b603f8060a360003960", - "00f3fe6080604052600080fdfea2646970667358221220560e159a32ea605e9a", - "ee00bc872694a542a7b8138ecc1b3745625561482898cc64736f6c6343000804", - "0033000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 616, - "op": "JUMP", - "gas": 2999609, - "gasCost": 8, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x0", - "0x158", - "0x0", - "0x162", - "0x182", - "0x29f", - "0x162", - "0x0", - "0x269", - "0x0", - "0x2d7" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "6080604052348015600f57600080fd5b5060405160e238038060e28339818101", - "604052810190602d91906052565b6000811415603a57600080fd5b506096565b", - "600081519050604c816082565b92915050565b60006020828403121560635760", - "0080fd5b6000606f84828501603f565b91505092915050565b60008190509190", - "50565b6089816078565b8114609357600080fd5b50565b603f8060a360003960", - "00f3fe6080604052600080fdfea2646970667358221220560e159a32ea605e9a", - "ee00bc872694a542a7b8138ecc1b3745625561482898cc64736f6c6343000804", - "0033000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 727, - "op": "JUMPDEST", - "gas": 2999601, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x0", - "0x158", - "0x0", - "0x162", - "0x182", - "0x29f", - "0x162", - "0x0", - "0x269", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "6080604052348015600f57600080fd5b5060405160e238038060e28339818101", - "604052810190602d91906052565b6000811415603a57600080fd5b506096565b", - "600081519050604c816082565b92915050565b60006020828403121560635760", - "0080fd5b6000606f84828501603f565b91505092915050565b60008190509190", - "50565b6089816078565b8114609357600080fd5b50565b603f8060a360003960", - "00f3fe6080604052600080fdfea2646970667358221220560e159a32ea605e9a", - "ee00bc872694a542a7b8138ecc1b3745625561482898cc64736f6c6343000804", - "0033000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 728, - "op": "PUSH1", - "gas": 2999600, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x0", - "0x158", - "0x0", - "0x162", - "0x182", - "0x29f", - "0x162", - "0x0", - "0x269", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "6080604052348015600f57600080fd5b5060405160e238038060e28339818101", - "604052810190602d91906052565b6000811415603a57600080fd5b506096565b", - "600081519050604c816082565b92915050565b60006020828403121560635760", - "0080fd5b6000606f84828501603f565b91505092915050565b60008190509190", - "50565b6089816078565b8114609357600080fd5b50565b603f8060a360003960", - "00f3fe6080604052600080fdfea2646970667358221220560e159a32ea605e9a", - "ee00bc872694a542a7b8138ecc1b3745625561482898cc64736f6c6343000804", - "0033000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 730, - "op": "DUP2", - "gas": 2999597, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x0", - "0x158", - "0x0", - "0x162", - "0x182", - "0x29f", - "0x162", - "0x0", - "0x269", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "6080604052348015600f57600080fd5b5060405160e238038060e28339818101", - "604052810190602d91906052565b6000811415603a57600080fd5b506096565b", - "600081519050604c816082565b92915050565b60006020828403121560635760", - "0080fd5b6000606f84828501603f565b91505092915050565b60008190509190", - "50565b6089816078565b8114609357600080fd5b50565b603f8060a360003960", - "00f3fe6080604052600080fdfea2646970667358221220560e159a32ea605e9a", - "ee00bc872694a542a7b8138ecc1b3745625561482898cc64736f6c6343000804", - "0033000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 731, - "op": "SWAP1", - "gas": 2999594, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x0", - "0x158", - "0x0", - "0x162", - "0x182", - "0x29f", - "0x162", - "0x0", - "0x269", - "0x0", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "6080604052348015600f57600080fd5b5060405160e238038060e28339818101", - "604052810190602d91906052565b6000811415603a57600080fd5b506096565b", - "600081519050604c816082565b92915050565b60006020828403121560635760", - "0080fd5b6000606f84828501603f565b91505092915050565b60008190509190", - "50565b6089816078565b8114609357600080fd5b50565b603f8060a360003960", - "00f3fe6080604052600080fdfea2646970667358221220560e159a32ea605e9a", - "ee00bc872694a542a7b8138ecc1b3745625561482898cc64736f6c6343000804", - "0033000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 732, - "op": "POP", - "gas": 2999591, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x0", - "0x158", - "0x0", - "0x162", - "0x182", - "0x29f", - "0x162", - "0x0", - "0x269", - "0x0", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "6080604052348015600f57600080fd5b5060405160e238038060e28339818101", - "604052810190602d91906052565b6000811415603a57600080fd5b506096565b", - "600081519050604c816082565b92915050565b60006020828403121560635760", - "0080fd5b6000606f84828501603f565b91505092915050565b60008190509190", - "50565b6089816078565b8114609357600080fd5b50565b603f8060a360003960", - "00f3fe6080604052600080fdfea2646970667358221220560e159a32ea605e9a", - "ee00bc872694a542a7b8138ecc1b3745625561482898cc64736f6c6343000804", - "0033000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 733, - "op": "SWAP2", - "gas": 2999589, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x0", - "0x158", - "0x0", - "0x162", - "0x182", - "0x29f", - "0x162", - "0x0", - "0x269", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "6080604052348015600f57600080fd5b5060405160e238038060e28339818101", - "604052810190602d91906052565b6000811415603a57600080fd5b506096565b", - "600081519050604c816082565b92915050565b60006020828403121560635760", - "0080fd5b6000606f84828501603f565b91505092915050565b60008190509190", - "50565b6089816078565b8114609357600080fd5b50565b603f8060a360003960", - "00f3fe6080604052600080fdfea2646970667358221220560e159a32ea605e9a", - "ee00bc872694a542a7b8138ecc1b3745625561482898cc64736f6c6343000804", - "0033000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 734, - "op": "SWAP1", - "gas": 2999586, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x0", - "0x158", - "0x0", - "0x162", - "0x182", - "0x29f", - "0x162", - "0x0", - "0x0", - "0x0", - "0x269" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "6080604052348015600f57600080fd5b5060405160e238038060e28339818101", - "604052810190602d91906052565b6000811415603a57600080fd5b506096565b", - "600081519050604c816082565b92915050565b60006020828403121560635760", - "0080fd5b6000606f84828501603f565b91505092915050565b60008190509190", - "50565b6089816078565b8114609357600080fd5b50565b603f8060a360003960", - "00f3fe6080604052600080fdfea2646970667358221220560e159a32ea605e9a", - "ee00bc872694a542a7b8138ecc1b3745625561482898cc64736f6c6343000804", - "0033000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 735, - "op": "POP", - "gas": 2999583, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x0", - "0x158", - "0x0", - "0x162", - "0x182", - "0x29f", - "0x162", - "0x0", - "0x0", - "0x269", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "6080604052348015600f57600080fd5b5060405160e238038060e28339818101", - "604052810190602d91906052565b6000811415603a57600080fd5b506096565b", - "600081519050604c816082565b92915050565b60006020828403121560635760", - "0080fd5b6000606f84828501603f565b91505092915050565b60008190509190", - "50565b6089816078565b8114609357600080fd5b50565b603f8060a360003960", - "00f3fe6080604052600080fdfea2646970667358221220560e159a32ea605e9a", - "ee00bc872694a542a7b8138ecc1b3745625561482898cc64736f6c6343000804", - "0033000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 736, - "op": "JUMP", - "gas": 2999581, - "gasCost": 8, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x0", - "0x158", - "0x0", - "0x162", - "0x182", - "0x29f", - "0x162", - "0x0", - "0x0", - "0x269" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "6080604052348015600f57600080fd5b5060405160e238038060e28339818101", - "604052810190602d91906052565b6000811415603a57600080fd5b506096565b", - "600081519050604c816082565b92915050565b60006020828403121560635760", - "0080fd5b6000606f84828501603f565b91505092915050565b60008190509190", - "50565b6089816078565b8114609357600080fd5b50565b603f8060a360003960", - "00f3fe6080604052600080fdfea2646970667358221220560e159a32ea605e9a", - "ee00bc872694a542a7b8138ecc1b3745625561482898cc64736f6c6343000804", - "0033000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 617, - "op": "JUMPDEST", - "gas": 2999573, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x0", - "0x158", - "0x0", - "0x162", - "0x182", - "0x29f", - "0x162", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "6080604052348015600f57600080fd5b5060405160e238038060e28339818101", - "604052810190602d91906052565b6000811415603a57600080fd5b506096565b", - "600081519050604c816082565b92915050565b60006020828403121560635760", - "0080fd5b6000606f84828501603f565b91505092915050565b60008190509190", - "50565b6089816078565b8114609357600080fd5b50565b603f8060a360003960", - "00f3fe6080604052600080fdfea2646970667358221220560e159a32ea605e9a", - "ee00bc872694a542a7b8138ecc1b3745625561482898cc64736f6c6343000804", - "0033000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 618, - "op": "DUP3", - "gas": 2999572, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x0", - "0x158", - "0x0", - "0x162", - "0x182", - "0x29f", - "0x162", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "6080604052348015600f57600080fd5b5060405160e238038060e28339818101", - "604052810190602d91906052565b6000811415603a57600080fd5b506096565b", - "600081519050604c816082565b92915050565b60006020828403121560635760", - "0080fd5b6000606f84828501603f565b91505092915050565b60008190509190", - "50565b6089816078565b8114609357600080fd5b50565b603f8060a360003960", - "00f3fe6080604052600080fdfea2646970667358221220560e159a32ea605e9a", - "ee00bc872694a542a7b8138ecc1b3745625561482898cc64736f6c6343000804", - "0033000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 619, - "op": "MSTORE", - "gas": 2999569, - "gasCost": 6, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x0", - "0x158", - "0x0", - "0x162", - "0x182", - "0x29f", - "0x162", - "0x0", - "0x0", - "0x162" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "6080604052348015600f57600080fd5b5060405160e238038060e28339818101", - "604052810190602d91906052565b6000811415603a57600080fd5b506096565b", - "600081519050604c816082565b92915050565b60006020828403121560635760", - "0080fd5b6000606f84828501603f565b91505092915050565b60008190509190", - "50565b6089816078565b8114609357600080fd5b50565b603f8060a360003960", - "00f3fe6080604052600080fdfea2646970667358221220560e159a32ea605e9a", - "ee00bc872694a542a7b8138ecc1b3745625561482898cc64736f6c6343000804", - "0033000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 620, - "op": "POP", - "gas": 2999563, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x0", - "0x158", - "0x0", - "0x162", - "0x182", - "0x29f", - "0x162", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "6080604052348015600f57600080fd5b5060405160e238038060e28339818101", - "604052810190602d91906052565b6000811415603a57600080fd5b506096565b", - "600081519050604c816082565b92915050565b60006020828403121560635760", - "0080fd5b6000606f84828501603f565b91505092915050565b60008190509190", - "50565b6089816078565b8114609357600080fd5b50565b603f8060a360003960", - "00f3fe6080604052600080fdfea2646970667358221220560e159a32ea605e9a", - "ee00bc872694a542a7b8138ecc1b3745625561482898cc64736f6c6343000804", - "0033000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 621, - "op": "POP", - "gas": 2999561, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x0", - "0x158", - "0x0", - "0x162", - "0x182", - "0x29f", - "0x162" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "6080604052348015600f57600080fd5b5060405160e238038060e28339818101", - "604052810190602d91906052565b6000811415603a57600080fd5b506096565b", - "600081519050604c816082565b92915050565b60006020828403121560635760", - "0080fd5b6000606f84828501603f565b91505092915050565b60008190509190", - "50565b6089816078565b8114609357600080fd5b50565b603f8060a360003960", - "00f3fe6080604052600080fdfea2646970667358221220560e159a32ea605e9a", - "ee00bc872694a542a7b8138ecc1b3745625561482898cc64736f6c6343000804", - "0033000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 622, - "op": "JUMP", - "gas": 2999559, - "gasCost": 8, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x0", - "0x158", - "0x0", - "0x162", - "0x182", - "0x29f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "6080604052348015600f57600080fd5b5060405160e238038060e28339818101", - "604052810190602d91906052565b6000811415603a57600080fd5b506096565b", - "600081519050604c816082565b92915050565b60006020828403121560635760", - "0080fd5b6000606f84828501603f565b91505092915050565b60008190509190", - "50565b6089816078565b8114609357600080fd5b50565b603f8060a360003960", - "00f3fe6080604052600080fdfea2646970667358221220560e159a32ea605e9a", - "ee00bc872694a542a7b8138ecc1b3745625561482898cc64736f6c6343000804", - "0033000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 671, - "op": "JUMPDEST", - "gas": 2999551, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x0", - "0x158", - "0x0", - "0x162", - "0x182" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "6080604052348015600f57600080fd5b5060405160e238038060e28339818101", - "604052810190602d91906052565b6000811415603a57600080fd5b506096565b", - "600081519050604c816082565b92915050565b60006020828403121560635760", - "0080fd5b6000606f84828501603f565b91505092915050565b60008190509190", - "50565b6089816078565b8114609357600080fd5b50565b603f8060a360003960", - "00f3fe6080604052600080fdfea2646970667358221220560e159a32ea605e9a", - "ee00bc872694a542a7b8138ecc1b3745625561482898cc64736f6c6343000804", - "0033000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 672, - "op": "SWAP3", - "gas": 2999550, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x0", - "0x158", - "0x0", - "0x162", - "0x182" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "6080604052348015600f57600080fd5b5060405160e238038060e28339818101", - "604052810190602d91906052565b6000811415603a57600080fd5b506096565b", - "600081519050604c816082565b92915050565b60006020828403121560635760", - "0080fd5b6000606f84828501603f565b91505092915050565b60008190509190", - "50565b6089816078565b8114609357600080fd5b50565b603f8060a360003960", - "00f3fe6080604052600080fdfea2646970667358221220560e159a32ea605e9a", - "ee00bc872694a542a7b8138ecc1b3745625561482898cc64736f6c6343000804", - "0033000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 673, - "op": "SWAP2", - "gas": 2999547, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x0", - "0x182", - "0x0", - "0x162", - "0x158" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "6080604052348015600f57600080fd5b5060405160e238038060e28339818101", - "604052810190602d91906052565b6000811415603a57600080fd5b506096565b", - "600081519050604c816082565b92915050565b60006020828403121560635760", - "0080fd5b6000606f84828501603f565b91505092915050565b60008190509190", - "50565b6089816078565b8114609357600080fd5b50565b603f8060a360003960", - "00f3fe6080604052600080fdfea2646970667358221220560e159a32ea605e9a", - "ee00bc872694a542a7b8138ecc1b3745625561482898cc64736f6c6343000804", - "0033000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 674, - "op": "POP", - "gas": 2999544, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x0", - "0x182", - "0x158", - "0x162", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "6080604052348015600f57600080fd5b5060405160e238038060e28339818101", - "604052810190602d91906052565b6000811415603a57600080fd5b506096565b", - "600081519050604c816082565b92915050565b60006020828403121560635760", - "0080fd5b6000606f84828501603f565b91505092915050565b60008190509190", - "50565b6089816078565b8114609357600080fd5b50565b603f8060a360003960", - "00f3fe6080604052600080fdfea2646970667358221220560e159a32ea605e9a", - "ee00bc872694a542a7b8138ecc1b3745625561482898cc64736f6c6343000804", - "0033000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 675, - "op": "POP", - "gas": 2999542, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x0", - "0x182", - "0x158", - "0x162" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "6080604052348015600f57600080fd5b5060405160e238038060e28339818101", - "604052810190602d91906052565b6000811415603a57600080fd5b506096565b", - "600081519050604c816082565b92915050565b60006020828403121560635760", - "0080fd5b6000606f84828501603f565b91505092915050565b60008190509190", - "50565b6089816078565b8114609357600080fd5b50565b603f8060a360003960", - "00f3fe6080604052600080fdfea2646970667358221220560e159a32ea605e9a", - "ee00bc872694a542a7b8138ecc1b3745625561482898cc64736f6c6343000804", - "0033000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 676, - "op": "JUMP", - "gas": 2999540, - "gasCost": 8, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x0", - "0x182", - "0x158" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "6080604052348015600f57600080fd5b5060405160e238038060e28339818101", - "604052810190602d91906052565b6000811415603a57600080fd5b506096565b", - "600081519050604c816082565b92915050565b60006020828403121560635760", - "0080fd5b6000606f84828501603f565b91505092915050565b60008190509190", - "50565b6089816078565b8114609357600080fd5b50565b603f8060a360003960", - "00f3fe6080604052600080fdfea2646970667358221220560e159a32ea605e9a", - "ee00bc872694a542a7b8138ecc1b3745625561482898cc64736f6c6343000804", - "0033000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 344, - "op": "JUMPDEST", - "gas": 2999532, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x0", - "0x182" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "6080604052348015600f57600080fd5b5060405160e238038060e28339818101", - "604052810190602d91906052565b6000811415603a57600080fd5b506096565b", - "600081519050604c816082565b92915050565b60006020828403121560635760", - "0080fd5b6000606f84828501603f565b91505092915050565b60008190509190", - "50565b6089816078565b8114609357600080fd5b50565b603f8060a360003960", - "00f3fe6080604052600080fdfea2646970667358221220560e159a32ea605e9a", - "ee00bc872694a542a7b8138ecc1b3745625561482898cc64736f6c6343000804", - "0033000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 345, - "op": "PUSH1", - "gas": 2999531, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x0", - "0x182" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "6080604052348015600f57600080fd5b5060405160e238038060e28339818101", - "604052810190602d91906052565b6000811415603a57600080fd5b506096565b", - "600081519050604c816082565b92915050565b60006020828403121560635760", - "0080fd5b6000606f84828501603f565b91505092915050565b60008190509190", - "50565b6089816078565b8114609357600080fd5b50565b603f8060a360003960", - "00f3fe6080604052600080fdfea2646970667358221220560e159a32ea605e9a", - "ee00bc872694a542a7b8138ecc1b3745625561482898cc64736f6c6343000804", - "0033000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 347, - "op": "MLOAD", - "gas": 2999528, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x0", - "0x182", - "0x40" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "6080604052348015600f57600080fd5b5060405160e238038060e28339818101", - "604052810190602d91906052565b6000811415603a57600080fd5b506096565b", - "600081519050604c816082565b92915050565b60006020828403121560635760", - "0080fd5b6000606f84828501603f565b91505092915050565b60008190509190", - "50565b6089816078565b8114609357600080fd5b50565b603f8060a360003960", - "00f3fe6080604052600080fdfea2646970667358221220560e159a32ea605e9a", - "ee00bc872694a542a7b8138ecc1b3745625561482898cc64736f6c6343000804", - "0033000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 348, - "op": "DUP1", - "gas": 2999525, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x0", - "0x182", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "6080604052348015600f57600080fd5b5060405160e238038060e28339818101", - "604052810190602d91906052565b6000811415603a57600080fd5b506096565b", - "600081519050604c816082565b92915050565b60006020828403121560635760", - "0080fd5b6000606f84828501603f565b91505092915050565b60008190509190", - "50565b6089816078565b8114609357600080fd5b50565b603f8060a360003960", - "00f3fe6080604052600080fdfea2646970667358221220560e159a32ea605e9a", - "ee00bc872694a542a7b8138ecc1b3745625561482898cc64736f6c6343000804", - "0033000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 349, - "op": "SWAP2", - "gas": 2999522, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x0", - "0x182", - "0x80", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "6080604052348015600f57600080fd5b5060405160e238038060e28339818101", - "604052810190602d91906052565b6000811415603a57600080fd5b506096565b", - "600081519050604c816082565b92915050565b60006020828403121560635760", - "0080fd5b6000606f84828501603f565b91505092915050565b60008190509190", - "50565b6089816078565b8114609357600080fd5b50565b603f8060a360003960", - "00f3fe6080604052600080fdfea2646970667358221220560e159a32ea605e9a", - "ee00bc872694a542a7b8138ecc1b3745625561482898cc64736f6c6343000804", - "0033000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 350, - "op": "SUB", - "gas": 2999519, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x0", - "0x80", - "0x80", - "0x182" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "6080604052348015600f57600080fd5b5060405160e238038060e28339818101", - "604052810190602d91906052565b6000811415603a57600080fd5b506096565b", - "600081519050604c816082565b92915050565b60006020828403121560635760", - "0080fd5b6000606f84828501603f565b91505092915050565b60008190509190", - "50565b6089816078565b8114609357600080fd5b50565b603f8060a360003960", - "00f3fe6080604052600080fdfea2646970667358221220560e159a32ea605e9a", - "ee00bc872694a542a7b8138ecc1b3745625561482898cc64736f6c6343000804", - "0033000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 351, - "op": "SWAP1", - "gas": 2999516, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x0", - "0x80", - "0x102" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "6080604052348015600f57600080fd5b5060405160e238038060e28339818101", - "604052810190602d91906052565b6000811415603a57600080fd5b506096565b", - "600081519050604c816082565b92915050565b60006020828403121560635760", - "0080fd5b6000606f84828501603f565b91505092915050565b60008190509190", - "50565b6089816078565b8114609357600080fd5b50565b603f8060a360003960", - "00f3fe6080604052600080fdfea2646970667358221220560e159a32ea605e9a", - "ee00bc872694a542a7b8138ecc1b3745625561482898cc64736f6c6343000804", - "0033000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 352, - "op": "PUSH1", - "gas": 2999513, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x0", - "0x102", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "6080604052348015600f57600080fd5b5060405160e238038060e28339818101", - "604052810190602d91906052565b6000811415603a57600080fd5b506096565b", - "600081519050604c816082565b92915050565b60006020828403121560635760", - "0080fd5b6000606f84828501603f565b91505092915050565b60008190509190", - "50565b6089816078565b8114609357600080fd5b50565b603f8060a360003960", - "00f3fe6080604052600080fdfea2646970667358221220560e159a32ea605e9a", - "ee00bc872694a542a7b8138ecc1b3745625561482898cc64736f6c6343000804", - "0033000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 354, - "op": "CREATE", - "gas": 2999510, - "gasCost": 32000, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x0", - "0x102", - "0x80", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "6080604052348015600f57600080fd5b5060405160e238038060e28339818101", - "604052810190602d91906052565b6000811415603a57600080fd5b506096565b", - "600081519050604c816082565b92915050565b60006020828403121560635760", - "0080fd5b6000606f84828501603f565b91505092915050565b60008190509190", - "50565b6089816078565b8114609357600080fd5b50565b603f8060a360003960", - "00f3fe6080604052600080fdfea2646970667358221220560e159a32ea605e9a", - "ee00bc872694a542a7b8138ecc1b3745625561482898cc64736f6c6343000804", - "0033000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "extraData": { - "callFailed": true, - "proofList": [ - { - "address": "0x1933a003498bb0419206ec0379243a6720c2e5ce", - "nonce": 1, - "balance": "0x0", - "codeHash": "0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470" - }, - { - "address": "0x1933a003498bb0419206ec0379243a6720c2e5ce", - "nonce": 0, - "balance": "0x0", - "codeHash": "0x0000000000000000000000000000000000000000000000000000000000000000" - } - ] - } - }, - { - "pc": 0, - "op": "PUSH1", - "gas": 2921143, - "gasCost": 3, - "depth": 2 - }, - { - "pc": 2, - "op": "PUSH1", - "gas": 2921140, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x80" - ] - }, - { - "pc": 4, - "op": "MSTORE", - "gas": 2921137, - "gasCost": 12, - "depth": 2, - "stack": [ - "0x80", - "0x40" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 5, - "op": "CALLVALUE", - "gas": 2921125, - "gasCost": 2, - "depth": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 6, - "op": "DUP1", - "gas": 2921123, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 7, - "op": "ISZERO", - "gas": 2921120, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 8, - "op": "PUSH1", - "gas": 2921117, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x0", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 10, - "op": "JUMPI", - "gas": 2921114, - "gasCost": 10, - "depth": 2, - "stack": [ - "0x0", - "0x1", - "0xf" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 15, - "op": "JUMPDEST", - "gas": 2921104, - "gasCost": 1, - "depth": 2, - "stack": [ - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 16, - "op": "POP", - "gas": 2921103, - "gasCost": 2, - "depth": 2, - "stack": [ - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 17, - "op": "PUSH1", - "gas": 2921101, - "gasCost": 3, - "depth": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 19, - "op": "MLOAD", - "gas": 2921098, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x40" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 20, - "op": "PUSH1", - "gas": 2921095, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 22, - "op": "CODESIZE", - "gas": 2921092, - "gasCost": 2, - "depth": 2, - "stack": [ - "0x80", - "0xe2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 23, - "op": "SUB", - "gas": 2921090, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x80", - "0xe2", - "0x102" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 24, - "op": "DUP1", - "gas": 2921087, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x80", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 25, - "op": "PUSH1", - "gas": 2921084, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x80", - "0x20", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 27, - "op": "DUP4", - "gas": 2921081, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x80", - "0x20", - "0x20", - "0xe2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 28, - "op": "CODECOPY", - "gas": 2921078, - "gasCost": 12, - "depth": 2, - "stack": [ - "0x80", - "0x20", - "0x20", - "0xe2", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 29, - "op": "DUP2", - "gas": 2921066, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x80", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 30, - "op": "DUP2", - "gas": 2921063, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x80", - "0x20", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 31, - "op": "ADD", - "gas": 2921060, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x80", - "0x20", - "0x80", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 32, - "op": "PUSH1", - "gas": 2921057, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x80", - "0x20", - "0xa0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 34, - "op": "MSTORE", - "gas": 2921054, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x80", - "0x20", - "0xa0", - "0x40" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 35, - "op": "DUP2", - "gas": 2921051, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x80", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 36, - "op": "ADD", - "gas": 2921048, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x80", - "0x20", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 37, - "op": "SWAP1", - "gas": 2921045, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x80", - "0xa0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 38, - "op": "PUSH1", - "gas": 2921042, - "gasCost": 3, - "depth": 2, - "stack": [ - "0xa0", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 40, - "op": "SWAP2", - "gas": 2921039, - "gasCost": 3, - "depth": 2, - "stack": [ - "0xa0", - "0x80", - "0x2d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 41, - "op": "SWAP1", - "gas": 2921036, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x2d", - "0x80", - "0xa0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 42, - "op": "PUSH1", - "gas": 2921033, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x2d", - "0xa0", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 44, - "op": "JUMP", - "gas": 2921030, - "gasCost": 8, - "depth": 2, - "stack": [ - "0x2d", - "0xa0", - "0x80", - "0x52" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 82, - "op": "JUMPDEST", - "gas": 2921022, - "gasCost": 1, - "depth": 2, - "stack": [ - "0x2d", - "0xa0", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 83, - "op": "PUSH1", - "gas": 2921021, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x2d", - "0xa0", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 85, - "op": "PUSH1", - "gas": 2921018, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x2d", - "0xa0", - "0x80", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 87, - "op": "DUP3", - "gas": 2921015, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x2d", - "0xa0", - "0x80", - "0x0", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 88, - "op": "DUP5", - "gas": 2921012, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x2d", - "0xa0", - "0x80", - "0x0", - "0x20", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 89, - "op": "SUB", - "gas": 2921009, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x2d", - "0xa0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xa0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 90, - "op": "SLT", - "gas": 2921006, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x2d", - "0xa0", - "0x80", - "0x0", - "0x20", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 91, - "op": "ISZERO", - "gas": 2921003, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x2d", - "0xa0", - "0x80", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 92, - "op": "PUSH1", - "gas": 2921000, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x2d", - "0xa0", - "0x80", - "0x0", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 94, - "op": "JUMPI", - "gas": 2920997, - "gasCost": 10, - "depth": 2, - "stack": [ - "0x2d", - "0xa0", - "0x80", - "0x0", - "0x1", - "0x63" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 99, - "op": "JUMPDEST", - "gas": 2920987, - "gasCost": 1, - "depth": 2, - "stack": [ - "0x2d", - "0xa0", - "0x80", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 100, - "op": "PUSH1", - "gas": 2920986, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x2d", - "0xa0", - "0x80", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 102, - "op": "PUSH1", - "gas": 2920983, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x2d", - "0xa0", - "0x80", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 104, - "op": "DUP5", - "gas": 2920980, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x2d", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x6f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 105, - "op": "DUP3", - "gas": 2920977, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x2d", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x6f", - "0xa0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 106, - "op": "DUP6", - "gas": 2920974, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x2d", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x6f", - "0xa0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 107, - "op": "ADD", - "gas": 2920971, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x2d", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x6f", - "0xa0", - "0x0", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 108, - "op": "PUSH1", - "gas": 2920968, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x2d", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x6f", - "0xa0", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 110, - "op": "JUMP", - "gas": 2920965, - "gasCost": 8, - "depth": 2, - "stack": [ - "0x2d", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x6f", - "0xa0", - "0x80", - "0x3f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 63, - "op": "JUMPDEST", - "gas": 2920957, - "gasCost": 1, - "depth": 2, - "stack": [ - "0x2d", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x6f", - "0xa0", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 64, - "op": "PUSH1", - "gas": 2920956, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x2d", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x6f", - "0xa0", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 66, - "op": "DUP2", - "gas": 2920953, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x2d", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x6f", - "0xa0", - "0x80", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 67, - "op": "MLOAD", - "gas": 2920950, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x2d", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x6f", - "0xa0", - "0x80", - "0x0", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 68, - "op": "SWAP1", - "gas": 2920947, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x2d", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x6f", - "0xa0", - "0x80", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 69, - "op": "POP", - "gas": 2920944, - "gasCost": 2, - "depth": 2, - "stack": [ - "0x2d", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x6f", - "0xa0", - "0x80", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 70, - "op": "PUSH1", - "gas": 2920942, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x2d", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x6f", - "0xa0", - "0x80", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 72, - "op": "DUP2", - "gas": 2920939, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x2d", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x6f", - "0xa0", - "0x80", - "0x0", - "0x4c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 73, - "op": "PUSH1", - "gas": 2920936, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x2d", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x6f", - "0xa0", - "0x80", - "0x0", - "0x4c", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 75, - "op": "JUMP", - "gas": 2920933, - "gasCost": 8, - "depth": 2, - "stack": [ - "0x2d", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x6f", - "0xa0", - "0x80", - "0x0", - "0x4c", - "0x0", - "0x82" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 130, - "op": "JUMPDEST", - "gas": 2920925, - "gasCost": 1, - "depth": 2, - "stack": [ - "0x2d", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x6f", - "0xa0", - "0x80", - "0x0", - "0x4c", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 131, - "op": "PUSH1", - "gas": 2920924, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x2d", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x6f", - "0xa0", - "0x80", - "0x0", - "0x4c", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 133, - "op": "DUP2", - "gas": 2920921, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x2d", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x6f", - "0xa0", - "0x80", - "0x0", - "0x4c", - "0x0", - "0x89" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 134, - "op": "PUSH1", - "gas": 2920918, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x2d", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x6f", - "0xa0", - "0x80", - "0x0", - "0x4c", - "0x0", - "0x89", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 136, - "op": "JUMP", - "gas": 2920915, - "gasCost": 8, - "depth": 2, - "stack": [ - "0x2d", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x6f", - "0xa0", - "0x80", - "0x0", - "0x4c", - "0x0", - "0x89", - "0x0", - "0x78" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 120, - "op": "JUMPDEST", - "gas": 2920907, - "gasCost": 1, - "depth": 2, - "stack": [ - "0x2d", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x6f", - "0xa0", - "0x80", - "0x0", - "0x4c", - "0x0", - "0x89", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 121, - "op": "PUSH1", - "gas": 2920906, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x2d", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x6f", - "0xa0", - "0x80", - "0x0", - "0x4c", - "0x0", - "0x89", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 123, - "op": "DUP2", - "gas": 2920903, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x2d", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x6f", - "0xa0", - "0x80", - "0x0", - "0x4c", - "0x0", - "0x89", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 124, - "op": "SWAP1", - "gas": 2920900, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x2d", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x6f", - "0xa0", - "0x80", - "0x0", - "0x4c", - "0x0", - "0x89", - "0x0", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 125, - "op": "POP", - "gas": 2920897, - "gasCost": 2, - "depth": 2, - "stack": [ - "0x2d", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x6f", - "0xa0", - "0x80", - "0x0", - "0x4c", - "0x0", - "0x89", - "0x0", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 126, - "op": "SWAP2", - "gas": 2920895, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x2d", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x6f", - "0xa0", - "0x80", - "0x0", - "0x4c", - "0x0", - "0x89", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 127, - "op": "SWAP1", - "gas": 2920892, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x2d", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x6f", - "0xa0", - "0x80", - "0x0", - "0x4c", - "0x0", - "0x0", - "0x0", - "0x89" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 128, - "op": "POP", - "gas": 2920889, - "gasCost": 2, - "depth": 2, - "stack": [ - "0x2d", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x6f", - "0xa0", - "0x80", - "0x0", - "0x4c", - "0x0", - "0x0", - "0x89", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 129, - "op": "JUMP", - "gas": 2920887, - "gasCost": 8, - "depth": 2, - "stack": [ - "0x2d", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x6f", - "0xa0", - "0x80", - "0x0", - "0x4c", - "0x0", - "0x0", - "0x89" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 137, - "op": "JUMPDEST", - "gas": 2920879, - "gasCost": 1, - "depth": 2, - "stack": [ - "0x2d", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x6f", - "0xa0", - "0x80", - "0x0", - "0x4c", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 138, - "op": "DUP2", - "gas": 2920878, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x2d", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x6f", - "0xa0", - "0x80", - "0x0", - "0x4c", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 139, - "op": "EQ", - "gas": 2920875, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x2d", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x6f", - "0xa0", - "0x80", - "0x0", - "0x4c", - "0x0", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 140, - "op": "PUSH1", - "gas": 2920872, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x2d", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x6f", - "0xa0", - "0x80", - "0x0", - "0x4c", - "0x0", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 142, - "op": "JUMPI", - "gas": 2920869, - "gasCost": 10, - "depth": 2, - "stack": [ - "0x2d", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x6f", - "0xa0", - "0x80", - "0x0", - "0x4c", - "0x0", - "0x1", - "0x93" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 147, - "op": "JUMPDEST", - "gas": 2920859, - "gasCost": 1, - "depth": 2, - "stack": [ - "0x2d", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x6f", - "0xa0", - "0x80", - "0x0", - "0x4c", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 148, - "op": "POP", - "gas": 2920858, - "gasCost": 2, - "depth": 2, - "stack": [ - "0x2d", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x6f", - "0xa0", - "0x80", - "0x0", - "0x4c", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 149, - "op": "JUMP", - "gas": 2920856, - "gasCost": 8, - "depth": 2, - "stack": [ - "0x2d", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x6f", - "0xa0", - "0x80", - "0x0", - "0x4c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 76, - "op": "JUMPDEST", - "gas": 2920848, - "gasCost": 1, - "depth": 2, - "stack": [ - "0x2d", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x6f", - "0xa0", - "0x80", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 77, - "op": "SWAP3", - "gas": 2920847, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x2d", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x6f", - "0xa0", - "0x80", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 78, - "op": "SWAP2", - "gas": 2920844, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x2d", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x0", - "0xa0", - "0x80", - "0x6f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 79, - "op": "POP", - "gas": 2920841, - "gasCost": 2, - "depth": 2, - "stack": [ - "0x2d", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x0", - "0x6f", - "0x80", - "0xa0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 80, - "op": "POP", - "gas": 2920839, - "gasCost": 2, - "depth": 2, - "stack": [ - "0x2d", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x0", - "0x6f", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 81, - "op": "JUMP", - "gas": 2920837, - "gasCost": 8, - "depth": 2, - "stack": [ - "0x2d", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x0", - "0x6f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 111, - "op": "JUMPDEST", - "gas": 2920829, - "gasCost": 1, - "depth": 2, - "stack": [ - "0x2d", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 112, - "op": "SWAP2", - "gas": 2920828, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x2d", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 113, - "op": "POP", - "gas": 2920825, - "gasCost": 2, - "depth": 2, - "stack": [ - "0x2d", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 114, - "op": "POP", - "gas": 2920823, - "gasCost": 2, - "depth": 2, - "stack": [ - "0x2d", - "0xa0", - "0x80", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 115, - "op": "SWAP3", - "gas": 2920821, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x2d", - "0xa0", - "0x80", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 116, - "op": "SWAP2", - "gas": 2920818, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x0", - "0xa0", - "0x80", - "0x2d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 117, - "op": "POP", - "gas": 2920815, - "gasCost": 2, - "depth": 2, - "stack": [ - "0x0", - "0x2d", - "0x80", - "0xa0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 118, - "op": "POP", - "gas": 2920813, - "gasCost": 2, - "depth": 2, - "stack": [ - "0x0", - "0x2d", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 119, - "op": "JUMP", - "gas": 2920811, - "gasCost": 8, - "depth": 2, - "stack": [ - "0x0", - "0x2d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 45, - "op": "JUMPDEST", - "gas": 2920803, - "gasCost": 1, - "depth": 2, - "stack": [ - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 46, - "op": "PUSH1", - "gas": 2920802, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 48, - "op": "DUP2", - "gas": 2920799, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 49, - "op": "EQ", - "gas": 2920796, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x0", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 50, - "op": "ISZERO", - "gas": 2920793, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x0", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 51, - "op": "PUSH1", - "gas": 2920790, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 53, - "op": "JUMPI", - "gas": 2920787, - "gasCost": 10, - "depth": 2, - "stack": [ - "0x0", - "0x0", - "0x3a" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 54, - "op": "PUSH1", - "gas": 2920777, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 56, - "op": "DUP1", - "gas": 2920774, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 57, - "op": "REVERT", - "gas": 2920771, - "gasCost": 0, - "depth": 2, - "stack": [ - "0x0", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 355, - "op": "DUP1", - "gas": 2967138, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "6080604052348015600f57600080fd5b5060405160e238038060e28339818101", - "604052810190602d91906052565b6000811415603a57600080fd5b506096565b", - "600081519050604c816082565b92915050565b60006020828403121560635760", - "0080fd5b6000606f84828501603f565b91505092915050565b60008190509190", - "50565b6089816078565b8114609357600080fd5b50565b603f8060a360003960", - "00f3fe6080604052600080fdfea2646970667358221220560e159a32ea605e9a", - "ee00bc872694a542a7b8138ecc1b3745625561482898cc64736f6c6343000804", - "0033000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 356, - "op": "ISZERO", - "gas": 2967135, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x0", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "6080604052348015600f57600080fd5b5060405160e238038060e28339818101", - "604052810190602d91906052565b6000811415603a57600080fd5b506096565b", - "600081519050604c816082565b92915050565b60006020828403121560635760", - "0080fd5b6000606f84828501603f565b91505092915050565b60008190509190", - "50565b6089816078565b8114609357600080fd5b50565b603f8060a360003960", - "00f3fe6080604052600080fdfea2646970667358221220560e159a32ea605e9a", - "ee00bc872694a542a7b8138ecc1b3745625561482898cc64736f6c6343000804", - "0033000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 357, - "op": "PUSH2", - "gas": 2967132, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x0", - "0x0", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "6080604052348015600f57600080fd5b5060405160e238038060e28339818101", - "604052810190602d91906052565b6000811415603a57600080fd5b506096565b", - "600081519050604c816082565b92915050565b60006020828403121560635760", - "0080fd5b6000606f84828501603f565b91505092915050565b60008190509190", - "50565b6089816078565b8114609357600080fd5b50565b603f8060a360003960", - "00f3fe6080604052600080fdfea2646970667358221220560e159a32ea605e9a", - "ee00bc872694a542a7b8138ecc1b3745625561482898cc64736f6c6343000804", - "0033000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 360, - "op": "JUMPI", - "gas": 2967129, - "gasCost": 10, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x0", - "0x0", - "0x1", - "0x16b" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "6080604052348015600f57600080fd5b5060405160e238038060e28339818101", - "604052810190602d91906052565b6000811415603a57600080fd5b506096565b", - "600081519050604c816082565b92915050565b60006020828403121560635760", - "0080fd5b6000606f84828501603f565b91505092915050565b60008190509190", - "50565b6089816078565b8114609357600080fd5b50565b603f8060a360003960", - "00f3fe6080604052600080fdfea2646970667358221220560e159a32ea605e9a", - "ee00bc872694a542a7b8138ecc1b3745625561482898cc64736f6c6343000804", - "0033000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 363, - "op": "JUMPDEST", - "gas": 2967119, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "6080604052348015600f57600080fd5b5060405160e238038060e28339818101", - "604052810190602d91906052565b6000811415603a57600080fd5b506096565b", - "600081519050604c816082565b92915050565b60006020828403121560635760", - "0080fd5b6000606f84828501603f565b91505092915050565b60008190509190", - "50565b6089816078565b8114609357600080fd5b50565b603f8060a360003960", - "00f3fe6080604052600080fdfea2646970667358221220560e159a32ea605e9a", - "ee00bc872694a542a7b8138ecc1b3745625561482898cc64736f6c6343000804", - "0033000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 364, - "op": "PUSH2", - "gas": 2967118, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "6080604052348015600f57600080fd5b5060405160e238038060e28339818101", - "604052810190602d91906052565b6000811415603a57600080fd5b506096565b", - "600081519050604c816082565b92915050565b60006020828403121560635760", - "0080fd5b6000606f84828501603f565b91505092915050565b60008190509190", - "50565b6089816078565b8114609357600080fd5b50565b603f8060a360003960", - "00f3fe6080604052600080fdfea2646970667358221220560e159a32ea605e9a", - "ee00bc872694a542a7b8138ecc1b3745625561482898cc64736f6c6343000804", - "0033000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 367, - "op": "JUMPI", - "gas": 2967115, - "gasCost": 10, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x0", - "0x0", - "0x1b5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "6080604052348015600f57600080fd5b5060405160e238038060e28339818101", - "604052810190602d91906052565b6000811415603a57600080fd5b506096565b", - "600081519050604c816082565b92915050565b60006020828403121560635760", - "0080fd5b6000606f84828501603f565b91505092915050565b60008190509190", - "50565b6089816078565b8114609357600080fd5b50565b603f8060a360003960", - "00f3fe6080604052600080fdfea2646970667358221220560e159a32ea605e9a", - "ee00bc872694a542a7b8138ecc1b3745625561482898cc64736f6c6343000804", - "0033000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 368, - "op": "PUSH1", - "gas": 2967105, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "6080604052348015600f57600080fd5b5060405160e238038060e28339818101", - "604052810190602d91906052565b6000811415603a57600080fd5b506096565b", - "600081519050604c816082565b92915050565b60006020828403121560635760", - "0080fd5b6000606f84828501603f565b91505092915050565b60008190509190", - "50565b6089816078565b8114609357600080fd5b50565b603f8060a360003960", - "00f3fe6080604052600080fdfea2646970667358221220560e159a32ea605e9a", - "ee00bc872694a542a7b8138ecc1b3745625561482898cc64736f6c6343000804", - "0033000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 370, - "op": "DUP1", - "gas": 2967102, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "6080604052348015600f57600080fd5b5060405160e238038060e28339818101", - "604052810190602d91906052565b6000811415603a57600080fd5b506096565b", - "600081519050604c816082565b92915050565b60006020828403121560635760", - "0080fd5b6000606f84828501603f565b91505092915050565b60008190509190", - "50565b6089816078565b8114609357600080fd5b50565b603f8060a360003960", - "00f3fe6080604052600080fdfea2646970667358221220560e159a32ea605e9a", - "ee00bc872694a542a7b8138ecc1b3745625561482898cc64736f6c6343000804", - "0033000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 371, - "op": "PUSH1", - "gas": 2967099, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x0", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "6080604052348015600f57600080fd5b5060405160e238038060e28339818101", - "604052810190602d91906052565b6000811415603a57600080fd5b506096565b", - "600081519050604c816082565b92915050565b60006020828403121560635760", - "0080fd5b6000606f84828501603f565b91505092915050565b60008190509190", - "50565b6089816078565b8114609357600080fd5b50565b603f8060a360003960", - "00f3fe6080604052600080fdfea2646970667358221220560e159a32ea605e9a", - "ee00bc872694a542a7b8138ecc1b3745625561482898cc64736f6c6343000804", - "0033000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 373, - "op": "PUSH2", - "gas": 2967096, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "6080604052348015600f57600080fd5b5060405160e238038060e28339818101", - "604052810190602d91906052565b6000811415603a57600080fd5b506096565b", - "600081519050604c816082565b92915050565b60006020828403121560635760", - "0080fd5b6000606f84828501603f565b91505092915050565b60008190509190", - "50565b6089816078565b8114609357600080fd5b50565b603f8060a360003960", - "00f3fe6080604052600080fdfea2646970667358221220560e159a32ea605e9a", - "ee00bc872694a542a7b8138ecc1b3745625561482898cc64736f6c6343000804", - "0033000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 376, - "op": "EXP", - "gas": 2967093, - "gasCost": 10, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x0", - "0x0", - "0x0", - "0x0", - "0x100" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "6080604052348015600f57600080fd5b5060405160e238038060e28339818101", - "604052810190602d91906052565b6000811415603a57600080fd5b506096565b", - "600081519050604c816082565b92915050565b60006020828403121560635760", - "0080fd5b6000606f84828501603f565b91505092915050565b60008190509190", - "50565b6089816078565b8114609357600080fd5b50565b603f8060a360003960", - "00f3fe6080604052600080fdfea2646970667358221220560e159a32ea605e9a", - "ee00bc872694a542a7b8138ecc1b3745625561482898cc64736f6c6343000804", - "0033000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 377, - "op": "DUP2", - "gas": 2967083, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x0", - "0x0", - "0x0", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "6080604052348015600f57600080fd5b5060405160e238038060e28339818101", - "604052810190602d91906052565b6000811415603a57600080fd5b506096565b", - "600081519050604c816082565b92915050565b60006020828403121560635760", - "0080fd5b6000606f84828501603f565b91505092915050565b60008190509190", - "50565b6089816078565b8114609357600080fd5b50565b603f8060a360003960", - "00f3fe6080604052600080fdfea2646970667358221220560e159a32ea605e9a", - "ee00bc872694a542a7b8138ecc1b3745625561482898cc64736f6c6343000804", - "0033000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 378, - "op": "SLOAD", - "gas": 2967080, - "gasCost": 2100, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x0", - "0x0", - "0x0", - "0x1", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "6080604052348015600f57600080fd5b5060405160e238038060e28339818101", - "604052810190602d91906052565b6000811415603a57600080fd5b506096565b", - "600081519050604c816082565b92915050565b60006020828403121560635760", - "0080fd5b6000606f84828501603f565b91505092915050565b60008190509190", - "50565b6089816078565b8114609357600080fd5b50565b603f8060a360003960", - "00f3fe6080604052600080fdfea2646970667358221220560e159a32ea605e9a", - "ee00bc872694a542a7b8138ecc1b3745625561482898cc64736f6c6343000804", - "0033000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0x0000000000000000000000000000000000000000000000000000000000000000": "0x00000000000000000000000075d0d116b2f8a249a427bc68aac7818684e25319" - }, - "extraData": { - "proofList": [ - { - "address": "0x33b5ddf9b5e82bb958eb885f5f241e783a113f18", - "nonce": 3, - "balance": "0x0", - "codeHash": "0xcc0a77f6e063b4b62eb7d9ed6f427cf687d8d0071d751850cfe5d136bc60d3ab", - "storage": { - "key": "0x0000000000000000000000000000000000000000000000000000000000000000", - "value": "0x00000000000000000000000075d0d116b2f8a249a427bc68aac7818684e25319" - } - } - ] - } - }, - { - "pc": 379, - "op": "DUP2", - "gas": 2964980, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x0", - "0x0", - "0x0", - "0x1", - "0x75d0d116b2f8a249a427bc68aac7818684e25319" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "6080604052348015600f57600080fd5b5060405160e238038060e28339818101", - "604052810190602d91906052565b6000811415603a57600080fd5b506096565b", - "600081519050604c816082565b92915050565b60006020828403121560635760", - "0080fd5b6000606f84828501603f565b91505092915050565b60008190509190", - "50565b6089816078565b8114609357600080fd5b50565b603f8060a360003960", - "00f3fe6080604052600080fdfea2646970667358221220560e159a32ea605e9a", - "ee00bc872694a542a7b8138ecc1b3745625561482898cc64736f6c6343000804", - "0033000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 380, - "op": "PUSH20", - "gas": 2964977, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x0", - "0x0", - "0x0", - "0x1", - "0x75d0d116b2f8a249a427bc68aac7818684e25319", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "6080604052348015600f57600080fd5b5060405160e238038060e28339818101", - "604052810190602d91906052565b6000811415603a57600080fd5b506096565b", - "600081519050604c816082565b92915050565b60006020828403121560635760", - "0080fd5b6000606f84828501603f565b91505092915050565b60008190509190", - "50565b6089816078565b8114609357600080fd5b50565b603f8060a360003960", - "00f3fe6080604052600080fdfea2646970667358221220560e159a32ea605e9a", - "ee00bc872694a542a7b8138ecc1b3745625561482898cc64736f6c6343000804", - "0033000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 401, - "op": "MUL", - "gas": 2964974, - "gasCost": 5, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x0", - "0x0", - "0x0", - "0x1", - "0x75d0d116b2f8a249a427bc68aac7818684e25319", - "0x1", - "0xffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "6080604052348015600f57600080fd5b5060405160e238038060e28339818101", - "604052810190602d91906052565b6000811415603a57600080fd5b506096565b", - "600081519050604c816082565b92915050565b60006020828403121560635760", - "0080fd5b6000606f84828501603f565b91505092915050565b60008190509190", - "50565b6089816078565b8114609357600080fd5b50565b603f8060a360003960", - "00f3fe6080604052600080fdfea2646970667358221220560e159a32ea605e9a", - "ee00bc872694a542a7b8138ecc1b3745625561482898cc64736f6c6343000804", - "0033000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 402, - "op": "NOT", - "gas": 2964969, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x0", - "0x0", - "0x0", - "0x1", - "0x75d0d116b2f8a249a427bc68aac7818684e25319", - "0xffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "6080604052348015600f57600080fd5b5060405160e238038060e28339818101", - "604052810190602d91906052565b6000811415603a57600080fd5b506096565b", - "600081519050604c816082565b92915050565b60006020828403121560635760", - "0080fd5b6000606f84828501603f565b91505092915050565b60008190509190", - "50565b6089816078565b8114609357600080fd5b50565b603f8060a360003960", - "00f3fe6080604052600080fdfea2646970667358221220560e159a32ea605e9a", - "ee00bc872694a542a7b8138ecc1b3745625561482898cc64736f6c6343000804", - "0033000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 403, - "op": "AND", - "gas": 2964966, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x0", - "0x0", - "0x0", - "0x1", - "0x75d0d116b2f8a249a427bc68aac7818684e25319", - "0xffffffffffffffffffffffff0000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "6080604052348015600f57600080fd5b5060405160e238038060e28339818101", - "604052810190602d91906052565b6000811415603a57600080fd5b506096565b", - "600081519050604c816082565b92915050565b60006020828403121560635760", - "0080fd5b6000606f84828501603f565b91505092915050565b60008190509190", - "50565b6089816078565b8114609357600080fd5b50565b603f8060a360003960", - "00f3fe6080604052600080fdfea2646970667358221220560e159a32ea605e9a", - "ee00bc872694a542a7b8138ecc1b3745625561482898cc64736f6c6343000804", - "0033000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 404, - "op": "SWAP1", - "gas": 2964963, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x0", - "0x0", - "0x0", - "0x1", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "6080604052348015600f57600080fd5b5060405160e238038060e28339818101", - "604052810190602d91906052565b6000811415603a57600080fd5b506096565b", - "600081519050604c816082565b92915050565b60006020828403121560635760", - "0080fd5b6000606f84828501603f565b91505092915050565b60008190509190", - "50565b6089816078565b8114609357600080fd5b50565b603f8060a360003960", - "00f3fe6080604052600080fdfea2646970667358221220560e159a32ea605e9a", - "ee00bc872694a542a7b8138ecc1b3745625561482898cc64736f6c6343000804", - "0033000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 405, - "op": "DUP4", - "gas": 2964960, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x0", - "0x0", - "0x0", - "0x0", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "6080604052348015600f57600080fd5b5060405160e238038060e28339818101", - "604052810190602d91906052565b6000811415603a57600080fd5b506096565b", - "600081519050604c816082565b92915050565b60006020828403121560635760", - "0080fd5b6000606f84828501603f565b91505092915050565b60008190509190", - "50565b6089816078565b8114609357600080fd5b50565b603f8060a360003960", - "00f3fe6080604052600080fdfea2646970667358221220560e159a32ea605e9a", - "ee00bc872694a542a7b8138ecc1b3745625561482898cc64736f6c6343000804", - "0033000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 406, - "op": "PUSH20", - "gas": 2964957, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x0", - "0x0", - "0x0", - "0x0", - "0x1", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "6080604052348015600f57600080fd5b5060405160e238038060e28339818101", - "604052810190602d91906052565b6000811415603a57600080fd5b506096565b", - "600081519050604c816082565b92915050565b60006020828403121560635760", - "0080fd5b6000606f84828501603f565b91505092915050565b60008190509190", - "50565b6089816078565b8114609357600080fd5b50565b603f8060a360003960", - "00f3fe6080604052600080fdfea2646970667358221220560e159a32ea605e9a", - "ee00bc872694a542a7b8138ecc1b3745625561482898cc64736f6c6343000804", - "0033000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 427, - "op": "AND", - "gas": 2964954, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x0", - "0x0", - "0x0", - "0x0", - "0x1", - "0x0", - "0xffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "6080604052348015600f57600080fd5b5060405160e238038060e28339818101", - "604052810190602d91906052565b6000811415603a57600080fd5b506096565b", - "600081519050604c816082565b92915050565b60006020828403121560635760", - "0080fd5b6000606f84828501603f565b91505092915050565b60008190509190", - "50565b6089816078565b8114609357600080fd5b50565b603f8060a360003960", - "00f3fe6080604052600080fdfea2646970667358221220560e159a32ea605e9a", - "ee00bc872694a542a7b8138ecc1b3745625561482898cc64736f6c6343000804", - "0033000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 428, - "op": "MUL", - "gas": 2964951, - "gasCost": 5, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x0", - "0x0", - "0x0", - "0x0", - "0x1", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "6080604052348015600f57600080fd5b5060405160e238038060e28339818101", - "604052810190602d91906052565b6000811415603a57600080fd5b506096565b", - "600081519050604c816082565b92915050565b60006020828403121560635760", - "0080fd5b6000606f84828501603f565b91505092915050565b60008190509190", - "50565b6089816078565b8114609357600080fd5b50565b603f8060a360003960", - "00f3fe6080604052600080fdfea2646970667358221220560e159a32ea605e9a", - "ee00bc872694a542a7b8138ecc1b3745625561482898cc64736f6c6343000804", - "0033000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 429, - "op": "OR", - "gas": 2964946, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "6080604052348015600f57600080fd5b5060405160e238038060e28339818101", - "604052810190602d91906052565b6000811415603a57600080fd5b506096565b", - "600081519050604c816082565b92915050565b60006020828403121560635760", - "0080fd5b6000606f84828501603f565b91505092915050565b60008190509190", - "50565b6089816078565b8114609357600080fd5b50565b603f8060a360003960", - "00f3fe6080604052600080fdfea2646970667358221220560e159a32ea605e9a", - "ee00bc872694a542a7b8138ecc1b3745625561482898cc64736f6c6343000804", - "0033000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 430, - "op": "SWAP1", - "gas": 2964943, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "6080604052348015600f57600080fd5b5060405160e238038060e28339818101", - "604052810190602d91906052565b6000811415603a57600080fd5b506096565b", - "600081519050604c816082565b92915050565b60006020828403121560635760", - "0080fd5b6000606f84828501603f565b91505092915050565b60008190509190", - "50565b6089816078565b8114609357600080fd5b50565b603f8060a360003960", - "00f3fe6080604052600080fdfea2646970667358221220560e159a32ea605e9a", - "ee00bc872694a542a7b8138ecc1b3745625561482898cc64736f6c6343000804", - "0033000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 431, - "op": "SSTORE", - "gas": 2964940, - "gasCost": 2900, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "6080604052348015600f57600080fd5b5060405160e238038060e28339818101", - "604052810190602d91906052565b6000811415603a57600080fd5b506096565b", - "600081519050604c816082565b92915050565b60006020828403121560635760", - "0080fd5b6000606f84828501603f565b91505092915050565b60008190509190", - "50565b6089816078565b8114609357600080fd5b50565b603f8060a360003960", - "00f3fe6080604052600080fdfea2646970667358221220560e159a32ea605e9a", - "ee00bc872694a542a7b8138ecc1b3745625561482898cc64736f6c6343000804", - "0033000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "0x0000000000000000000000000000000000000000000000000000000000000000": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - "refund": 4800, - "extraData": { - "proofList": [ - { - "address": "0x33b5ddf9b5e82bb958eb885f5f241e783a113f18", - "nonce": 3, - "balance": "0x0", - "codeHash": "0xcc0a77f6e063b4b62eb7d9ed6f427cf687d8d0071d751850cfe5d136bc60d3ab", - "storage": { - "key": "0x0000000000000000000000000000000000000000000000000000000000000000", - "value": "0x00000000000000000000000075d0d116b2f8a249a427bc68aac7818684e25319" - } - } - ] - } - }, - { - "pc": 432, - "op": "POP", - "gas": 2962040, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "6080604052348015600f57600080fd5b5060405160e238038060e28339818101", - "604052810190602d91906052565b6000811415603a57600080fd5b506096565b", - "600081519050604c816082565b92915050565b60006020828403121560635760", - "0080fd5b6000606f84828501603f565b91505092915050565b60008190509190", - "50565b6089816078565b8114609357600080fd5b50565b603f8060a360003960", - "00f3fe6080604052600080fdfea2646970667358221220560e159a32ea605e9a", - "ee00bc872694a542a7b8138ecc1b3745625561482898cc64736f6c6343000804", - "0033000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "refund": 4800 - }, - { - "pc": 433, - "op": "PUSH2", - "gas": 2962038, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "6080604052348015600f57600080fd5b5060405160e238038060e28339818101", - "604052810190602d91906052565b6000811415603a57600080fd5b506096565b", - "600081519050604c816082565b92915050565b60006020828403121560635760", - "0080fd5b6000606f84828501603f565b91505092915050565b60008190509190", - "50565b6089816078565b8114609357600080fd5b50565b603f8060a360003960", - "00f3fe6080604052600080fdfea2646970667358221220560e159a32ea605e9a", - "ee00bc872694a542a7b8138ecc1b3745625561482898cc64736f6c6343000804", - "0033000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "refund": 4800 - }, - { - "pc": 436, - "op": "JUMP", - "gas": 2962035, - "gasCost": 8, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x0", - "0x1f7" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "6080604052348015600f57600080fd5b5060405160e238038060e28339818101", - "604052810190602d91906052565b6000811415603a57600080fd5b506096565b", - "600081519050604c816082565b92915050565b60006020828403121560635760", - "0080fd5b6000606f84828501603f565b91505092915050565b60008190509190", - "50565b6089816078565b8114609357600080fd5b50565b603f8060a360003960", - "00f3fe6080604052600080fdfea2646970667358221220560e159a32ea605e9a", - "ee00bc872694a542a7b8138ecc1b3745625561482898cc64736f6c6343000804", - "0033000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "refund": 4800 - }, - { - "pc": 503, - "op": "JUMPDEST", - "gas": 2962027, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "6080604052348015600f57600080fd5b5060405160e238038060e28339818101", - "604052810190602d91906052565b6000811415603a57600080fd5b506096565b", - "600081519050604c816082565b92915050565b60006020828403121560635760", - "0080fd5b6000606f84828501603f565b91505092915050565b60008190509190", - "50565b6089816078565b8114609357600080fd5b50565b603f8060a360003960", - "00f3fe6080604052600080fdfea2646970667358221220560e159a32ea605e9a", - "ee00bc872694a542a7b8138ecc1b3745625561482898cc64736f6c6343000804", - "0033000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "refund": 4800 - }, - { - "pc": 504, - "op": "POP", - "gas": 2962026, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "6080604052348015600f57600080fd5b5060405160e238038060e28339818101", - "604052810190602d91906052565b6000811415603a57600080fd5b506096565b", - "600081519050604c816082565b92915050565b60006020828403121560635760", - "0080fd5b6000606f84828501603f565b91505092915050565b60008190509190", - "50565b6089816078565b8114609357600080fd5b50565b603f8060a360003960", - "00f3fe6080604052600080fdfea2646970667358221220560e159a32ea605e9a", - "ee00bc872694a542a7b8138ecc1b3745625561482898cc64736f6c6343000804", - "0033000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "refund": 4800 - }, - { - "pc": 505, - "op": "JUMP", - "gas": 2962024, - "gasCost": 8, - "depth": 1, - "stack": [ - "0xce0dbd67", - "0x9a" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "6080604052348015600f57600080fd5b5060405160e238038060e28339818101", - "604052810190602d91906052565b6000811415603a57600080fd5b506096565b", - "600081519050604c816082565b92915050565b60006020828403121560635760", - "0080fd5b6000606f84828501603f565b91505092915050565b60008190509190", - "50565b6089816078565b8114609357600080fd5b50565b603f8060a360003960", - "00f3fe6080604052600080fdfea2646970667358221220560e159a32ea605e9a", - "ee00bc872694a542a7b8138ecc1b3745625561482898cc64736f6c6343000804", - "0033000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "refund": 4800 - }, - { - "pc": 154, - "op": "JUMPDEST", - "gas": 2962016, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xce0dbd67" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "6080604052348015600f57600080fd5b5060405160e238038060e28339818101", - "604052810190602d91906052565b6000811415603a57600080fd5b506096565b", - "600081519050604c816082565b92915050565b60006020828403121560635760", - "0080fd5b6000606f84828501603f565b91505092915050565b60008190509190", - "50565b6089816078565b8114609357600080fd5b50565b603f8060a360003960", - "00f3fe6080604052600080fdfea2646970667358221220560e159a32ea605e9a", - "ee00bc872694a542a7b8138ecc1b3745625561482898cc64736f6c6343000804", - "0033000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "refund": 4800 - }, - { - "pc": 155, - "op": "STOP", - "gas": 2962015, - "gasCost": 0, - "depth": 1, - "stack": [ - "0xce0dbd67" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "6080604052348015600f57600080fd5b5060405160e238038060e28339818101", - "604052810190602d91906052565b6000811415603a57600080fd5b506096565b", - "600081519050604c816082565b92915050565b60006020828403121560635760", - "0080fd5b6000606f84828501603f565b91505092915050565b60008190509190", - "50565b6089816078565b8114609357600080fd5b50565b603f8060a360003960", - "00f3fe6080604052600080fdfea2646970667358221220560e159a32ea605e9a", - "ee00bc872694a542a7b8138ecc1b3745625561482898cc64736f6c6343000804", - "0033000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "refund": 4800 - } - ] - } - ] -} \ No newline at end of file diff --git a/trie/zkproof/multi_txs.json b/trie/zkproof/multi_txs.json deleted file mode 100644 index dc1ed64b04..0000000000 --- a/trie/zkproof/multi_txs.json +++ /dev/null @@ -1,31969 +0,0 @@ -{ - "blockTrace": { - "number": "0xf", - "hash": "0xdad63316eccad9c3927b729cc84529f7dd9b3d63b0c105c5b3b74d8d3f7eca18", - "gasLimit": 6821094, - "difficulty": "0x2", - "baseFee": "0x90719f8", - "coinbase": { - "address": "0x0000000000000000000000000000000000000000", - "nonce": 0, - "balance": "0x0", - "codeHash": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - "time": 1656149074, - "transactions": [ - { - "type": 2, - "nonce": 15, - "gas": 3021784, - "gasPrice": "0xb6cfcdd", - "from": "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "to": "0xb36feaeaf76c2a33335b73bef9aef7a23d9af1e3", - "chainId": "0xcf55", - "value": "0x0", - "data": "0x21848c46000000000000000000000000000000000000000000000000000001819a2d4823", - "isCreate": false, - "v": "0x0", - "r": "0x644c8486068853729dad17f2482a59b7f3a1fda447dd809480f4a2244bf161b4", - "s": "0x2c36807d1b6d625504b87e62afd6ef2d876af0b9179a2f0f84cea3020e523793" - }, - { - "type": 2, - "nonce": 16, - "gas": 3021784, - "gasPrice": "0xb6cfcdd", - "from": "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "to": "0x33b5ddf9b5e82bb958eb885f5f241e783a113f18", - "chainId": "0xcf55", - "value": "0x0", - "data": "0xc5b0437c000000000000000000000000000000000000000000000000000001819a2d4aa8", - "isCreate": false, - "v": "0x0", - "r": "0x9d4b51112fe8804d4ae56dda871546e469ea45395dcfb0ddc23e7c96478afe1c", - "s": "0x382b23defdcbfb636602d4e58af61dce9d3d2e369017fe2da7468b1eebb4247b" - }, - { - "type": 2, - "nonce": 17, - "gas": 3022936, - "gasPrice": "0xb6cfcdd", - "from": "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "to": "0xee0e03c1a621084ca3c542f36e4a5d0230304471", - "chainId": "0xcf55", - "value": "0x0", - "data": "0xa9059cbb0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba7200000000000000000000000000000000000000000000000000000000000003e8", - "isCreate": false, - "v": "0x0", - "r": "0xa72418a33b30d88d3f4158cf841c0bd6a9aff9e2c1be12d0f3269265a57da6f2", - "s": "0x7bec2c4098915179f41fdd4db0aa1aed53de1b83e4112cee8737dddb91458064" - } - ] - }, - "storageTrace": { - "rootBefore": "0x1bdf40de2e9f911db848e045ee1ba0b0184346fee38f3aaf0419b905cf6dfd15", - "rootAfter": "0x0bae56a9121907260320ec6d256adec89a0206aefe464538cd3b79bdc156ffbb", - "proofs": { - "0x0000000000000000000000000000000000000000": [ - "0x00979a62c8642ce57875366cc354a5e73eb9ad8abdbc51044574b4496f9758190c11e8f62f393225df549707a33d4582798cf12d7669dbdc3e4abfad44c9aa1008", - "0x01e232499c4754368052075d13fb84b18537b94a2da166170e7bd94bdc879097090404000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000000cc0a77f6e063b4b62eb7d9ed6f427cf687d8d0071d751850cfe5d136bc60d3ab03000ecf278f3c3309f2a3a091b4d20b5e01f2b4e8f5b2a44bd4e2e67aa9a3d500", - "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" - ], - "0x05fDbDfaE180345C6Cff5316c286727CF1a43327": [ - "0x00979a62c8642ce57875366cc354a5e73eb9ad8abdbc51044574b4496f9758190c11e8f62f393225df549707a33d4582798cf12d7669dbdc3e4abfad44c9aa1008", - "0x003565e2f22839d62897959057faf0c8ee51e9322d419248c4c13cb15f31debd12f8b9ffbed79b5b3636301803be20c77234716c213c8ee55aec2968e594055728", - "0x0076d603087affd3922662b5b38a1940e24a1c0bd28923f829c1f71031727ec92c54a83e9f80ec07dedafcba80c0239f1a50b26fd33b50ff8a59e637a27c395d0e", - "0x01fb6c28252d0ee14db1cdabda01391300ac75dcfdcda6ba1880e509aed4bc1225040400000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000009d2fd3a7cb9d5547a21c851248d703921e6348bfbdf4c0130695a3263f916ef247baa79042915dccda832b71ef58a31687e0a0af51b804c98f7aa36afa5fdb400", - "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" - ], - "0x2772ae3ebc6d3900c6A011D8d626B35FAFb10331": [ - "0x00979a62c8642ce57875366cc354a5e73eb9ad8abdbc51044574b4496f9758190c11e8f62f393225df549707a33d4582798cf12d7669dbdc3e4abfad44c9aa1008", - "0x003565e2f22839d62897959057faf0c8ee51e9322d419248c4c13cb15f31debd12f8b9ffbed79b5b3636301803be20c77234716c213c8ee55aec2968e594055728", - "0x0076d603087affd3922662b5b38a1940e24a1c0bd28923f829c1f71031727ec92c54a83e9f80ec07dedafcba80c0239f1a50b26fd33b50ff8a59e637a27c395d0e", - "0x01fb6c28252d0ee14db1cdabda01391300ac75dcfdcda6ba1880e509aed4bc1225040400000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000009d2fd3a7cb9d5547a21c851248d703921e6348bfbdf4c0130695a3263f916ef247baa79042915dccda832b71ef58a31687e0a0af51b804c98f7aa36afa5fdb400", - "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" - ], - "0x33B5DDf9b5e82Bb958EB885F5F241E783A113f18": [ - "0x00979a62c8642ce57875366cc354a5e73eb9ad8abdbc51044574b4496f9758190c11e8f62f393225df549707a33d4582798cf12d7669dbdc3e4abfad44c9aa1008", - "0x01e232499c4754368052075d13fb84b18537b94a2da166170e7bd94bdc879097090404000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000000cc0a77f6e063b4b62eb7d9ed6f427cf687d8d0071d751850cfe5d136bc60d3ab03000ecf278f3c3309f2a3a091b4d20b5e01f2b4e8f5b2a44bd4e2e67aa9a3d500", - "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" - ], - "0x4cb1aB63aF5D8931Ce09673EbD8ae2ce16fD6571": [ - "0x00979a62c8642ce57875366cc354a5e73eb9ad8abdbc51044574b4496f9758190c11e8f62f393225df549707a33d4582798cf12d7669dbdc3e4abfad44c9aa1008", - "0x003565e2f22839d62897959057faf0c8ee51e9322d419248c4c13cb15f31debd12f8b9ffbed79b5b3636301803be20c77234716c213c8ee55aec2968e594055728", - "0x002f719a7d94e0142e3e0ccb05942a65398e36ee904d8455b862801431ee19601d3a16c9a75c0d750cd33a6c067b3a4acd1448612f3297da98b8504e6acbfd3613", - "0x00fbf690eec41fba2eaa90a339715e33faea2c8320f0a7fd641e6656614623d32f0000000000000000000000000000000000000000000000000000000000000000", - "0x0000000000000000000000000000000000000000000000000000000000000000002137a2cacd7fab7f0ab2351988bf9b48eee9d9fdc645c6e2869c446c354d4017", - "0x006fdd725f3bda1b8d6e2a4fff5852be1a37527054173952afcdddc1dce229751b887135f902edc9dc7b4db4a5bdc9cd4ebdd8162e9bf1bdd746fa0fd6bbc24213", - "0x0000000000000000000000000000000000000000000000000000000000000000006fe9cdde53ce32e6c3c57f236e5fdb09a2bca7a385e79df77d7f2c080559a02d", - "0x00aeb4e1b39e74338e6083af70cd9140b68d28c02e1db5c6d8f3898162fb2b9827a72c67edca1db779b38140aaee9baf382c96315f0884909da4a4a7480f3ab82d", - "0x017581e431a68d0fa641e14a7d29a6c2b150db6da1d13f59dee6f7f492a0bebd2904040000000000000000000000000000000000000000000000000000000000000000000f0056bc75e2d630fffffffffffffffffffffffffffffffffffff971ded832adf3c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470000000000000000000000000000000000000000000000000000000000000000000", - "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" - ], - "0xEe0e03C1a621084cA3c542F36E4A5D0230304471": [ - "0x00979a62c8642ce57875366cc354a5e73eb9ad8abdbc51044574b4496f9758190c11e8f62f393225df549707a33d4582798cf12d7669dbdc3e4abfad44c9aa1008", - "0x003565e2f22839d62897959057faf0c8ee51e9322d419248c4c13cb15f31debd12f8b9ffbed79b5b3636301803be20c77234716c213c8ee55aec2968e594055728", - "0x002f719a7d94e0142e3e0ccb05942a65398e36ee904d8455b862801431ee19601d3a16c9a75c0d750cd33a6c067b3a4acd1448612f3297da98b8504e6acbfd3613", - "0x00fbf690eec41fba2eaa90a339715e33faea2c8320f0a7fd641e6656614623d32f0000000000000000000000000000000000000000000000000000000000000000", - "0x0000000000000000000000000000000000000000000000000000000000000000002137a2cacd7fab7f0ab2351988bf9b48eee9d9fdc645c6e2869c446c354d4017", - "0x006fdd725f3bda1b8d6e2a4fff5852be1a37527054173952afcdddc1dce229751b887135f902edc9dc7b4db4a5bdc9cd4ebdd8162e9bf1bdd746fa0fd6bbc24213", - "0x0195b85674709ba8d45a61b52990ba84b7b2421cc0d0443b1e7f05a582fb9dfb100404000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000178763dea206ad5ecfbf211ddeb69d930d18811bc617cb4bbb0c0e7f0d28a3aa08267d050917e1f5a413ce92ccf8a7c00b6cf178ad598c50cb7fa05d056be0a700", - "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" - ], - "0xb36feAEaF76c2A33335b73bEF9aEf7a23d9af1e3": [ - "0x00979a62c8642ce57875366cc354a5e73eb9ad8abdbc51044574b4496f9758190c11e8f62f393225df549707a33d4582798cf12d7669dbdc3e4abfad44c9aa1008", - "0x003565e2f22839d62897959057faf0c8ee51e9322d419248c4c13cb15f31debd12f8b9ffbed79b5b3636301803be20c77234716c213c8ee55aec2968e594055728", - "0x002f719a7d94e0142e3e0ccb05942a65398e36ee904d8455b862801431ee19601d3a16c9a75c0d750cd33a6c067b3a4acd1448612f3297da98b8504e6acbfd3613", - "0x00fbf690eec41fba2eaa90a339715e33faea2c8320f0a7fd641e6656614623d32f0000000000000000000000000000000000000000000000000000000000000000", - "0x0000000000000000000000000000000000000000000000000000000000000000002137a2cacd7fab7f0ab2351988bf9b48eee9d9fdc645c6e2869c446c354d4017", - "0x006fdd725f3bda1b8d6e2a4fff5852be1a37527054173952afcdddc1dce229751b887135f902edc9dc7b4db4a5bdc9cd4ebdd8162e9bf1bdd746fa0fd6bbc24213", - "0x0000000000000000000000000000000000000000000000000000000000000000006fe9cdde53ce32e6c3c57f236e5fdb09a2bca7a385e79df77d7f2c080559a02d", - "0x00aeb4e1b39e74338e6083af70cd9140b68d28c02e1db5c6d8f3898162fb2b9827a72c67edca1db779b38140aaee9baf382c96315f0884909da4a4a7480f3ab82d", - "0x01f59112e5670628682b1ec72767b1a6153096d47742e1d9455c175a955211e9000404000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000cf73ee5d93a98045cd55efe938790c20effb831ac0646f6875213fb4aca6631921b9f6b124d61bfa2a988690fe447213304911cc93299f2b183e8018257d78e200", - "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" - ] - }, - "storageProofs": { - "0x05fDbDfaE180345C6Cff5316c286727CF1a43327": { - "0x0000000000000000000000000000000000000000000000000000000000000000": [ - "0x016448b64684ee39a823d5fe5fd52431dc81e4817bf2c3ea3cab9e239efbf5982001010000000000000000000000000000000000000000000000000000000001819a28f66800", - "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" - ] - }, - "0x2772ae3ebc6d3900c6A011D8d626B35FAFb10331": { - "0x0000000000000000000000000000000000000000000000000000000000000000": [ - "0x02", - "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" - ] - }, - "0x33B5DDf9b5e82Bb958EB885F5F241E783A113f18": { - "0x0000000000000000000000000000000000000000000000000000000000000000": [ - "0x016448b64684ee39a823d5fe5fd52431dc81e4817bf2c3ea3cab9e239efbf5982001010000000000000000000000000000000000000000000000000000000000000000000000", - "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" - ] - }, - "0xEe0e03C1a621084cA3c542F36E4A5D0230304471": { - "0x5a158573daab1c353835da34297290f5f813859e4bb52de641691b875502523f": [ - "0x0076670fea163d9a13e6ae8c4a958b09f74ad006e781f24e75789b5ce3968916055a4dd8756c26c100628b81b521706e2c78cefb62a092d7775bd3f52642c94f2c", - "0x015bcfa567f724b471f0711c5b1b5295f4babeca2d70ed85e33abf5f8086e7721a0101000000000000000000000000000000000000000000007f228daac38a51833dbbf44800", - "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" - ], - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f": [ - "0x0076670fea163d9a13e6ae8c4a958b09f74ad006e781f24e75789b5ce3968916055a4dd8756c26c100628b81b521706e2c78cefb62a092d7775bd3f52642c94f2c", - "0x003e68a37d22a8e06b48701825e846bc436aa1c4e2f43edc2a67270c1ebe145b23f855e9ec031301edaf7f84f64a9dc5798916c8678a1f907597da2c3bf8b63a0e", - "0x0057a298c09fb1f9609b74ff09c68470bf41a983d24995a2e05a1fb9546ce3050d144a39293eaa44a980cb09f1283effde08e6bebb8c596e973864720f24517c13", - "0x00660d10c5a60a0552367022208d220d96b4388ef11e783eb79ae1a08ec4470d180000000000000000000000000000000000000000000000000000000000000000", - "0x0052fb41bda5330046b2f736cfd86106e5b0aadc56e770f870958d7c15334f96099d474be5611e02bc862ca5ef7af2a8d9c958d61bfffffa986e60f84ae1beba03", - "0x0134aedb4be7574a842f0fde19fc74dcf1a0369b31b42311b841f80bbc74556d23010100000000000000000000000000000000000000000000000000000000000000000bb800", - "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" - ] - }, - "0xb36feAEaF76c2A33335b73bEF9aEf7a23d9af1e3": { - "0x0000000000000000000000000000000000000000000000000000000000000000": [ - "0x016448b64684ee39a823d5fe5fd52431dc81e4817bf2c3ea3cab9e239efbf598200101000000000000000000000000000005fdbdfae180345c6cff5316c286727cf1a4332700", - "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" - ] - } - } - }, - "executionResults": [ - { - "gas": 32223, - "failed": false, - "from": { - "address": "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "nonce": 15, - "balance": "0x56bc75e2d630fffffffffffffffffffffffffffffffffffff971ded832adf3", - "codeHash": "0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470" - }, - "to": { - "address": "0xb36feaeaf76c2a33335b73bef9aef7a23d9af1e3", - "nonce": 1, - "balance": "0x0", - "codeHash": "0xcf73ee5d93a98045cd55efe938790c20effb831ac0646f6875213fb4aca66319" - }, - "accountAfter": [ - { - "address": "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "nonce": 16, - "balance": "0x56bc75e2d630fffffffffffffffffffffffffffffffffffff96d6e8354f6eb", - "codeHash": "0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470" - }, - { - "address": "0xb36feaeaf76c2a33335b73bef9aef7a23d9af1e3", - "nonce": 1, - "balance": "0x0", - "codeHash": "0xcf73ee5d93a98045cd55efe938790c20effb831ac0646f6875213fb4aca66319" - } - ], - "codeHash": "0xcf73ee5d93a98045cd55efe938790c20effb831ac0646f6875213fb4aca66319", - "byteCode": "0x608060405234801561001057600080fd5b50600436106100365760003560e01c806321848c461461003b578063b0f2b72a14610057575b600080fd5b61005560048036038101906100509190610277565b610073565b005b610071600480360381019061006c9190610277565b61010b565b005b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff166321848c46836040518263ffffffff1660e01b81526004016100d2919061030a565b600060405180830381600087803b1580156100ec57600080fd5b505af19250505080156100fd575060015b61010657610107565b5b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663b0f2b72a836040518263ffffffff1660e01b815260040161016a919061030a565b600060405180830381600087803b15801561018457600080fd5b505af1158015610198573d6000803e3d6000fd5b505050505050565b610236816040516024016101b491906102e8565b6040516020818303038152906040527f41304fac000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050610239565b50565b60008151905060006a636f6e736f6c652e6c6f679050602083016000808483855afa5050505050565b6000813590506102718161038f565b92915050565b60006020828403121561028957600080fd5b600061029784828501610262565b91505092915050565b60006102ab82610325565b6102b58185610330565b93506102c581856020860161034b565b6102ce8161037e565b840191505092915050565b6102e281610341565b82525050565b6000602082019050818103600083015261030281846102a0565b905092915050565b600060208201905061031f60008301846102d9565b92915050565b600081519050919050565b600082825260208201905092915050565b6000819050919050565b60005b8381101561036957808201518184015260208101905061034e565b83811115610378576000848401525b50505050565b6000601f19601f8301169050919050565b61039881610341565b81146103a357600080fd5b5056fea264697066735822122079a958a4c7a90094ec761b33fbd301163f4e1e62f3ccae8afe9f42a770e054f264736f6c63430008040033", - "structLogs": [ - { - "pc": 0, - "op": "PUSH1", - "gas": 3000520, - "gasCost": 3, - "depth": 1 - }, - { - "pc": 2, - "op": "PUSH1", - "gas": 3000517, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80" - ] - }, - { - "pc": 4, - "op": "MSTORE", - "gas": 3000514, - "gasCost": 12, - "depth": 1, - "stack": [ - "0x80", - "0x40" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 5, - "op": "CALLVALUE", - "gas": 3000502, - "gasCost": 2, - "depth": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 6, - "op": "DUP1", - "gas": 3000500, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 7, - "op": "ISZERO", - "gas": 3000497, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 8, - "op": "PUSH2", - "gas": 3000494, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x0", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 11, - "op": "JUMPI", - "gas": 3000491, - "gasCost": 10, - "depth": 1, - "stack": [ - "0x0", - "0x1", - "0x10" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 16, - "op": "JUMPDEST", - "gas": 3000481, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 17, - "op": "POP", - "gas": 3000480, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 18, - "op": "PUSH1", - "gas": 3000478, - "gasCost": 3, - "depth": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 20, - "op": "CALLDATASIZE", - "gas": 3000475, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 21, - "op": "LT", - "gas": 3000473, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x4", - "0x24" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 22, - "op": "PUSH2", - "gas": 3000470, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 25, - "op": "JUMPI", - "gas": 3000467, - "gasCost": 10, - "depth": 1, - "stack": [ - "0x0", - "0x36" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 26, - "op": "PUSH1", - "gas": 3000457, - "gasCost": 3, - "depth": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 28, - "op": "CALLDATALOAD", - "gas": 3000454, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 29, - "op": "PUSH1", - "gas": 3000451, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c4600000000000000000000000000000000000000000000000000000181" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 31, - "op": "SHR", - "gas": 3000448, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c4600000000000000000000000000000000000000000000000000000181", - "0xe0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 32, - "op": "DUP1", - "gas": 3000445, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 33, - "op": "PUSH4", - "gas": 3000442, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x21848c46" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 38, - "op": "EQ", - "gas": 3000439, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x21848c46", - "0x21848c46" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 39, - "op": "PUSH2", - "gas": 3000436, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 42, - "op": "JUMPI", - "gas": 3000433, - "gasCost": 10, - "depth": 1, - "stack": [ - "0x21848c46", - "0x1", - "0x3b" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 59, - "op": "JUMPDEST", - "gas": 3000423, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x21848c46" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 60, - "op": "PUSH2", - "gas": 3000422, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 63, - "op": "PUSH1", - "gas": 3000419, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 65, - "op": "DUP1", - "gas": 3000416, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 66, - "op": "CALLDATASIZE", - "gas": 3000413, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x4", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 67, - "op": "SUB", - "gas": 3000411, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x4", - "0x4", - "0x24" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 68, - "op": "DUP2", - "gas": 3000408, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x4", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 69, - "op": "ADD", - "gas": 3000405, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x4", - "0x20", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 70, - "op": "SWAP1", - "gas": 3000402, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x4", - "0x24" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 71, - "op": "PUSH2", - "gas": 3000399, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x24", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 74, - "op": "SWAP2", - "gas": 3000396, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x24", - "0x4", - "0x50" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 75, - "op": "SWAP1", - "gas": 3000393, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x50", - "0x4", - "0x24" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 76, - "op": "PUSH2", - "gas": 3000390, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x50", - "0x24", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 79, - "op": "JUMP", - "gas": 3000387, - "gasCost": 8, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x50", - "0x24", - "0x4", - "0x277" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 631, - "op": "JUMPDEST", - "gas": 3000379, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x50", - "0x24", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 632, - "op": "PUSH1", - "gas": 3000378, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x50", - "0x24", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 634, - "op": "PUSH1", - "gas": 3000375, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x50", - "0x24", - "0x4", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 636, - "op": "DUP3", - "gas": 3000372, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x50", - "0x24", - "0x4", - "0x0", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 637, - "op": "DUP5", - "gas": 3000369, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x50", - "0x24", - "0x4", - "0x0", - "0x20", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 638, - "op": "SUB", - "gas": 3000366, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x50", - "0x24", - "0x4", - "0x0", - "0x20", - "0x4", - "0x24" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 639, - "op": "SLT", - "gas": 3000363, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x50", - "0x24", - "0x4", - "0x0", - "0x20", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 640, - "op": "ISZERO", - "gas": 3000360, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x50", - "0x24", - "0x4", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 641, - "op": "PUSH2", - "gas": 3000357, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x50", - "0x24", - "0x4", - "0x0", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 644, - "op": "JUMPI", - "gas": 3000354, - "gasCost": 10, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x50", - "0x24", - "0x4", - "0x0", - "0x1", - "0x289" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 649, - "op": "JUMPDEST", - "gas": 3000344, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x50", - "0x24", - "0x4", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 650, - "op": "PUSH1", - "gas": 3000343, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x50", - "0x24", - "0x4", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 652, - "op": "PUSH2", - "gas": 3000340, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x50", - "0x24", - "0x4", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 655, - "op": "DUP5", - "gas": 3000337, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x50", - "0x24", - "0x4", - "0x0", - "0x0", - "0x297" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 656, - "op": "DUP3", - "gas": 3000334, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x50", - "0x24", - "0x4", - "0x0", - "0x0", - "0x297", - "0x24" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 657, - "op": "DUP6", - "gas": 3000331, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x50", - "0x24", - "0x4", - "0x0", - "0x0", - "0x297", - "0x24", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 658, - "op": "ADD", - "gas": 3000328, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x50", - "0x24", - "0x4", - "0x0", - "0x0", - "0x297", - "0x24", - "0x0", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 659, - "op": "PUSH2", - "gas": 3000325, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x50", - "0x24", - "0x4", - "0x0", - "0x0", - "0x297", - "0x24", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 662, - "op": "JUMP", - "gas": 3000322, - "gasCost": 8, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x50", - "0x24", - "0x4", - "0x0", - "0x0", - "0x297", - "0x24", - "0x4", - "0x262" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 610, - "op": "JUMPDEST", - "gas": 3000314, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x50", - "0x24", - "0x4", - "0x0", - "0x0", - "0x297", - "0x24", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 611, - "op": "PUSH1", - "gas": 3000313, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x50", - "0x24", - "0x4", - "0x0", - "0x0", - "0x297", - "0x24", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 613, - "op": "DUP2", - "gas": 3000310, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x50", - "0x24", - "0x4", - "0x0", - "0x0", - "0x297", - "0x24", - "0x4", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 614, - "op": "CALLDATALOAD", - "gas": 3000307, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x50", - "0x24", - "0x4", - "0x0", - "0x0", - "0x297", - "0x24", - "0x4", - "0x0", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 615, - "op": "SWAP1", - "gas": 3000304, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x50", - "0x24", - "0x4", - "0x0", - "0x0", - "0x297", - "0x24", - "0x4", - "0x0", - "0x1819a2d4823" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 616, - "op": "POP", - "gas": 3000301, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x50", - "0x24", - "0x4", - "0x0", - "0x0", - "0x297", - "0x24", - "0x4", - "0x1819a2d4823", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 617, - "op": "PUSH2", - "gas": 3000299, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x50", - "0x24", - "0x4", - "0x0", - "0x0", - "0x297", - "0x24", - "0x4", - "0x1819a2d4823" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 620, - "op": "DUP2", - "gas": 3000296, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x50", - "0x24", - "0x4", - "0x0", - "0x0", - "0x297", - "0x24", - "0x4", - "0x1819a2d4823", - "0x271" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 621, - "op": "PUSH2", - "gas": 3000293, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x50", - "0x24", - "0x4", - "0x0", - "0x0", - "0x297", - "0x24", - "0x4", - "0x1819a2d4823", - "0x271", - "0x1819a2d4823" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 624, - "op": "JUMP", - "gas": 3000290, - "gasCost": 8, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x50", - "0x24", - "0x4", - "0x0", - "0x0", - "0x297", - "0x24", - "0x4", - "0x1819a2d4823", - "0x271", - "0x1819a2d4823", - "0x38f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 911, - "op": "JUMPDEST", - "gas": 3000282, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x50", - "0x24", - "0x4", - "0x0", - "0x0", - "0x297", - "0x24", - "0x4", - "0x1819a2d4823", - "0x271", - "0x1819a2d4823" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 912, - "op": "PUSH2", - "gas": 3000281, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x50", - "0x24", - "0x4", - "0x0", - "0x0", - "0x297", - "0x24", - "0x4", - "0x1819a2d4823", - "0x271", - "0x1819a2d4823" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 915, - "op": "DUP2", - "gas": 3000278, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x50", - "0x24", - "0x4", - "0x0", - "0x0", - "0x297", - "0x24", - "0x4", - "0x1819a2d4823", - "0x271", - "0x1819a2d4823", - "0x398" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 916, - "op": "PUSH2", - "gas": 3000275, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x50", - "0x24", - "0x4", - "0x0", - "0x0", - "0x297", - "0x24", - "0x4", - "0x1819a2d4823", - "0x271", - "0x1819a2d4823", - "0x398", - "0x1819a2d4823" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 919, - "op": "JUMP", - "gas": 3000272, - "gasCost": 8, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x50", - "0x24", - "0x4", - "0x0", - "0x0", - "0x297", - "0x24", - "0x4", - "0x1819a2d4823", - "0x271", - "0x1819a2d4823", - "0x398", - "0x1819a2d4823", - "0x341" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 833, - "op": "JUMPDEST", - "gas": 3000264, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x50", - "0x24", - "0x4", - "0x0", - "0x0", - "0x297", - "0x24", - "0x4", - "0x1819a2d4823", - "0x271", - "0x1819a2d4823", - "0x398", - "0x1819a2d4823" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 834, - "op": "PUSH1", - "gas": 3000263, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x50", - "0x24", - "0x4", - "0x0", - "0x0", - "0x297", - "0x24", - "0x4", - "0x1819a2d4823", - "0x271", - "0x1819a2d4823", - "0x398", - "0x1819a2d4823" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 836, - "op": "DUP2", - "gas": 3000260, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x50", - "0x24", - "0x4", - "0x0", - "0x0", - "0x297", - "0x24", - "0x4", - "0x1819a2d4823", - "0x271", - "0x1819a2d4823", - "0x398", - "0x1819a2d4823", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 837, - "op": "SWAP1", - "gas": 3000257, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x50", - "0x24", - "0x4", - "0x0", - "0x0", - "0x297", - "0x24", - "0x4", - "0x1819a2d4823", - "0x271", - "0x1819a2d4823", - "0x398", - "0x1819a2d4823", - "0x0", - "0x1819a2d4823" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 838, - "op": "POP", - "gas": 3000254, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x50", - "0x24", - "0x4", - "0x0", - "0x0", - "0x297", - "0x24", - "0x4", - "0x1819a2d4823", - "0x271", - "0x1819a2d4823", - "0x398", - "0x1819a2d4823", - "0x1819a2d4823", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 839, - "op": "SWAP2", - "gas": 3000252, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x50", - "0x24", - "0x4", - "0x0", - "0x0", - "0x297", - "0x24", - "0x4", - "0x1819a2d4823", - "0x271", - "0x1819a2d4823", - "0x398", - "0x1819a2d4823", - "0x1819a2d4823" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 840, - "op": "SWAP1", - "gas": 3000249, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x50", - "0x24", - "0x4", - "0x0", - "0x0", - "0x297", - "0x24", - "0x4", - "0x1819a2d4823", - "0x271", - "0x1819a2d4823", - "0x1819a2d4823", - "0x1819a2d4823", - "0x398" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 841, - "op": "POP", - "gas": 3000246, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x50", - "0x24", - "0x4", - "0x0", - "0x0", - "0x297", - "0x24", - "0x4", - "0x1819a2d4823", - "0x271", - "0x1819a2d4823", - "0x1819a2d4823", - "0x398", - "0x1819a2d4823" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 842, - "op": "JUMP", - "gas": 3000244, - "gasCost": 8, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x50", - "0x24", - "0x4", - "0x0", - "0x0", - "0x297", - "0x24", - "0x4", - "0x1819a2d4823", - "0x271", - "0x1819a2d4823", - "0x1819a2d4823", - "0x398" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 920, - "op": "JUMPDEST", - "gas": 3000236, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x50", - "0x24", - "0x4", - "0x0", - "0x0", - "0x297", - "0x24", - "0x4", - "0x1819a2d4823", - "0x271", - "0x1819a2d4823", - "0x1819a2d4823" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 921, - "op": "DUP2", - "gas": 3000235, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x50", - "0x24", - "0x4", - "0x0", - "0x0", - "0x297", - "0x24", - "0x4", - "0x1819a2d4823", - "0x271", - "0x1819a2d4823", - "0x1819a2d4823" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 922, - "op": "EQ", - "gas": 3000232, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x50", - "0x24", - "0x4", - "0x0", - "0x0", - "0x297", - "0x24", - "0x4", - "0x1819a2d4823", - "0x271", - "0x1819a2d4823", - "0x1819a2d4823", - "0x1819a2d4823" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 923, - "op": "PUSH2", - "gas": 3000229, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x50", - "0x24", - "0x4", - "0x0", - "0x0", - "0x297", - "0x24", - "0x4", - "0x1819a2d4823", - "0x271", - "0x1819a2d4823", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 926, - "op": "JUMPI", - "gas": 3000226, - "gasCost": 10, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x50", - "0x24", - "0x4", - "0x0", - "0x0", - "0x297", - "0x24", - "0x4", - "0x1819a2d4823", - "0x271", - "0x1819a2d4823", - "0x1", - "0x3a3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 931, - "op": "JUMPDEST", - "gas": 3000216, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x50", - "0x24", - "0x4", - "0x0", - "0x0", - "0x297", - "0x24", - "0x4", - "0x1819a2d4823", - "0x271", - "0x1819a2d4823" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 932, - "op": "POP", - "gas": 3000215, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x50", - "0x24", - "0x4", - "0x0", - "0x0", - "0x297", - "0x24", - "0x4", - "0x1819a2d4823", - "0x271", - "0x1819a2d4823" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 933, - "op": "JUMP", - "gas": 3000213, - "gasCost": 8, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x50", - "0x24", - "0x4", - "0x0", - "0x0", - "0x297", - "0x24", - "0x4", - "0x1819a2d4823", - "0x271" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 625, - "op": "JUMPDEST", - "gas": 3000205, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x50", - "0x24", - "0x4", - "0x0", - "0x0", - "0x297", - "0x24", - "0x4", - "0x1819a2d4823" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 626, - "op": "SWAP3", - "gas": 3000204, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x50", - "0x24", - "0x4", - "0x0", - "0x0", - "0x297", - "0x24", - "0x4", - "0x1819a2d4823" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 627, - "op": "SWAP2", - "gas": 3000201, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x50", - "0x24", - "0x4", - "0x0", - "0x0", - "0x1819a2d4823", - "0x24", - "0x4", - "0x297" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 628, - "op": "POP", - "gas": 3000198, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x50", - "0x24", - "0x4", - "0x0", - "0x0", - "0x1819a2d4823", - "0x297", - "0x4", - "0x24" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 629, - "op": "POP", - "gas": 3000196, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x50", - "0x24", - "0x4", - "0x0", - "0x0", - "0x1819a2d4823", - "0x297", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 630, - "op": "JUMP", - "gas": 3000194, - "gasCost": 8, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x50", - "0x24", - "0x4", - "0x0", - "0x0", - "0x1819a2d4823", - "0x297" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 663, - "op": "JUMPDEST", - "gas": 3000186, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x50", - "0x24", - "0x4", - "0x0", - "0x0", - "0x1819a2d4823" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 664, - "op": "SWAP2", - "gas": 3000185, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x50", - "0x24", - "0x4", - "0x0", - "0x0", - "0x1819a2d4823" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 665, - "op": "POP", - "gas": 3000182, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x50", - "0x24", - "0x4", - "0x1819a2d4823", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 666, - "op": "POP", - "gas": 3000180, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x50", - "0x24", - "0x4", - "0x1819a2d4823", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 667, - "op": "SWAP3", - "gas": 3000178, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x50", - "0x24", - "0x4", - "0x1819a2d4823" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 668, - "op": "SWAP2", - "gas": 3000175, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a2d4823", - "0x24", - "0x4", - "0x50" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 669, - "op": "POP", - "gas": 3000172, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a2d4823", - "0x50", - "0x4", - "0x24" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 670, - "op": "POP", - "gas": 3000170, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a2d4823", - "0x50", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 671, - "op": "JUMP", - "gas": 3000168, - "gasCost": 8, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a2d4823", - "0x50" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 80, - "op": "JUMPDEST", - "gas": 3000160, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a2d4823" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 81, - "op": "PUSH2", - "gas": 3000159, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a2d4823" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 84, - "op": "JUMP", - "gas": 3000156, - "gasCost": 8, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a2d4823", - "0x73" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 115, - "op": "JUMPDEST", - "gas": 3000148, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a2d4823" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 116, - "op": "PUSH1", - "gas": 3000147, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a2d4823" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 118, - "op": "DUP1", - "gas": 3000144, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a2d4823", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 119, - "op": "PUSH1", - "gas": 3000141, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a2d4823", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 121, - "op": "SWAP1", - "gas": 3000138, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a2d4823", - "0x0", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 122, - "op": "SLOAD", - "gas": 3000135, - "gasCost": 2100, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a2d4823", - "0x0", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0x0000000000000000000000000000000000000000000000000000000000000000": "0x00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327" - }, - "extraData": { - "proofList": [ - { - "address": "0xb36feaeaf76c2a33335b73bef9aef7a23d9af1e3", - "nonce": 1, - "balance": "0x0", - "codeHash": "0xcf73ee5d93a98045cd55efe938790c20effb831ac0646f6875213fb4aca66319", - "storage": { - "key": "0x0000000000000000000000000000000000000000000000000000000000000000", - "value": "0x00000000000000000000000005fdbdfae180345c6cff5316c286727cf1a43327" - } - } - ] - } - }, - { - "pc": 123, - "op": "SWAP1", - "gas": 2998035, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a2d4823", - "0x0", - "0x0", - "0x5fdbdfae180345c6cff5316c286727cf1a43327" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 124, - "op": "PUSH2", - "gas": 2998032, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a2d4823", - "0x0", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 127, - "op": "EXP", - "gas": 2998029, - "gasCost": 10, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a2d4823", - "0x0", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x0", - "0x100" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 128, - "op": "SWAP1", - "gas": 2998019, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a2d4823", - "0x0", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 129, - "op": "DIV", - "gas": 2998016, - "gasCost": 5, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a2d4823", - "0x0", - "0x1", - "0x5fdbdfae180345c6cff5316c286727cf1a43327" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 130, - "op": "PUSH20", - "gas": 2998011, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a2d4823", - "0x0", - "0x5fdbdfae180345c6cff5316c286727cf1a43327" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 151, - "op": "AND", - "gas": 2998008, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a2d4823", - "0x0", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0xffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 152, - "op": "SWAP1", - "gas": 2998005, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a2d4823", - "0x0", - "0x5fdbdfae180345c6cff5316c286727cf1a43327" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 153, - "op": "POP", - "gas": 2998002, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a2d4823", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 154, - "op": "DUP1", - "gas": 2998000, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a2d4823", - "0x5fdbdfae180345c6cff5316c286727cf1a43327" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 155, - "op": "PUSH20", - "gas": 2997997, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a2d4823", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 176, - "op": "AND", - "gas": 2997994, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a2d4823", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0xffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 177, - "op": "PUSH4", - "gas": 2997991, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a2d4823", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 182, - "op": "DUP4", - "gas": 2997988, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a2d4823", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 183, - "op": "PUSH1", - "gas": 2997985, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a2d4823", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0x1819a2d4823" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 185, - "op": "MLOAD", - "gas": 2997982, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a2d4823", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0x1819a2d4823", - "0x40" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 186, - "op": "DUP3", - "gas": 2997979, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a2d4823", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0x1819a2d4823", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 187, - "op": "PUSH4", - "gas": 2997976, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a2d4823", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0x1819a2d4823", - "0x80", - "0x21848c46" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 192, - "op": "AND", - "gas": 2997973, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a2d4823", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0x1819a2d4823", - "0x80", - "0x21848c46", - "0xffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 193, - "op": "PUSH1", - "gas": 2997970, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a2d4823", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0x1819a2d4823", - "0x80", - "0x21848c46" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 195, - "op": "SHL", - "gas": 2997967, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a2d4823", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0x1819a2d4823", - "0x80", - "0x21848c46", - "0xe0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 196, - "op": "DUP2", - "gas": 2997964, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a2d4823", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0x1819a2d4823", - "0x80", - "0x21848c4600000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 197, - "op": "MSTORE", - "gas": 2997961, - "gasCost": 9, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a2d4823", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0x1819a2d4823", - "0x80", - "0x21848c4600000000000000000000000000000000000000000000000000000000", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 198, - "op": "PUSH1", - "gas": 2997952, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a2d4823", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0x1819a2d4823", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 200, - "op": "ADD", - "gas": 2997949, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a2d4823", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0x1819a2d4823", - "0x80", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 201, - "op": "PUSH2", - "gas": 2997946, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a2d4823", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0x1819a2d4823", - "0x84" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 204, - "op": "SWAP2", - "gas": 2997943, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a2d4823", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0x1819a2d4823", - "0x84", - "0xd2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 205, - "op": "SWAP1", - "gas": 2997940, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a2d4823", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0xd2", - "0x84", - "0x1819a2d4823" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 206, - "op": "PUSH2", - "gas": 2997937, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a2d4823", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0xd2", - "0x1819a2d4823", - "0x84" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 209, - "op": "JUMP", - "gas": 2997934, - "gasCost": 8, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a2d4823", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0xd2", - "0x1819a2d4823", - "0x84", - "0x30a" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 778, - "op": "JUMPDEST", - "gas": 2997926, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a2d4823", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0xd2", - "0x1819a2d4823", - "0x84" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 779, - "op": "PUSH1", - "gas": 2997925, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a2d4823", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0xd2", - "0x1819a2d4823", - "0x84" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 781, - "op": "PUSH1", - "gas": 2997922, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a2d4823", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0xd2", - "0x1819a2d4823", - "0x84", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 783, - "op": "DUP3", - "gas": 2997919, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a2d4823", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0xd2", - "0x1819a2d4823", - "0x84", - "0x0", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 784, - "op": "ADD", - "gas": 2997916, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a2d4823", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0xd2", - "0x1819a2d4823", - "0x84", - "0x0", - "0x20", - "0x84" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 785, - "op": "SWAP1", - "gas": 2997913, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a2d4823", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0xd2", - "0x1819a2d4823", - "0x84", - "0x0", - "0xa4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 786, - "op": "POP", - "gas": 2997910, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a2d4823", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0xd2", - "0x1819a2d4823", - "0x84", - "0xa4", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 787, - "op": "PUSH2", - "gas": 2997908, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a2d4823", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0xd2", - "0x1819a2d4823", - "0x84", - "0xa4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 790, - "op": "PUSH1", - "gas": 2997905, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a2d4823", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0xd2", - "0x1819a2d4823", - "0x84", - "0xa4", - "0x31f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 792, - "op": "DUP4", - "gas": 2997902, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a2d4823", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0xd2", - "0x1819a2d4823", - "0x84", - "0xa4", - "0x31f", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 793, - "op": "ADD", - "gas": 2997899, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a2d4823", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0xd2", - "0x1819a2d4823", - "0x84", - "0xa4", - "0x31f", - "0x0", - "0x84" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 794, - "op": "DUP5", - "gas": 2997896, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a2d4823", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0xd2", - "0x1819a2d4823", - "0x84", - "0xa4", - "0x31f", - "0x84" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 795, - "op": "PUSH2", - "gas": 2997893, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a2d4823", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0xd2", - "0x1819a2d4823", - "0x84", - "0xa4", - "0x31f", - "0x84", - "0x1819a2d4823" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 798, - "op": "JUMP", - "gas": 2997890, - "gasCost": 8, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a2d4823", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0xd2", - "0x1819a2d4823", - "0x84", - "0xa4", - "0x31f", - "0x84", - "0x1819a2d4823", - "0x2d9" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 729, - "op": "JUMPDEST", - "gas": 2997882, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a2d4823", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0xd2", - "0x1819a2d4823", - "0x84", - "0xa4", - "0x31f", - "0x84", - "0x1819a2d4823" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 730, - "op": "PUSH2", - "gas": 2997881, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a2d4823", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0xd2", - "0x1819a2d4823", - "0x84", - "0xa4", - "0x31f", - "0x84", - "0x1819a2d4823" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 733, - "op": "DUP2", - "gas": 2997878, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a2d4823", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0xd2", - "0x1819a2d4823", - "0x84", - "0xa4", - "0x31f", - "0x84", - "0x1819a2d4823", - "0x2e2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 734, - "op": "PUSH2", - "gas": 2997875, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a2d4823", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0xd2", - "0x1819a2d4823", - "0x84", - "0xa4", - "0x31f", - "0x84", - "0x1819a2d4823", - "0x2e2", - "0x1819a2d4823" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 737, - "op": "JUMP", - "gas": 2997872, - "gasCost": 8, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a2d4823", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0xd2", - "0x1819a2d4823", - "0x84", - "0xa4", - "0x31f", - "0x84", - "0x1819a2d4823", - "0x2e2", - "0x1819a2d4823", - "0x341" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 833, - "op": "JUMPDEST", - "gas": 2997864, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a2d4823", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0xd2", - "0x1819a2d4823", - "0x84", - "0xa4", - "0x31f", - "0x84", - "0x1819a2d4823", - "0x2e2", - "0x1819a2d4823" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 834, - "op": "PUSH1", - "gas": 2997863, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a2d4823", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0xd2", - "0x1819a2d4823", - "0x84", - "0xa4", - "0x31f", - "0x84", - "0x1819a2d4823", - "0x2e2", - "0x1819a2d4823" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 836, - "op": "DUP2", - "gas": 2997860, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a2d4823", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0xd2", - "0x1819a2d4823", - "0x84", - "0xa4", - "0x31f", - "0x84", - "0x1819a2d4823", - "0x2e2", - "0x1819a2d4823", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 837, - "op": "SWAP1", - "gas": 2997857, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a2d4823", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0xd2", - "0x1819a2d4823", - "0x84", - "0xa4", - "0x31f", - "0x84", - "0x1819a2d4823", - "0x2e2", - "0x1819a2d4823", - "0x0", - "0x1819a2d4823" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 838, - "op": "POP", - "gas": 2997854, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a2d4823", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0xd2", - "0x1819a2d4823", - "0x84", - "0xa4", - "0x31f", - "0x84", - "0x1819a2d4823", - "0x2e2", - "0x1819a2d4823", - "0x1819a2d4823", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 839, - "op": "SWAP2", - "gas": 2997852, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a2d4823", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0xd2", - "0x1819a2d4823", - "0x84", - "0xa4", - "0x31f", - "0x84", - "0x1819a2d4823", - "0x2e2", - "0x1819a2d4823", - "0x1819a2d4823" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 840, - "op": "SWAP1", - "gas": 2997849, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a2d4823", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0xd2", - "0x1819a2d4823", - "0x84", - "0xa4", - "0x31f", - "0x84", - "0x1819a2d4823", - "0x1819a2d4823", - "0x1819a2d4823", - "0x2e2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 841, - "op": "POP", - "gas": 2997846, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a2d4823", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0xd2", - "0x1819a2d4823", - "0x84", - "0xa4", - "0x31f", - "0x84", - "0x1819a2d4823", - "0x1819a2d4823", - "0x2e2", - "0x1819a2d4823" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 842, - "op": "JUMP", - "gas": 2997844, - "gasCost": 8, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a2d4823", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0xd2", - "0x1819a2d4823", - "0x84", - "0xa4", - "0x31f", - "0x84", - "0x1819a2d4823", - "0x1819a2d4823", - "0x2e2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 738, - "op": "JUMPDEST", - "gas": 2997836, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a2d4823", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0xd2", - "0x1819a2d4823", - "0x84", - "0xa4", - "0x31f", - "0x84", - "0x1819a2d4823", - "0x1819a2d4823" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 739, - "op": "DUP3", - "gas": 2997835, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a2d4823", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0xd2", - "0x1819a2d4823", - "0x84", - "0xa4", - "0x31f", - "0x84", - "0x1819a2d4823", - "0x1819a2d4823" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 740, - "op": "MSTORE", - "gas": 2997832, - "gasCost": 6, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a2d4823", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0xd2", - "0x1819a2d4823", - "0x84", - "0xa4", - "0x31f", - "0x84", - "0x1819a2d4823", - "0x1819a2d4823", - "0x84" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 741, - "op": "POP", - "gas": 2997826, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a2d4823", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0xd2", - "0x1819a2d4823", - "0x84", - "0xa4", - "0x31f", - "0x84", - "0x1819a2d4823" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000181", - "9a2d482300000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 742, - "op": "POP", - "gas": 2997824, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a2d4823", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0xd2", - "0x1819a2d4823", - "0x84", - "0xa4", - "0x31f", - "0x84" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000181", - "9a2d482300000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 743, - "op": "JUMP", - "gas": 2997822, - "gasCost": 8, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a2d4823", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0xd2", - "0x1819a2d4823", - "0x84", - "0xa4", - "0x31f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000181", - "9a2d482300000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 799, - "op": "JUMPDEST", - "gas": 2997814, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a2d4823", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0xd2", - "0x1819a2d4823", - "0x84", - "0xa4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000181", - "9a2d482300000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 800, - "op": "SWAP3", - "gas": 2997813, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a2d4823", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0xd2", - "0x1819a2d4823", - "0x84", - "0xa4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000181", - "9a2d482300000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 801, - "op": "SWAP2", - "gas": 2997810, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a2d4823", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0xa4", - "0x1819a2d4823", - "0x84", - "0xd2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000181", - "9a2d482300000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 802, - "op": "POP", - "gas": 2997807, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a2d4823", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0xa4", - "0xd2", - "0x84", - "0x1819a2d4823" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000181", - "9a2d482300000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 803, - "op": "POP", - "gas": 2997805, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a2d4823", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0xa4", - "0xd2", - "0x84" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000181", - "9a2d482300000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 804, - "op": "JUMP", - "gas": 2997803, - "gasCost": 8, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a2d4823", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0xa4", - "0xd2" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000181", - "9a2d482300000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 210, - "op": "JUMPDEST", - "gas": 2997795, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a2d4823", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0xa4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000181", - "9a2d482300000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 211, - "op": "PUSH1", - "gas": 2997794, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a2d4823", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0xa4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000181", - "9a2d482300000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 213, - "op": "PUSH1", - "gas": 2997791, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a2d4823", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0xa4", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000181", - "9a2d482300000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 215, - "op": "MLOAD", - "gas": 2997788, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a2d4823", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0xa4", - "0x0", - "0x40" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000181", - "9a2d482300000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 216, - "op": "DUP1", - "gas": 2997785, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a2d4823", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0xa4", - "0x0", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000181", - "9a2d482300000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 217, - "op": "DUP4", - "gas": 2997782, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a2d4823", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0xa4", - "0x0", - "0x80", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000181", - "9a2d482300000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 218, - "op": "SUB", - "gas": 2997779, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a2d4823", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0xa4", - "0x0", - "0x80", - "0x80", - "0xa4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000181", - "9a2d482300000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 219, - "op": "DUP2", - "gas": 2997776, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a2d4823", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0xa4", - "0x0", - "0x80", - "0x24" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000181", - "9a2d482300000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 220, - "op": "PUSH1", - "gas": 2997773, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a2d4823", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0xa4", - "0x0", - "0x80", - "0x24", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000181", - "9a2d482300000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 222, - "op": "DUP8", - "gas": 2997770, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a2d4823", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0xa4", - "0x0", - "0x80", - "0x24", - "0x80", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000181", - "9a2d482300000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 223, - "op": "DUP1", - "gas": 2997767, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a2d4823", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0xa4", - "0x0", - "0x80", - "0x24", - "0x80", - "0x0", - "0x5fdbdfae180345c6cff5316c286727cf1a43327" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000181", - "9a2d482300000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 224, - "op": "EXTCODESIZE", - "gas": 2997764, - "gasCost": 2600, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a2d4823", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0xa4", - "0x0", - "0x80", - "0x24", - "0x80", - "0x0", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000181", - "9a2d482300000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 225, - "op": "ISZERO", - "gas": 2995164, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a2d4823", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0xa4", - "0x0", - "0x80", - "0x24", - "0x80", - "0x0", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x1c0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000181", - "9a2d482300000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 226, - "op": "DUP1", - "gas": 2995161, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a2d4823", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0xa4", - "0x0", - "0x80", - "0x24", - "0x80", - "0x0", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000181", - "9a2d482300000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 227, - "op": "ISZERO", - "gas": 2995158, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a2d4823", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0xa4", - "0x0", - "0x80", - "0x24", - "0x80", - "0x0", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000181", - "9a2d482300000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 228, - "op": "PUSH2", - "gas": 2995155, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a2d4823", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0xa4", - "0x0", - "0x80", - "0x24", - "0x80", - "0x0", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x0", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000181", - "9a2d482300000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 231, - "op": "JUMPI", - "gas": 2995152, - "gasCost": 10, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a2d4823", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0xa4", - "0x0", - "0x80", - "0x24", - "0x80", - "0x0", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x0", - "0x1", - "0xec" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000181", - "9a2d482300000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 236, - "op": "JUMPDEST", - "gas": 2995142, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a2d4823", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0xa4", - "0x0", - "0x80", - "0x24", - "0x80", - "0x0", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000181", - "9a2d482300000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 237, - "op": "POP", - "gas": 2995141, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a2d4823", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0xa4", - "0x0", - "0x80", - "0x24", - "0x80", - "0x0", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000181", - "9a2d482300000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 238, - "op": "GAS", - "gas": 2995139, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a2d4823", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0xa4", - "0x0", - "0x80", - "0x24", - "0x80", - "0x0", - "0x5fdbdfae180345c6cff5316c286727cf1a43327" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000181", - "9a2d482300000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 239, - "op": "CALL", - "gas": 2995137, - "gasCost": 2948340, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a2d4823", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0xa4", - "0x0", - "0x80", - "0x24", - "0x80", - "0x0", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x2db3c1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000181", - "9a2d482300000000000000000000000000000000000000000000000000000000" - ], - "extraData": { - "callFailed": true, - "codeList": [ - "0x608060405234801561001057600080fd5b50600436106100365760003560e01c806321848c461461003b578063b0f2b72a14610057575b600080fd5b61005560048036038101906100509190610277565b610073565b005b610071600480360381019061006c9190610277565b61010b565b005b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff166321848c46836040518263ffffffff1660e01b81526004016100d2919061030a565b600060405180830381600087803b1580156100ec57600080fd5b505af19250505080156100fd575060015b61010657610107565b5b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663b0f2b72a836040518263ffffffff1660e01b815260040161016a919061030a565b600060405180830381600087803b15801561018457600080fd5b505af1158015610198573d6000803e3d6000fd5b505050505050565b610236816040516024016101b491906102e8565b6040516020818303038152906040527f41304fac000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050610239565b50565b60008151905060006a636f6e736f6c652e6c6f679050602083016000808483855afa5050505050565b6000813590506102718161038f565b92915050565b60006020828403121561028957600080fd5b600061029784828501610262565b91505092915050565b60006102ab82610325565b6102b58185610330565b93506102c581856020860161034b565b6102ce8161037e565b840191505092915050565b6102e281610341565b82525050565b6000602082019050818103600083015261030281846102a0565b905092915050565b600060208201905061031f60008301846102d9565b92915050565b600081519050919050565b600082825260208201905092915050565b6000819050919050565b60005b8381101561036957808201518184015260208101905061034e565b83811115610378576000848401525b50505050565b6000601f19601f8301169050919050565b61039881610341565b81146103a357600080fd5b5056fea264697066735822122079a958a4c7a90094ec761b33fbd301163f4e1e62f3ccae8afe9f42a770e054f264736f6c63430008040033", - "0x608060405234801561001057600080fd5b506004361061004c5760003560e01c806321848c46146100515780632e64cec11461006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61006b60048036038101906100669190610116565b6100c5565b005b6100756100da565b604051610082919061014e565b60405180910390f35b6100a560048036038101906100a09190610116565b6100e3565b005b6100af6100ed565b6040516100bc919061014e565b60405180910390f35b8060008190555060006100d757600080fd5b50565b60008054905090565b8060008190555050565b6000806100f957600080fd5b600054905090565b60008135905061011081610173565b92915050565b60006020828403121561012857600080fd5b600061013684828501610101565b91505092915050565b61014881610169565b82525050565b6000602082019050610163600083018461013f565b92915050565b6000819050919050565b61017c81610169565b811461018757600080fd5b5056fea26469706673582212204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923f32e64736f6c63430008040033" - ], - "proofList": [ - { - "address": "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "nonce": 16, - "balance": "0x56bc75e2d630fffffffffffffffffffffffffffffffffffff7d19ccfe79cb3", - "codeHash": "0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470" - }, - { - "address": "0x05fdbdfae180345c6cff5316c286727cf1a43327", - "nonce": 1, - "balance": "0x0", - "codeHash": "0x09d2fd3a7cb9d5547a21c851248d703921e6348bfbdf4c0130695a3263f916ef" - }, - { - "address": "0x05fdbdfae180345c6cff5316c286727cf1a43327", - "nonce": 1, - "balance": "0x0", - "codeHash": "0x09d2fd3a7cb9d5547a21c851248d703921e6348bfbdf4c0130695a3263f916ef" - } - ] - } - }, - { - "pc": 0, - "op": "PUSH1", - "gas": 2948240, - "gasCost": 3, - "depth": 2 - }, - { - "pc": 2, - "op": "PUSH1", - "gas": 2948237, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x80" - ] - }, - { - "pc": 4, - "op": "MSTORE", - "gas": 2948234, - "gasCost": 12, - "depth": 2, - "stack": [ - "0x80", - "0x40" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 5, - "op": "CALLVALUE", - "gas": 2948222, - "gasCost": 2, - "depth": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 6, - "op": "DUP1", - "gas": 2948220, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 7, - "op": "ISZERO", - "gas": 2948217, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 8, - "op": "PUSH2", - "gas": 2948214, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x0", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 11, - "op": "JUMPI", - "gas": 2948211, - "gasCost": 10, - "depth": 2, - "stack": [ - "0x0", - "0x1", - "0x10" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 16, - "op": "JUMPDEST", - "gas": 2948201, - "gasCost": 1, - "depth": 2, - "stack": [ - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 17, - "op": "POP", - "gas": 2948200, - "gasCost": 2, - "depth": 2, - "stack": [ - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 18, - "op": "PUSH1", - "gas": 2948198, - "gasCost": 3, - "depth": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 20, - "op": "CALLDATASIZE", - "gas": 2948195, - "gasCost": 2, - "depth": 2, - "stack": [ - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 21, - "op": "LT", - "gas": 2948193, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x4", - "0x24" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 22, - "op": "PUSH2", - "gas": 2948190, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 25, - "op": "JUMPI", - "gas": 2948187, - "gasCost": 10, - "depth": 2, - "stack": [ - "0x0", - "0x4c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 26, - "op": "PUSH1", - "gas": 2948177, - "gasCost": 3, - "depth": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 28, - "op": "CALLDATALOAD", - "gas": 2948174, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 29, - "op": "PUSH1", - "gas": 2948171, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x21848c4600000000000000000000000000000000000000000000000000000181" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 31, - "op": "SHR", - "gas": 2948168, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x21848c4600000000000000000000000000000000000000000000000000000181", - "0xe0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 32, - "op": "DUP1", - "gas": 2948165, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x21848c46" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 33, - "op": "PUSH4", - "gas": 2948162, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x21848c46", - "0x21848c46" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 38, - "op": "EQ", - "gas": 2948159, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x21848c46", - "0x21848c46", - "0x21848c46" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 39, - "op": "PUSH2", - "gas": 2948156, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x21848c46", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 42, - "op": "JUMPI", - "gas": 2948153, - "gasCost": 10, - "depth": 2, - "stack": [ - "0x21848c46", - "0x1", - "0x51" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 81, - "op": "JUMPDEST", - "gas": 2948143, - "gasCost": 1, - "depth": 2, - "stack": [ - "0x21848c46" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 82, - "op": "PUSH2", - "gas": 2948142, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x21848c46" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 85, - "op": "PUSH1", - "gas": 2948139, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 87, - "op": "DUP1", - "gas": 2948136, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 88, - "op": "CALLDATASIZE", - "gas": 2948133, - "gasCost": 2, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x4", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 89, - "op": "SUB", - "gas": 2948131, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x4", - "0x4", - "0x24" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 90, - "op": "DUP2", - "gas": 2948128, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x4", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 91, - "op": "ADD", - "gas": 2948125, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x4", - "0x20", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 92, - "op": "SWAP1", - "gas": 2948122, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x4", - "0x24" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 93, - "op": "PUSH2", - "gas": 2948119, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x24", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 96, - "op": "SWAP2", - "gas": 2948116, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x24", - "0x4", - "0x66" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 97, - "op": "SWAP1", - "gas": 2948113, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x66", - "0x4", - "0x24" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 98, - "op": "PUSH2", - "gas": 2948110, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x66", - "0x24", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 101, - "op": "JUMP", - "gas": 2948107, - "gasCost": 8, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x66", - "0x24", - "0x4", - "0x116" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 278, - "op": "JUMPDEST", - "gas": 2948099, - "gasCost": 1, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x66", - "0x24", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 279, - "op": "PUSH1", - "gas": 2948098, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x66", - "0x24", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 281, - "op": "PUSH1", - "gas": 2948095, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x66", - "0x24", - "0x4", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 283, - "op": "DUP3", - "gas": 2948092, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x66", - "0x24", - "0x4", - "0x0", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 284, - "op": "DUP5", - "gas": 2948089, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x66", - "0x24", - "0x4", - "0x0", - "0x20", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 285, - "op": "SUB", - "gas": 2948086, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x66", - "0x24", - "0x4", - "0x0", - "0x20", - "0x4", - "0x24" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 286, - "op": "SLT", - "gas": 2948083, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x66", - "0x24", - "0x4", - "0x0", - "0x20", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 287, - "op": "ISZERO", - "gas": 2948080, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x66", - "0x24", - "0x4", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 288, - "op": "PUSH2", - "gas": 2948077, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x66", - "0x24", - "0x4", - "0x0", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 291, - "op": "JUMPI", - "gas": 2948074, - "gasCost": 10, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x66", - "0x24", - "0x4", - "0x0", - "0x1", - "0x128" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 296, - "op": "JUMPDEST", - "gas": 2948064, - "gasCost": 1, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x66", - "0x24", - "0x4", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 297, - "op": "PUSH1", - "gas": 2948063, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x66", - "0x24", - "0x4", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 299, - "op": "PUSH2", - "gas": 2948060, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x66", - "0x24", - "0x4", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 302, - "op": "DUP5", - "gas": 2948057, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x66", - "0x24", - "0x4", - "0x0", - "0x0", - "0x136" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 303, - "op": "DUP3", - "gas": 2948054, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x66", - "0x24", - "0x4", - "0x0", - "0x0", - "0x136", - "0x24" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 304, - "op": "DUP6", - "gas": 2948051, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x66", - "0x24", - "0x4", - "0x0", - "0x0", - "0x136", - "0x24", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 305, - "op": "ADD", - "gas": 2948048, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x66", - "0x24", - "0x4", - "0x0", - "0x0", - "0x136", - "0x24", - "0x0", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 306, - "op": "PUSH2", - "gas": 2948045, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x66", - "0x24", - "0x4", - "0x0", - "0x0", - "0x136", - "0x24", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 309, - "op": "JUMP", - "gas": 2948042, - "gasCost": 8, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x66", - "0x24", - "0x4", - "0x0", - "0x0", - "0x136", - "0x24", - "0x4", - "0x101" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 257, - "op": "JUMPDEST", - "gas": 2948034, - "gasCost": 1, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x66", - "0x24", - "0x4", - "0x0", - "0x0", - "0x136", - "0x24", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 258, - "op": "PUSH1", - "gas": 2948033, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x66", - "0x24", - "0x4", - "0x0", - "0x0", - "0x136", - "0x24", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 260, - "op": "DUP2", - "gas": 2948030, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x66", - "0x24", - "0x4", - "0x0", - "0x0", - "0x136", - "0x24", - "0x4", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 261, - "op": "CALLDATALOAD", - "gas": 2948027, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x66", - "0x24", - "0x4", - "0x0", - "0x0", - "0x136", - "0x24", - "0x4", - "0x0", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 262, - "op": "SWAP1", - "gas": 2948024, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x66", - "0x24", - "0x4", - "0x0", - "0x0", - "0x136", - "0x24", - "0x4", - "0x0", - "0x1819a2d4823" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 263, - "op": "POP", - "gas": 2948021, - "gasCost": 2, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x66", - "0x24", - "0x4", - "0x0", - "0x0", - "0x136", - "0x24", - "0x4", - "0x1819a2d4823", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 264, - "op": "PUSH2", - "gas": 2948019, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x66", - "0x24", - "0x4", - "0x0", - "0x0", - "0x136", - "0x24", - "0x4", - "0x1819a2d4823" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 267, - "op": "DUP2", - "gas": 2948016, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x66", - "0x24", - "0x4", - "0x0", - "0x0", - "0x136", - "0x24", - "0x4", - "0x1819a2d4823", - "0x110" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 268, - "op": "PUSH2", - "gas": 2948013, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x66", - "0x24", - "0x4", - "0x0", - "0x0", - "0x136", - "0x24", - "0x4", - "0x1819a2d4823", - "0x110", - "0x1819a2d4823" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 271, - "op": "JUMP", - "gas": 2948010, - "gasCost": 8, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x66", - "0x24", - "0x4", - "0x0", - "0x0", - "0x136", - "0x24", - "0x4", - "0x1819a2d4823", - "0x110", - "0x1819a2d4823", - "0x173" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 371, - "op": "JUMPDEST", - "gas": 2948002, - "gasCost": 1, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x66", - "0x24", - "0x4", - "0x0", - "0x0", - "0x136", - "0x24", - "0x4", - "0x1819a2d4823", - "0x110", - "0x1819a2d4823" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 372, - "op": "PUSH2", - "gas": 2948001, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x66", - "0x24", - "0x4", - "0x0", - "0x0", - "0x136", - "0x24", - "0x4", - "0x1819a2d4823", - "0x110", - "0x1819a2d4823" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 375, - "op": "DUP2", - "gas": 2947998, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x66", - "0x24", - "0x4", - "0x0", - "0x0", - "0x136", - "0x24", - "0x4", - "0x1819a2d4823", - "0x110", - "0x1819a2d4823", - "0x17c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 376, - "op": "PUSH2", - "gas": 2947995, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x66", - "0x24", - "0x4", - "0x0", - "0x0", - "0x136", - "0x24", - "0x4", - "0x1819a2d4823", - "0x110", - "0x1819a2d4823", - "0x17c", - "0x1819a2d4823" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 379, - "op": "JUMP", - "gas": 2947992, - "gasCost": 8, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x66", - "0x24", - "0x4", - "0x0", - "0x0", - "0x136", - "0x24", - "0x4", - "0x1819a2d4823", - "0x110", - "0x1819a2d4823", - "0x17c", - "0x1819a2d4823", - "0x169" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 361, - "op": "JUMPDEST", - "gas": 2947984, - "gasCost": 1, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x66", - "0x24", - "0x4", - "0x0", - "0x0", - "0x136", - "0x24", - "0x4", - "0x1819a2d4823", - "0x110", - "0x1819a2d4823", - "0x17c", - "0x1819a2d4823" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 362, - "op": "PUSH1", - "gas": 2947983, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x66", - "0x24", - "0x4", - "0x0", - "0x0", - "0x136", - "0x24", - "0x4", - "0x1819a2d4823", - "0x110", - "0x1819a2d4823", - "0x17c", - "0x1819a2d4823" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 364, - "op": "DUP2", - "gas": 2947980, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x66", - "0x24", - "0x4", - "0x0", - "0x0", - "0x136", - "0x24", - "0x4", - "0x1819a2d4823", - "0x110", - "0x1819a2d4823", - "0x17c", - "0x1819a2d4823", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 365, - "op": "SWAP1", - "gas": 2947977, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x66", - "0x24", - "0x4", - "0x0", - "0x0", - "0x136", - "0x24", - "0x4", - "0x1819a2d4823", - "0x110", - "0x1819a2d4823", - "0x17c", - "0x1819a2d4823", - "0x0", - "0x1819a2d4823" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 366, - "op": "POP", - "gas": 2947974, - "gasCost": 2, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x66", - "0x24", - "0x4", - "0x0", - "0x0", - "0x136", - "0x24", - "0x4", - "0x1819a2d4823", - "0x110", - "0x1819a2d4823", - "0x17c", - "0x1819a2d4823", - "0x1819a2d4823", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 367, - "op": "SWAP2", - "gas": 2947972, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x66", - "0x24", - "0x4", - "0x0", - "0x0", - "0x136", - "0x24", - "0x4", - "0x1819a2d4823", - "0x110", - "0x1819a2d4823", - "0x17c", - "0x1819a2d4823", - "0x1819a2d4823" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 368, - "op": "SWAP1", - "gas": 2947969, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x66", - "0x24", - "0x4", - "0x0", - "0x0", - "0x136", - "0x24", - "0x4", - "0x1819a2d4823", - "0x110", - "0x1819a2d4823", - "0x1819a2d4823", - "0x1819a2d4823", - "0x17c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 369, - "op": "POP", - "gas": 2947966, - "gasCost": 2, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x66", - "0x24", - "0x4", - "0x0", - "0x0", - "0x136", - "0x24", - "0x4", - "0x1819a2d4823", - "0x110", - "0x1819a2d4823", - "0x1819a2d4823", - "0x17c", - "0x1819a2d4823" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 370, - "op": "JUMP", - "gas": 2947964, - "gasCost": 8, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x66", - "0x24", - "0x4", - "0x0", - "0x0", - "0x136", - "0x24", - "0x4", - "0x1819a2d4823", - "0x110", - "0x1819a2d4823", - "0x1819a2d4823", - "0x17c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 380, - "op": "JUMPDEST", - "gas": 2947956, - "gasCost": 1, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x66", - "0x24", - "0x4", - "0x0", - "0x0", - "0x136", - "0x24", - "0x4", - "0x1819a2d4823", - "0x110", - "0x1819a2d4823", - "0x1819a2d4823" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 381, - "op": "DUP2", - "gas": 2947955, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x66", - "0x24", - "0x4", - "0x0", - "0x0", - "0x136", - "0x24", - "0x4", - "0x1819a2d4823", - "0x110", - "0x1819a2d4823", - "0x1819a2d4823" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 382, - "op": "EQ", - "gas": 2947952, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x66", - "0x24", - "0x4", - "0x0", - "0x0", - "0x136", - "0x24", - "0x4", - "0x1819a2d4823", - "0x110", - "0x1819a2d4823", - "0x1819a2d4823", - "0x1819a2d4823" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 383, - "op": "PUSH2", - "gas": 2947949, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x66", - "0x24", - "0x4", - "0x0", - "0x0", - "0x136", - "0x24", - "0x4", - "0x1819a2d4823", - "0x110", - "0x1819a2d4823", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 386, - "op": "JUMPI", - "gas": 2947946, - "gasCost": 10, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x66", - "0x24", - "0x4", - "0x0", - "0x0", - "0x136", - "0x24", - "0x4", - "0x1819a2d4823", - "0x110", - "0x1819a2d4823", - "0x1", - "0x187" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 391, - "op": "JUMPDEST", - "gas": 2947936, - "gasCost": 1, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x66", - "0x24", - "0x4", - "0x0", - "0x0", - "0x136", - "0x24", - "0x4", - "0x1819a2d4823", - "0x110", - "0x1819a2d4823" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 392, - "op": "POP", - "gas": 2947935, - "gasCost": 2, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x66", - "0x24", - "0x4", - "0x0", - "0x0", - "0x136", - "0x24", - "0x4", - "0x1819a2d4823", - "0x110", - "0x1819a2d4823" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 393, - "op": "JUMP", - "gas": 2947933, - "gasCost": 8, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x66", - "0x24", - "0x4", - "0x0", - "0x0", - "0x136", - "0x24", - "0x4", - "0x1819a2d4823", - "0x110" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 272, - "op": "JUMPDEST", - "gas": 2947925, - "gasCost": 1, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x66", - "0x24", - "0x4", - "0x0", - "0x0", - "0x136", - "0x24", - "0x4", - "0x1819a2d4823" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 273, - "op": "SWAP3", - "gas": 2947924, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x66", - "0x24", - "0x4", - "0x0", - "0x0", - "0x136", - "0x24", - "0x4", - "0x1819a2d4823" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 274, - "op": "SWAP2", - "gas": 2947921, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x66", - "0x24", - "0x4", - "0x0", - "0x0", - "0x1819a2d4823", - "0x24", - "0x4", - "0x136" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 275, - "op": "POP", - "gas": 2947918, - "gasCost": 2, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x66", - "0x24", - "0x4", - "0x0", - "0x0", - "0x1819a2d4823", - "0x136", - "0x4", - "0x24" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 276, - "op": "POP", - "gas": 2947916, - "gasCost": 2, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x66", - "0x24", - "0x4", - "0x0", - "0x0", - "0x1819a2d4823", - "0x136", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 277, - "op": "JUMP", - "gas": 2947914, - "gasCost": 8, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x66", - "0x24", - "0x4", - "0x0", - "0x0", - "0x1819a2d4823", - "0x136" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 310, - "op": "JUMPDEST", - "gas": 2947906, - "gasCost": 1, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x66", - "0x24", - "0x4", - "0x0", - "0x0", - "0x1819a2d4823" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 311, - "op": "SWAP2", - "gas": 2947905, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x66", - "0x24", - "0x4", - "0x0", - "0x0", - "0x1819a2d4823" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 312, - "op": "POP", - "gas": 2947902, - "gasCost": 2, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x66", - "0x24", - "0x4", - "0x1819a2d4823", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 313, - "op": "POP", - "gas": 2947900, - "gasCost": 2, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x66", - "0x24", - "0x4", - "0x1819a2d4823", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 314, - "op": "SWAP3", - "gas": 2947898, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x66", - "0x24", - "0x4", - "0x1819a2d4823" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 315, - "op": "SWAP2", - "gas": 2947895, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x1819a2d4823", - "0x24", - "0x4", - "0x66" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 316, - "op": "POP", - "gas": 2947892, - "gasCost": 2, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x1819a2d4823", - "0x66", - "0x4", - "0x24" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 317, - "op": "POP", - "gas": 2947890, - "gasCost": 2, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x1819a2d4823", - "0x66", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 318, - "op": "JUMP", - "gas": 2947888, - "gasCost": 8, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x1819a2d4823", - "0x66" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 102, - "op": "JUMPDEST", - "gas": 2947880, - "gasCost": 1, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x1819a2d4823" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 103, - "op": "PUSH2", - "gas": 2947879, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x1819a2d4823" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 106, - "op": "JUMP", - "gas": 2947876, - "gasCost": 8, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x1819a2d4823", - "0xc5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 197, - "op": "JUMPDEST", - "gas": 2947868, - "gasCost": 1, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x1819a2d4823" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 198, - "op": "DUP1", - "gas": 2947867, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x1819a2d4823" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 199, - "op": "PUSH1", - "gas": 2947864, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x1819a2d4823", - "0x1819a2d4823" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 201, - "op": "DUP2", - "gas": 2947861, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x1819a2d4823", - "0x1819a2d4823", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 202, - "op": "SWAP1", - "gas": 2947858, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x1819a2d4823", - "0x1819a2d4823", - "0x0", - "0x1819a2d4823" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 203, - "op": "SSTORE", - "gas": 2947855, - "gasCost": 5000, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x1819a2d4823", - "0x1819a2d4823", - "0x1819a2d4823", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0x0000000000000000000000000000000000000000000000000000000000000000": "0x000000000000000000000000000000000000000000000000000001819a2d4823" - }, - "extraData": { - "proofList": [ - { - "address": "0x05fdbdfae180345c6cff5316c286727cf1a43327", - "nonce": 1, - "balance": "0x0", - "codeHash": "0x09d2fd3a7cb9d5547a21c851248d703921e6348bfbdf4c0130695a3263f916ef", - "storage": { - "key": "0x0000000000000000000000000000000000000000000000000000000000000000", - "value": "0x000000000000000000000000000000000000000000000000000001819a28f668" - } - } - ] - } - }, - { - "pc": 204, - "op": "POP", - "gas": 2942855, - "gasCost": 2, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x1819a2d4823", - "0x1819a2d4823" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 205, - "op": "PUSH1", - "gas": 2942853, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x1819a2d4823" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 207, - "op": "PUSH2", - "gas": 2942850, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x1819a2d4823", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 210, - "op": "JUMPI", - "gas": 2942847, - "gasCost": 10, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x1819a2d4823", - "0x0", - "0xd7" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 211, - "op": "PUSH1", - "gas": 2942837, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x1819a2d4823" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 213, - "op": "DUP1", - "gas": 2942834, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x1819a2d4823", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 214, - "op": "REVERT", - "gas": 2942831, - "gasCost": 0, - "depth": 2, - "stack": [ - "0x21848c46", - "0x6b", - "0x1819a2d4823", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 240, - "op": "SWAP3", - "gas": 2989628, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a2d4823", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x21848c46", - "0xa4", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000181", - "9a2d482300000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 241, - "op": "POP", - "gas": 2989625, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a2d4823", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x0", - "0x21848c46", - "0xa4", - "0x5fdbdfae180345c6cff5316c286727cf1a43327" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000181", - "9a2d482300000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 242, - "op": "POP", - "gas": 2989623, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a2d4823", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x0", - "0x21848c46", - "0xa4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000181", - "9a2d482300000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 243, - "op": "POP", - "gas": 2989621, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a2d4823", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x0", - "0x21848c46" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000181", - "9a2d482300000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 244, - "op": "DUP1", - "gas": 2989619, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a2d4823", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000181", - "9a2d482300000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 245, - "op": "ISZERO", - "gas": 2989616, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a2d4823", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000181", - "9a2d482300000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 246, - "op": "PUSH2", - "gas": 2989613, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a2d4823", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x0", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000181", - "9a2d482300000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 249, - "op": "JUMPI", - "gas": 2989610, - "gasCost": 10, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a2d4823", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x0", - "0x1", - "0xfd" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000181", - "9a2d482300000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 253, - "op": "JUMPDEST", - "gas": 2989600, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a2d4823", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000181", - "9a2d482300000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 254, - "op": "PUSH2", - "gas": 2989599, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a2d4823", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000181", - "9a2d482300000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 257, - "op": "JUMPI", - "gas": 2989596, - "gasCost": 10, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a2d4823", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x0", - "0x106" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000181", - "9a2d482300000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 258, - "op": "PUSH2", - "gas": 2989586, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a2d4823", - "0x5fdbdfae180345c6cff5316c286727cf1a43327" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000181", - "9a2d482300000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 261, - "op": "JUMP", - "gas": 2989583, - "gasCost": 8, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a2d4823", - "0x5fdbdfae180345c6cff5316c286727cf1a43327", - "0x107" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000181", - "9a2d482300000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 263, - "op": "JUMPDEST", - "gas": 2989575, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a2d4823", - "0x5fdbdfae180345c6cff5316c286727cf1a43327" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000181", - "9a2d482300000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 264, - "op": "POP", - "gas": 2989574, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a2d4823", - "0x5fdbdfae180345c6cff5316c286727cf1a43327" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000181", - "9a2d482300000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 265, - "op": "POP", - "gas": 2989572, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55", - "0x1819a2d4823" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000181", - "9a2d482300000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 266, - "op": "JUMP", - "gas": 2989570, - "gasCost": 8, - "depth": 1, - "stack": [ - "0x21848c46", - "0x55" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000181", - "9a2d482300000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 85, - "op": "JUMPDEST", - "gas": 2989562, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x21848c46" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000181", - "9a2d482300000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 86, - "op": "STOP", - "gas": 2989561, - "gasCost": 0, - "depth": 1, - "stack": [ - "0x21848c46" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "21848c4600000000000000000000000000000000000000000000000000000181", - "9a2d482300000000000000000000000000000000000000000000000000000000" - ] - } - ] - }, - { - "gas": 188385, - "failed": false, - "from": { - "address": "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "nonce": 16, - "balance": "0x56bc75e2d630fffffffffffffffffffffffffffffffffffff96d6e8354f6eb", - "codeHash": "0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470" - }, - "to": { - "address": "0x33b5ddf9b5e82bb958eb885f5f241e783a113f18", - "nonce": 3, - "balance": "0x0", - "codeHash": "0xcc0a77f6e063b4b62eb7d9ed6f427cf687d8d0071d751850cfe5d136bc60d3ab" - }, - "accountAfter": [ - { - "address": "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "nonce": 17, - "balance": "0x56bc75e2d630fffffffffffffffffffffffffffffffffffff9537b30881bf3", - "codeHash": "0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470" - }, - { - "address": "0x33b5ddf9b5e82bb958eb885f5f241e783a113f18", - "nonce": 4, - "balance": "0x0", - "codeHash": "0xcc0a77f6e063b4b62eb7d9ed6f427cf687d8d0071d751850cfe5d136bc60d3ab" - } - ], - "codeHash": "0xcc0a77f6e063b4b62eb7d9ed6f427cf687d8d0071d751850cfe5d136bc60d3ab", - "byteCode": "0x608060405234801561001057600080fd5b50600436106100415760003560e01c8063314a09a814610046578063c5b0437c14610064578063ce0dbd6714610080575b600080fd5b61004e61009c565b60405161005b919061026f565b60405180910390f35b61007e60048036038101906100799190610228565b6100c5565b005b61009a60048036038101906100959190610228565b610141565b005b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000816040516100d4906101fa565b6100de919061028a565b604051809103906000f0801580156100fa573d6000803e3d6000fd5b509050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b8060405161014e90610207565b610158919061028a565b604051809103906000f0801561016b5760015b6101b55760008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506101f7565b806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505b50565b61026d806102f983390190565b60e28061056683390190565b600081359050610222816102e1565b92915050565b60006020828403121561023a57600080fd5b600061024884828501610213565b91505092915050565b61025a816102a5565b82525050565b610269816102d7565b82525050565b60006020820190506102846000830184610251565b92915050565b600060208201905061029f6000830184610260565b92915050565b60006102b0826102b7565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6102ea816102d7565b81146102f557600080fd5b5056fe608060405234801561001057600080fd5b5060405161026d38038061026d83398181016040528101906100329190610054565b806000819055505061009e565b60008151905061004e81610087565b92915050565b60006020828403121561006657600080fd5b60006100748482850161003f565b91505092915050565b6000819050919050565b6100908161007d565b811461009b57600080fd5b50565b6101c0806100ad6000396000f3fe608060405234801561001057600080fd5b506004361061004c5760003560e01c806321848c46146100515780632e64cec11461006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61006b60048036038101906100669190610116565b6100c5565b005b6100756100da565b604051610082919061014e565b60405180910390f35b6100a560048036038101906100a09190610116565b6100e3565b005b6100af6100ed565b6040516100bc919061014e565b60405180910390f35b8060008190555060006100d757600080fd5b50565b60008054905090565b8060008190555050565b6000806100f957600080fd5b600054905090565b60008135905061011081610173565b92915050565b60006020828403121561012857600080fd5b600061013684828501610101565b91505092915050565b61014881610169565b82525050565b6000602082019050610163600083018461013f565b92915050565b6000819050919050565b61017c81610169565b811461018757600080fd5b5056fea26469706673582212204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923f32e64736f6c634300080400336080604052348015600f57600080fd5b5060405160e238038060e28339818101604052810190602d91906052565b6000811415603a57600080fd5b506096565b600081519050604c816082565b92915050565b600060208284031215606357600080fd5b6000606f84828501603f565b91505092915050565b6000819050919050565b6089816078565b8114609357600080fd5b50565b603f8060a36000396000f3fe6080604052600080fdfea2646970667358221220560e159a32ea605e9aee00bc872694a542a7b8138ecc1b3745625561482898cc64736f6c63430008040033a2646970667358221220c8f2016f54e3fbe7b8d1a5d27b87e132360e287af3dc087208cb2eca804de3af64736f6c63430008040033", - "structLogs": [ - { - "pc": 0, - "op": "PUSH1", - "gas": 3000520, - "gasCost": 3, - "depth": 1 - }, - { - "pc": 2, - "op": "PUSH1", - "gas": 3000517, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80" - ] - }, - { - "pc": 4, - "op": "MSTORE", - "gas": 3000514, - "gasCost": 12, - "depth": 1, - "stack": [ - "0x80", - "0x40" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 5, - "op": "CALLVALUE", - "gas": 3000502, - "gasCost": 2, - "depth": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 6, - "op": "DUP1", - "gas": 3000500, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 7, - "op": "ISZERO", - "gas": 3000497, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 8, - "op": "PUSH2", - "gas": 3000494, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x0", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 11, - "op": "JUMPI", - "gas": 3000491, - "gasCost": 10, - "depth": 1, - "stack": [ - "0x0", - "0x1", - "0x10" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 16, - "op": "JUMPDEST", - "gas": 3000481, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 17, - "op": "POP", - "gas": 3000480, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 18, - "op": "PUSH1", - "gas": 3000478, - "gasCost": 3, - "depth": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 20, - "op": "CALLDATASIZE", - "gas": 3000475, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 21, - "op": "LT", - "gas": 3000473, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x4", - "0x24" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 22, - "op": "PUSH2", - "gas": 3000470, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 25, - "op": "JUMPI", - "gas": 3000467, - "gasCost": 10, - "depth": 1, - "stack": [ - "0x0", - "0x41" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 26, - "op": "PUSH1", - "gas": 3000457, - "gasCost": 3, - "depth": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 28, - "op": "CALLDATALOAD", - "gas": 3000454, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 29, - "op": "PUSH1", - "gas": 3000451, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c00000000000000000000000000000000000000000000000000000181" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 31, - "op": "SHR", - "gas": 3000448, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c00000000000000000000000000000000000000000000000000000181", - "0xe0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 32, - "op": "DUP1", - "gas": 3000445, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 33, - "op": "PUSH4", - "gas": 3000442, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0xc5b0437c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 38, - "op": "EQ", - "gas": 3000439, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0xc5b0437c", - "0x314a09a8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 39, - "op": "PUSH2", - "gas": 3000436, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 42, - "op": "JUMPI", - "gas": 3000433, - "gasCost": 10, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x0", - "0x46" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 43, - "op": "DUP1", - "gas": 3000423, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 44, - "op": "PUSH4", - "gas": 3000420, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0xc5b0437c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 49, - "op": "EQ", - "gas": 3000417, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0xc5b0437c", - "0xc5b0437c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 50, - "op": "PUSH2", - "gas": 3000414, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 53, - "op": "JUMPI", - "gas": 3000411, - "gasCost": 10, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x1", - "0x64" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 100, - "op": "JUMPDEST", - "gas": 3000401, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xc5b0437c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 101, - "op": "PUSH2", - "gas": 3000400, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 104, - "op": "PUSH1", - "gas": 3000397, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 106, - "op": "DUP1", - "gas": 3000394, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 107, - "op": "CALLDATASIZE", - "gas": 3000391, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x4", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 108, - "op": "SUB", - "gas": 3000389, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x4", - "0x4", - "0x24" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 109, - "op": "DUP2", - "gas": 3000386, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x4", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 110, - "op": "ADD", - "gas": 3000383, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x4", - "0x20", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 111, - "op": "SWAP1", - "gas": 3000380, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x4", - "0x24" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 112, - "op": "PUSH2", - "gas": 3000377, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x24", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 115, - "op": "SWAP2", - "gas": 3000374, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x24", - "0x4", - "0x79" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 116, - "op": "SWAP1", - "gas": 3000371, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x79", - "0x4", - "0x24" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 117, - "op": "PUSH2", - "gas": 3000368, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x79", - "0x24", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 120, - "op": "JUMP", - "gas": 3000365, - "gasCost": 8, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x79", - "0x24", - "0x4", - "0x228" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 552, - "op": "JUMPDEST", - "gas": 3000357, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x79", - "0x24", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 553, - "op": "PUSH1", - "gas": 3000356, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x79", - "0x24", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 555, - "op": "PUSH1", - "gas": 3000353, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x79", - "0x24", - "0x4", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 557, - "op": "DUP3", - "gas": 3000350, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x79", - "0x24", - "0x4", - "0x0", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 558, - "op": "DUP5", - "gas": 3000347, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x79", - "0x24", - "0x4", - "0x0", - "0x20", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 559, - "op": "SUB", - "gas": 3000344, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x79", - "0x24", - "0x4", - "0x0", - "0x20", - "0x4", - "0x24" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 560, - "op": "SLT", - "gas": 3000341, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x79", - "0x24", - "0x4", - "0x0", - "0x20", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 561, - "op": "ISZERO", - "gas": 3000338, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x79", - "0x24", - "0x4", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 562, - "op": "PUSH2", - "gas": 3000335, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x79", - "0x24", - "0x4", - "0x0", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 565, - "op": "JUMPI", - "gas": 3000332, - "gasCost": 10, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x79", - "0x24", - "0x4", - "0x0", - "0x1", - "0x23a" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 570, - "op": "JUMPDEST", - "gas": 3000322, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x79", - "0x24", - "0x4", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 571, - "op": "PUSH1", - "gas": 3000321, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x79", - "0x24", - "0x4", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 573, - "op": "PUSH2", - "gas": 3000318, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x79", - "0x24", - "0x4", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 576, - "op": "DUP5", - "gas": 3000315, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x79", - "0x24", - "0x4", - "0x0", - "0x0", - "0x248" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 577, - "op": "DUP3", - "gas": 3000312, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x79", - "0x24", - "0x4", - "0x0", - "0x0", - "0x248", - "0x24" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 578, - "op": "DUP6", - "gas": 3000309, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x79", - "0x24", - "0x4", - "0x0", - "0x0", - "0x248", - "0x24", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 579, - "op": "ADD", - "gas": 3000306, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x79", - "0x24", - "0x4", - "0x0", - "0x0", - "0x248", - "0x24", - "0x0", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 580, - "op": "PUSH2", - "gas": 3000303, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x79", - "0x24", - "0x4", - "0x0", - "0x0", - "0x248", - "0x24", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 583, - "op": "JUMP", - "gas": 3000300, - "gasCost": 8, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x79", - "0x24", - "0x4", - "0x0", - "0x0", - "0x248", - "0x24", - "0x4", - "0x213" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 531, - "op": "JUMPDEST", - "gas": 3000292, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x79", - "0x24", - "0x4", - "0x0", - "0x0", - "0x248", - "0x24", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 532, - "op": "PUSH1", - "gas": 3000291, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x79", - "0x24", - "0x4", - "0x0", - "0x0", - "0x248", - "0x24", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 534, - "op": "DUP2", - "gas": 3000288, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x79", - "0x24", - "0x4", - "0x0", - "0x0", - "0x248", - "0x24", - "0x4", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 535, - "op": "CALLDATALOAD", - "gas": 3000285, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x79", - "0x24", - "0x4", - "0x0", - "0x0", - "0x248", - "0x24", - "0x4", - "0x0", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 536, - "op": "SWAP1", - "gas": 3000282, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x79", - "0x24", - "0x4", - "0x0", - "0x0", - "0x248", - "0x24", - "0x4", - "0x0", - "0x1819a2d4aa8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 537, - "op": "POP", - "gas": 3000279, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x79", - "0x24", - "0x4", - "0x0", - "0x0", - "0x248", - "0x24", - "0x4", - "0x1819a2d4aa8", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 538, - "op": "PUSH2", - "gas": 3000277, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x79", - "0x24", - "0x4", - "0x0", - "0x0", - "0x248", - "0x24", - "0x4", - "0x1819a2d4aa8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 541, - "op": "DUP2", - "gas": 3000274, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x79", - "0x24", - "0x4", - "0x0", - "0x0", - "0x248", - "0x24", - "0x4", - "0x1819a2d4aa8", - "0x222" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 542, - "op": "PUSH2", - "gas": 3000271, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x79", - "0x24", - "0x4", - "0x0", - "0x0", - "0x248", - "0x24", - "0x4", - "0x1819a2d4aa8", - "0x222", - "0x1819a2d4aa8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 545, - "op": "JUMP", - "gas": 3000268, - "gasCost": 8, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x79", - "0x24", - "0x4", - "0x0", - "0x0", - "0x248", - "0x24", - "0x4", - "0x1819a2d4aa8", - "0x222", - "0x1819a2d4aa8", - "0x2e1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 737, - "op": "JUMPDEST", - "gas": 3000260, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x79", - "0x24", - "0x4", - "0x0", - "0x0", - "0x248", - "0x24", - "0x4", - "0x1819a2d4aa8", - "0x222", - "0x1819a2d4aa8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 738, - "op": "PUSH2", - "gas": 3000259, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x79", - "0x24", - "0x4", - "0x0", - "0x0", - "0x248", - "0x24", - "0x4", - "0x1819a2d4aa8", - "0x222", - "0x1819a2d4aa8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 741, - "op": "DUP2", - "gas": 3000256, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x79", - "0x24", - "0x4", - "0x0", - "0x0", - "0x248", - "0x24", - "0x4", - "0x1819a2d4aa8", - "0x222", - "0x1819a2d4aa8", - "0x2ea" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 742, - "op": "PUSH2", - "gas": 3000253, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x79", - "0x24", - "0x4", - "0x0", - "0x0", - "0x248", - "0x24", - "0x4", - "0x1819a2d4aa8", - "0x222", - "0x1819a2d4aa8", - "0x2ea", - "0x1819a2d4aa8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 745, - "op": "JUMP", - "gas": 3000250, - "gasCost": 8, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x79", - "0x24", - "0x4", - "0x0", - "0x0", - "0x248", - "0x24", - "0x4", - "0x1819a2d4aa8", - "0x222", - "0x1819a2d4aa8", - "0x2ea", - "0x1819a2d4aa8", - "0x2d7" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 727, - "op": "JUMPDEST", - "gas": 3000242, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x79", - "0x24", - "0x4", - "0x0", - "0x0", - "0x248", - "0x24", - "0x4", - "0x1819a2d4aa8", - "0x222", - "0x1819a2d4aa8", - "0x2ea", - "0x1819a2d4aa8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 728, - "op": "PUSH1", - "gas": 3000241, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x79", - "0x24", - "0x4", - "0x0", - "0x0", - "0x248", - "0x24", - "0x4", - "0x1819a2d4aa8", - "0x222", - "0x1819a2d4aa8", - "0x2ea", - "0x1819a2d4aa8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 730, - "op": "DUP2", - "gas": 3000238, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x79", - "0x24", - "0x4", - "0x0", - "0x0", - "0x248", - "0x24", - "0x4", - "0x1819a2d4aa8", - "0x222", - "0x1819a2d4aa8", - "0x2ea", - "0x1819a2d4aa8", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 731, - "op": "SWAP1", - "gas": 3000235, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x79", - "0x24", - "0x4", - "0x0", - "0x0", - "0x248", - "0x24", - "0x4", - "0x1819a2d4aa8", - "0x222", - "0x1819a2d4aa8", - "0x2ea", - "0x1819a2d4aa8", - "0x0", - "0x1819a2d4aa8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 732, - "op": "POP", - "gas": 3000232, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x79", - "0x24", - "0x4", - "0x0", - "0x0", - "0x248", - "0x24", - "0x4", - "0x1819a2d4aa8", - "0x222", - "0x1819a2d4aa8", - "0x2ea", - "0x1819a2d4aa8", - "0x1819a2d4aa8", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 733, - "op": "SWAP2", - "gas": 3000230, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x79", - "0x24", - "0x4", - "0x0", - "0x0", - "0x248", - "0x24", - "0x4", - "0x1819a2d4aa8", - "0x222", - "0x1819a2d4aa8", - "0x2ea", - "0x1819a2d4aa8", - "0x1819a2d4aa8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 734, - "op": "SWAP1", - "gas": 3000227, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x79", - "0x24", - "0x4", - "0x0", - "0x0", - "0x248", - "0x24", - "0x4", - "0x1819a2d4aa8", - "0x222", - "0x1819a2d4aa8", - "0x1819a2d4aa8", - "0x1819a2d4aa8", - "0x2ea" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 735, - "op": "POP", - "gas": 3000224, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x79", - "0x24", - "0x4", - "0x0", - "0x0", - "0x248", - "0x24", - "0x4", - "0x1819a2d4aa8", - "0x222", - "0x1819a2d4aa8", - "0x1819a2d4aa8", - "0x2ea", - "0x1819a2d4aa8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 736, - "op": "JUMP", - "gas": 3000222, - "gasCost": 8, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x79", - "0x24", - "0x4", - "0x0", - "0x0", - "0x248", - "0x24", - "0x4", - "0x1819a2d4aa8", - "0x222", - "0x1819a2d4aa8", - "0x1819a2d4aa8", - "0x2ea" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 746, - "op": "JUMPDEST", - "gas": 3000214, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x79", - "0x24", - "0x4", - "0x0", - "0x0", - "0x248", - "0x24", - "0x4", - "0x1819a2d4aa8", - "0x222", - "0x1819a2d4aa8", - "0x1819a2d4aa8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 747, - "op": "DUP2", - "gas": 3000213, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x79", - "0x24", - "0x4", - "0x0", - "0x0", - "0x248", - "0x24", - "0x4", - "0x1819a2d4aa8", - "0x222", - "0x1819a2d4aa8", - "0x1819a2d4aa8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 748, - "op": "EQ", - "gas": 3000210, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x79", - "0x24", - "0x4", - "0x0", - "0x0", - "0x248", - "0x24", - "0x4", - "0x1819a2d4aa8", - "0x222", - "0x1819a2d4aa8", - "0x1819a2d4aa8", - "0x1819a2d4aa8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 749, - "op": "PUSH2", - "gas": 3000207, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x79", - "0x24", - "0x4", - "0x0", - "0x0", - "0x248", - "0x24", - "0x4", - "0x1819a2d4aa8", - "0x222", - "0x1819a2d4aa8", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 752, - "op": "JUMPI", - "gas": 3000204, - "gasCost": 10, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x79", - "0x24", - "0x4", - "0x0", - "0x0", - "0x248", - "0x24", - "0x4", - "0x1819a2d4aa8", - "0x222", - "0x1819a2d4aa8", - "0x1", - "0x2f5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 757, - "op": "JUMPDEST", - "gas": 3000194, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x79", - "0x24", - "0x4", - "0x0", - "0x0", - "0x248", - "0x24", - "0x4", - "0x1819a2d4aa8", - "0x222", - "0x1819a2d4aa8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 758, - "op": "POP", - "gas": 3000193, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x79", - "0x24", - "0x4", - "0x0", - "0x0", - "0x248", - "0x24", - "0x4", - "0x1819a2d4aa8", - "0x222", - "0x1819a2d4aa8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 759, - "op": "JUMP", - "gas": 3000191, - "gasCost": 8, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x79", - "0x24", - "0x4", - "0x0", - "0x0", - "0x248", - "0x24", - "0x4", - "0x1819a2d4aa8", - "0x222" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 546, - "op": "JUMPDEST", - "gas": 3000183, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x79", - "0x24", - "0x4", - "0x0", - "0x0", - "0x248", - "0x24", - "0x4", - "0x1819a2d4aa8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 547, - "op": "SWAP3", - "gas": 3000182, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x79", - "0x24", - "0x4", - "0x0", - "0x0", - "0x248", - "0x24", - "0x4", - "0x1819a2d4aa8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 548, - "op": "SWAP2", - "gas": 3000179, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x79", - "0x24", - "0x4", - "0x0", - "0x0", - "0x1819a2d4aa8", - "0x24", - "0x4", - "0x248" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 549, - "op": "POP", - "gas": 3000176, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x79", - "0x24", - "0x4", - "0x0", - "0x0", - "0x1819a2d4aa8", - "0x248", - "0x4", - "0x24" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 550, - "op": "POP", - "gas": 3000174, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x79", - "0x24", - "0x4", - "0x0", - "0x0", - "0x1819a2d4aa8", - "0x248", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 551, - "op": "JUMP", - "gas": 3000172, - "gasCost": 8, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x79", - "0x24", - "0x4", - "0x0", - "0x0", - "0x1819a2d4aa8", - "0x248" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 584, - "op": "JUMPDEST", - "gas": 3000164, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x79", - "0x24", - "0x4", - "0x0", - "0x0", - "0x1819a2d4aa8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 585, - "op": "SWAP2", - "gas": 3000163, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x79", - "0x24", - "0x4", - "0x0", - "0x0", - "0x1819a2d4aa8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 586, - "op": "POP", - "gas": 3000160, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x79", - "0x24", - "0x4", - "0x1819a2d4aa8", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 587, - "op": "POP", - "gas": 3000158, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x79", - "0x24", - "0x4", - "0x1819a2d4aa8", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 588, - "op": "SWAP3", - "gas": 3000156, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x79", - "0x24", - "0x4", - "0x1819a2d4aa8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 589, - "op": "SWAP2", - "gas": 3000153, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a2d4aa8", - "0x24", - "0x4", - "0x79" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 590, - "op": "POP", - "gas": 3000150, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a2d4aa8", - "0x79", - "0x4", - "0x24" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 591, - "op": "POP", - "gas": 3000148, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a2d4aa8", - "0x79", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 592, - "op": "JUMP", - "gas": 3000146, - "gasCost": 8, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a2d4aa8", - "0x79" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 121, - "op": "JUMPDEST", - "gas": 3000138, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a2d4aa8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 122, - "op": "PUSH2", - "gas": 3000137, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a2d4aa8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 125, - "op": "JUMP", - "gas": 3000134, - "gasCost": 8, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a2d4aa8", - "0xc5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 197, - "op": "JUMPDEST", - "gas": 3000126, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a2d4aa8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 198, - "op": "PUSH1", - "gas": 3000125, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a2d4aa8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 200, - "op": "DUP2", - "gas": 3000122, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a2d4aa8", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 201, - "op": "PUSH1", - "gas": 3000119, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a2d4aa8", - "0x0", - "0x1819a2d4aa8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 203, - "op": "MLOAD", - "gas": 3000116, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a2d4aa8", - "0x0", - "0x1819a2d4aa8", - "0x40" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 204, - "op": "PUSH2", - "gas": 3000113, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a2d4aa8", - "0x0", - "0x1819a2d4aa8", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 207, - "op": "SWAP1", - "gas": 3000110, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a2d4aa8", - "0x0", - "0x1819a2d4aa8", - "0x80", - "0xd4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 208, - "op": "PUSH2", - "gas": 3000107, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a2d4aa8", - "0x0", - "0x1819a2d4aa8", - "0xd4", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 211, - "op": "JUMP", - "gas": 3000104, - "gasCost": 8, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a2d4aa8", - "0x0", - "0x1819a2d4aa8", - "0xd4", - "0x80", - "0x1fa" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 506, - "op": "JUMPDEST", - "gas": 3000096, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a2d4aa8", - "0x0", - "0x1819a2d4aa8", - "0xd4", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 507, - "op": "PUSH2", - "gas": 3000095, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a2d4aa8", - "0x0", - "0x1819a2d4aa8", - "0xd4", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 510, - "op": "DUP1", - "gas": 3000092, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a2d4aa8", - "0x0", - "0x1819a2d4aa8", - "0xd4", - "0x80", - "0x26d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 511, - "op": "PUSH2", - "gas": 3000089, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a2d4aa8", - "0x0", - "0x1819a2d4aa8", - "0xd4", - "0x80", - "0x26d", - "0x26d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 514, - "op": "DUP4", - "gas": 3000086, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a2d4aa8", - "0x0", - "0x1819a2d4aa8", - "0xd4", - "0x80", - "0x26d", - "0x26d", - "0x2f9" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 515, - "op": "CODECOPY", - "gas": 3000083, - "gasCost": 127, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a2d4aa8", - "0x0", - "0x1819a2d4aa8", - "0xd4", - "0x80", - "0x26d", - "0x26d", - "0x2f9", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 516, - "op": "ADD", - "gas": 2999956, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a2d4aa8", - "0x0", - "0x1819a2d4aa8", - "0xd4", - "0x80", - "0x26d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000" - ] - }, - { - "pc": 517, - "op": "SWAP1", - "gas": 2999953, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a2d4aa8", - "0x0", - "0x1819a2d4aa8", - "0xd4", - "0x2ed" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000" - ] - }, - { - "pc": 518, - "op": "JUMP", - "gas": 2999950, - "gasCost": 8, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a2d4aa8", - "0x0", - "0x1819a2d4aa8", - "0x2ed", - "0xd4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000" - ] - }, - { - "pc": 212, - "op": "JUMPDEST", - "gas": 2999942, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a2d4aa8", - "0x0", - "0x1819a2d4aa8", - "0x2ed" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000" - ] - }, - { - "pc": 213, - "op": "PUSH2", - "gas": 2999941, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a2d4aa8", - "0x0", - "0x1819a2d4aa8", - "0x2ed" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000" - ] - }, - { - "pc": 216, - "op": "SWAP2", - "gas": 2999938, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a2d4aa8", - "0x0", - "0x1819a2d4aa8", - "0x2ed", - "0xde" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000" - ] - }, - { - "pc": 217, - "op": "SWAP1", - "gas": 2999935, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a2d4aa8", - "0x0", - "0xde", - "0x2ed", - "0x1819a2d4aa8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000" - ] - }, - { - "pc": 218, - "op": "PUSH2", - "gas": 2999932, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a2d4aa8", - "0x0", - "0xde", - "0x1819a2d4aa8", - "0x2ed" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000" - ] - }, - { - "pc": 221, - "op": "JUMP", - "gas": 2999929, - "gasCost": 8, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a2d4aa8", - "0x0", - "0xde", - "0x1819a2d4aa8", - "0x2ed", - "0x28a" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000" - ] - }, - { - "pc": 650, - "op": "JUMPDEST", - "gas": 2999921, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a2d4aa8", - "0x0", - "0xde", - "0x1819a2d4aa8", - "0x2ed" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000" - ] - }, - { - "pc": 651, - "op": "PUSH1", - "gas": 2999920, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a2d4aa8", - "0x0", - "0xde", - "0x1819a2d4aa8", - "0x2ed" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000" - ] - }, - { - "pc": 653, - "op": "PUSH1", - "gas": 2999917, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a2d4aa8", - "0x0", - "0xde", - "0x1819a2d4aa8", - "0x2ed", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000" - ] - }, - { - "pc": 655, - "op": "DUP3", - "gas": 2999914, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a2d4aa8", - "0x0", - "0xde", - "0x1819a2d4aa8", - "0x2ed", - "0x0", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000" - ] - }, - { - "pc": 656, - "op": "ADD", - "gas": 2999911, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a2d4aa8", - "0x0", - "0xde", - "0x1819a2d4aa8", - "0x2ed", - "0x0", - "0x20", - "0x2ed" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000" - ] - }, - { - "pc": 657, - "op": "SWAP1", - "gas": 2999908, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a2d4aa8", - "0x0", - "0xde", - "0x1819a2d4aa8", - "0x2ed", - "0x0", - "0x30d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000" - ] - }, - { - "pc": 658, - "op": "POP", - "gas": 2999905, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a2d4aa8", - "0x0", - "0xde", - "0x1819a2d4aa8", - "0x2ed", - "0x30d", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000" - ] - }, - { - "pc": 659, - "op": "PUSH2", - "gas": 2999903, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a2d4aa8", - "0x0", - "0xde", - "0x1819a2d4aa8", - "0x2ed", - "0x30d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000" - ] - }, - { - "pc": 662, - "op": "PUSH1", - "gas": 2999900, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a2d4aa8", - "0x0", - "0xde", - "0x1819a2d4aa8", - "0x2ed", - "0x30d", - "0x29f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000" - ] - }, - { - "pc": 664, - "op": "DUP4", - "gas": 2999897, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a2d4aa8", - "0x0", - "0xde", - "0x1819a2d4aa8", - "0x2ed", - "0x30d", - "0x29f", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000" - ] - }, - { - "pc": 665, - "op": "ADD", - "gas": 2999894, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a2d4aa8", - "0x0", - "0xde", - "0x1819a2d4aa8", - "0x2ed", - "0x30d", - "0x29f", - "0x0", - "0x2ed" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000" - ] - }, - { - "pc": 666, - "op": "DUP5", - "gas": 2999891, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a2d4aa8", - "0x0", - "0xde", - "0x1819a2d4aa8", - "0x2ed", - "0x30d", - "0x29f", - "0x2ed" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000" - ] - }, - { - "pc": 667, - "op": "PUSH2", - "gas": 2999888, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a2d4aa8", - "0x0", - "0xde", - "0x1819a2d4aa8", - "0x2ed", - "0x30d", - "0x29f", - "0x2ed", - "0x1819a2d4aa8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000" - ] - }, - { - "pc": 670, - "op": "JUMP", - "gas": 2999885, - "gasCost": 8, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a2d4aa8", - "0x0", - "0xde", - "0x1819a2d4aa8", - "0x2ed", - "0x30d", - "0x29f", - "0x2ed", - "0x1819a2d4aa8", - "0x260" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000" - ] - }, - { - "pc": 608, - "op": "JUMPDEST", - "gas": 2999877, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a2d4aa8", - "0x0", - "0xde", - "0x1819a2d4aa8", - "0x2ed", - "0x30d", - "0x29f", - "0x2ed", - "0x1819a2d4aa8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000" - ] - }, - { - "pc": 609, - "op": "PUSH2", - "gas": 2999876, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a2d4aa8", - "0x0", - "0xde", - "0x1819a2d4aa8", - "0x2ed", - "0x30d", - "0x29f", - "0x2ed", - "0x1819a2d4aa8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000" - ] - }, - { - "pc": 612, - "op": "DUP2", - "gas": 2999873, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a2d4aa8", - "0x0", - "0xde", - "0x1819a2d4aa8", - "0x2ed", - "0x30d", - "0x29f", - "0x2ed", - "0x1819a2d4aa8", - "0x269" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000" - ] - }, - { - "pc": 613, - "op": "PUSH2", - "gas": 2999870, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a2d4aa8", - "0x0", - "0xde", - "0x1819a2d4aa8", - "0x2ed", - "0x30d", - "0x29f", - "0x2ed", - "0x1819a2d4aa8", - "0x269", - "0x1819a2d4aa8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000" - ] - }, - { - "pc": 616, - "op": "JUMP", - "gas": 2999867, - "gasCost": 8, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a2d4aa8", - "0x0", - "0xde", - "0x1819a2d4aa8", - "0x2ed", - "0x30d", - "0x29f", - "0x2ed", - "0x1819a2d4aa8", - "0x269", - "0x1819a2d4aa8", - "0x2d7" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000" - ] - }, - { - "pc": 727, - "op": "JUMPDEST", - "gas": 2999859, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a2d4aa8", - "0x0", - "0xde", - "0x1819a2d4aa8", - "0x2ed", - "0x30d", - "0x29f", - "0x2ed", - "0x1819a2d4aa8", - "0x269", - "0x1819a2d4aa8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000" - ] - }, - { - "pc": 728, - "op": "PUSH1", - "gas": 2999858, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a2d4aa8", - "0x0", - "0xde", - "0x1819a2d4aa8", - "0x2ed", - "0x30d", - "0x29f", - "0x2ed", - "0x1819a2d4aa8", - "0x269", - "0x1819a2d4aa8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000" - ] - }, - { - "pc": 730, - "op": "DUP2", - "gas": 2999855, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a2d4aa8", - "0x0", - "0xde", - "0x1819a2d4aa8", - "0x2ed", - "0x30d", - "0x29f", - "0x2ed", - "0x1819a2d4aa8", - "0x269", - "0x1819a2d4aa8", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000" - ] - }, - { - "pc": 731, - "op": "SWAP1", - "gas": 2999852, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a2d4aa8", - "0x0", - "0xde", - "0x1819a2d4aa8", - "0x2ed", - "0x30d", - "0x29f", - "0x2ed", - "0x1819a2d4aa8", - "0x269", - "0x1819a2d4aa8", - "0x0", - "0x1819a2d4aa8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000" - ] - }, - { - "pc": 732, - "op": "POP", - "gas": 2999849, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a2d4aa8", - "0x0", - "0xde", - "0x1819a2d4aa8", - "0x2ed", - "0x30d", - "0x29f", - "0x2ed", - "0x1819a2d4aa8", - "0x269", - "0x1819a2d4aa8", - "0x1819a2d4aa8", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000" - ] - }, - { - "pc": 733, - "op": "SWAP2", - "gas": 2999847, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a2d4aa8", - "0x0", - "0xde", - "0x1819a2d4aa8", - "0x2ed", - "0x30d", - "0x29f", - "0x2ed", - "0x1819a2d4aa8", - "0x269", - "0x1819a2d4aa8", - "0x1819a2d4aa8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000" - ] - }, - { - "pc": 734, - "op": "SWAP1", - "gas": 2999844, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a2d4aa8", - "0x0", - "0xde", - "0x1819a2d4aa8", - "0x2ed", - "0x30d", - "0x29f", - "0x2ed", - "0x1819a2d4aa8", - "0x1819a2d4aa8", - "0x1819a2d4aa8", - "0x269" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000" - ] - }, - { - "pc": 735, - "op": "POP", - "gas": 2999841, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a2d4aa8", - "0x0", - "0xde", - "0x1819a2d4aa8", - "0x2ed", - "0x30d", - "0x29f", - "0x2ed", - "0x1819a2d4aa8", - "0x1819a2d4aa8", - "0x269", - "0x1819a2d4aa8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000" - ] - }, - { - "pc": 736, - "op": "JUMP", - "gas": 2999839, - "gasCost": 8, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a2d4aa8", - "0x0", - "0xde", - "0x1819a2d4aa8", - "0x2ed", - "0x30d", - "0x29f", - "0x2ed", - "0x1819a2d4aa8", - "0x1819a2d4aa8", - "0x269" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000" - ] - }, - { - "pc": 617, - "op": "JUMPDEST", - "gas": 2999831, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a2d4aa8", - "0x0", - "0xde", - "0x1819a2d4aa8", - "0x2ed", - "0x30d", - "0x29f", - "0x2ed", - "0x1819a2d4aa8", - "0x1819a2d4aa8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000" - ] - }, - { - "pc": 618, - "op": "DUP3", - "gas": 2999830, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a2d4aa8", - "0x0", - "0xde", - "0x1819a2d4aa8", - "0x2ed", - "0x30d", - "0x29f", - "0x2ed", - "0x1819a2d4aa8", - "0x1819a2d4aa8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000" - ] - }, - { - "pc": 619, - "op": "MSTORE", - "gas": 2999827, - "gasCost": 6, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a2d4aa8", - "0x0", - "0xde", - "0x1819a2d4aa8", - "0x2ed", - "0x30d", - "0x29f", - "0x2ed", - "0x1819a2d4aa8", - "0x1819a2d4aa8", - "0x2ed" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 620, - "op": "POP", - "gas": 2999821, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a2d4aa8", - "0x0", - "0xde", - "0x1819a2d4aa8", - "0x2ed", - "0x30d", - "0x29f", - "0x2ed", - "0x1819a2d4aa8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000", - "0000000000000001819a2d4aa800000000000000000000000000000000000000" - ] - }, - { - "pc": 621, - "op": "POP", - "gas": 2999819, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a2d4aa8", - "0x0", - "0xde", - "0x1819a2d4aa8", - "0x2ed", - "0x30d", - "0x29f", - "0x2ed" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000", - "0000000000000001819a2d4aa800000000000000000000000000000000000000" - ] - }, - { - "pc": 622, - "op": "JUMP", - "gas": 2999817, - "gasCost": 8, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a2d4aa8", - "0x0", - "0xde", - "0x1819a2d4aa8", - "0x2ed", - "0x30d", - "0x29f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000", - "0000000000000001819a2d4aa800000000000000000000000000000000000000" - ] - }, - { - "pc": 671, - "op": "JUMPDEST", - "gas": 2999809, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a2d4aa8", - "0x0", - "0xde", - "0x1819a2d4aa8", - "0x2ed", - "0x30d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000", - "0000000000000001819a2d4aa800000000000000000000000000000000000000" - ] - }, - { - "pc": 672, - "op": "SWAP3", - "gas": 2999808, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a2d4aa8", - "0x0", - "0xde", - "0x1819a2d4aa8", - "0x2ed", - "0x30d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000", - "0000000000000001819a2d4aa800000000000000000000000000000000000000" - ] - }, - { - "pc": 673, - "op": "SWAP2", - "gas": 2999805, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a2d4aa8", - "0x0", - "0x30d", - "0x1819a2d4aa8", - "0x2ed", - "0xde" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000", - "0000000000000001819a2d4aa800000000000000000000000000000000000000" - ] - }, - { - "pc": 674, - "op": "POP", - "gas": 2999802, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a2d4aa8", - "0x0", - "0x30d", - "0xde", - "0x2ed", - "0x1819a2d4aa8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000", - "0000000000000001819a2d4aa800000000000000000000000000000000000000" - ] - }, - { - "pc": 675, - "op": "POP", - "gas": 2999800, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a2d4aa8", - "0x0", - "0x30d", - "0xde", - "0x2ed" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000", - "0000000000000001819a2d4aa800000000000000000000000000000000000000" - ] - }, - { - "pc": 676, - "op": "JUMP", - "gas": 2999798, - "gasCost": 8, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a2d4aa8", - "0x0", - "0x30d", - "0xde" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000", - "0000000000000001819a2d4aa800000000000000000000000000000000000000" - ] - }, - { - "pc": 222, - "op": "JUMPDEST", - "gas": 2999790, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a2d4aa8", - "0x0", - "0x30d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000", - "0000000000000001819a2d4aa800000000000000000000000000000000000000" - ] - }, - { - "pc": 223, - "op": "PUSH1", - "gas": 2999789, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a2d4aa8", - "0x0", - "0x30d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000", - "0000000000000001819a2d4aa800000000000000000000000000000000000000" - ] - }, - { - "pc": 225, - "op": "MLOAD", - "gas": 2999786, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a2d4aa8", - "0x0", - "0x30d", - "0x40" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000", - "0000000000000001819a2d4aa800000000000000000000000000000000000000" - ] - }, - { - "pc": 226, - "op": "DUP1", - "gas": 2999783, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a2d4aa8", - "0x0", - "0x30d", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000", - "0000000000000001819a2d4aa800000000000000000000000000000000000000" - ] - }, - { - "pc": 227, - "op": "SWAP2", - "gas": 2999780, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a2d4aa8", - "0x0", - "0x30d", - "0x80", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000", - "0000000000000001819a2d4aa800000000000000000000000000000000000000" - ] - }, - { - "pc": 228, - "op": "SUB", - "gas": 2999777, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a2d4aa8", - "0x0", - "0x80", - "0x80", - "0x30d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000", - "0000000000000001819a2d4aa800000000000000000000000000000000000000" - ] - }, - { - "pc": 229, - "op": "SWAP1", - "gas": 2999774, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a2d4aa8", - "0x0", - "0x80", - "0x28d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000", - "0000000000000001819a2d4aa800000000000000000000000000000000000000" - ] - }, - { - "pc": 230, - "op": "PUSH1", - "gas": 2999771, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a2d4aa8", - "0x0", - "0x28d", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000", - "0000000000000001819a2d4aa800000000000000000000000000000000000000" - ] - }, - { - "pc": 232, - "op": "CREATE", - "gas": 2999768, - "gasCost": 32000, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a2d4aa8", - "0x0", - "0x28d", - "0x80", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000", - "0000000000000001819a2d4aa800000000000000000000000000000000000000" - ], - "extraData": { - "proofList": [ - { - "address": "0x2772ae3ebc6d3900c6a011d8d626b35fafb10331", - "nonce": 1, - "balance": "0x0", - "codeHash": "0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470" - }, - { - "address": "0x2772ae3ebc6d3900c6a011d8d626b35fafb10331", - "nonce": 1, - "balance": "0x0", - "codeHash": "0x09d2fd3a7cb9d5547a21c851248d703921e6348bfbdf4c0130695a3263f916ef" - } - ] - } - }, - { - "pc": 0, - "op": "PUSH1", - "gas": 2921397, - "gasCost": 3, - "depth": 2 - }, - { - "pc": 2, - "op": "PUSH1", - "gas": 2921394, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x80" - ] - }, - { - "pc": 4, - "op": "MSTORE", - "gas": 2921391, - "gasCost": 12, - "depth": 2, - "stack": [ - "0x80", - "0x40" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 5, - "op": "CALLVALUE", - "gas": 2921379, - "gasCost": 2, - "depth": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 6, - "op": "DUP1", - "gas": 2921377, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 7, - "op": "ISZERO", - "gas": 2921374, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 8, - "op": "PUSH2", - "gas": 2921371, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x0", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 11, - "op": "JUMPI", - "gas": 2921368, - "gasCost": 10, - "depth": 2, - "stack": [ - "0x0", - "0x1", - "0x10" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 16, - "op": "JUMPDEST", - "gas": 2921358, - "gasCost": 1, - "depth": 2, - "stack": [ - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 17, - "op": "POP", - "gas": 2921357, - "gasCost": 2, - "depth": 2, - "stack": [ - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 18, - "op": "PUSH1", - "gas": 2921355, - "gasCost": 3, - "depth": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 20, - "op": "MLOAD", - "gas": 2921352, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x40" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 21, - "op": "PUSH2", - "gas": 2921349, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 24, - "op": "CODESIZE", - "gas": 2921346, - "gasCost": 2, - "depth": 2, - "stack": [ - "0x80", - "0x26d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 25, - "op": "SUB", - "gas": 2921344, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x80", - "0x26d", - "0x28d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 26, - "op": "DUP1", - "gas": 2921341, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x80", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 27, - "op": "PUSH2", - "gas": 2921338, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x80", - "0x20", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 30, - "op": "DUP4", - "gas": 2921335, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x80", - "0x20", - "0x20", - "0x26d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 31, - "op": "CODECOPY", - "gas": 2921332, - "gasCost": 12, - "depth": 2, - "stack": [ - "0x80", - "0x20", - "0x20", - "0x26d", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 32, - "op": "DUP2", - "gas": 2921320, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x80", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a2d4aa8" - ] - }, - { - "pc": 33, - "op": "DUP2", - "gas": 2921317, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x80", - "0x20", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a2d4aa8" - ] - }, - { - "pc": 34, - "op": "ADD", - "gas": 2921314, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x80", - "0x20", - "0x80", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a2d4aa8" - ] - }, - { - "pc": 35, - "op": "PUSH1", - "gas": 2921311, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x80", - "0x20", - "0xa0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a2d4aa8" - ] - }, - { - "pc": 37, - "op": "MSTORE", - "gas": 2921308, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x80", - "0x20", - "0xa0", - "0x40" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a2d4aa8" - ] - }, - { - "pc": 38, - "op": "DUP2", - "gas": 2921305, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x80", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a2d4aa8" - ] - }, - { - "pc": 39, - "op": "ADD", - "gas": 2921302, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x80", - "0x20", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a2d4aa8" - ] - }, - { - "pc": 40, - "op": "SWAP1", - "gas": 2921299, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x80", - "0xa0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a2d4aa8" - ] - }, - { - "pc": 41, - "op": "PUSH2", - "gas": 2921296, - "gasCost": 3, - "depth": 2, - "stack": [ - "0xa0", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a2d4aa8" - ] - }, - { - "pc": 44, - "op": "SWAP2", - "gas": 2921293, - "gasCost": 3, - "depth": 2, - "stack": [ - "0xa0", - "0x80", - "0x32" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a2d4aa8" - ] - }, - { - "pc": 45, - "op": "SWAP1", - "gas": 2921290, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x32", - "0x80", - "0xa0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a2d4aa8" - ] - }, - { - "pc": 46, - "op": "PUSH2", - "gas": 2921287, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x32", - "0xa0", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a2d4aa8" - ] - }, - { - "pc": 49, - "op": "JUMP", - "gas": 2921284, - "gasCost": 8, - "depth": 2, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x54" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a2d4aa8" - ] - }, - { - "pc": 84, - "op": "JUMPDEST", - "gas": 2921276, - "gasCost": 1, - "depth": 2, - "stack": [ - "0x32", - "0xa0", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a2d4aa8" - ] - }, - { - "pc": 85, - "op": "PUSH1", - "gas": 2921275, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x32", - "0xa0", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a2d4aa8" - ] - }, - { - "pc": 87, - "op": "PUSH1", - "gas": 2921272, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a2d4aa8" - ] - }, - { - "pc": 89, - "op": "DUP3", - "gas": 2921269, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a2d4aa8" - ] - }, - { - "pc": 90, - "op": "DUP5", - "gas": 2921266, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x20", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a2d4aa8" - ] - }, - { - "pc": 91, - "op": "SUB", - "gas": 2921263, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x20", - "0x80", - "0xa0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a2d4aa8" - ] - }, - { - "pc": 92, - "op": "SLT", - "gas": 2921260, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x20", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a2d4aa8" - ] - }, - { - "pc": 93, - "op": "ISZERO", - "gas": 2921257, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a2d4aa8" - ] - }, - { - "pc": 94, - "op": "PUSH2", - "gas": 2921254, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a2d4aa8" - ] - }, - { - "pc": 97, - "op": "JUMPI", - "gas": 2921251, - "gasCost": 10, - "depth": 2, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x1", - "0x66" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a2d4aa8" - ] - }, - { - "pc": 102, - "op": "JUMPDEST", - "gas": 2921241, - "gasCost": 1, - "depth": 2, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a2d4aa8" - ] - }, - { - "pc": 103, - "op": "PUSH1", - "gas": 2921240, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a2d4aa8" - ] - }, - { - "pc": 105, - "op": "PUSH2", - "gas": 2921237, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a2d4aa8" - ] - }, - { - "pc": 108, - "op": "DUP5", - "gas": 2921234, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x74" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a2d4aa8" - ] - }, - { - "pc": 109, - "op": "DUP3", - "gas": 2921231, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x74", - "0xa0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a2d4aa8" - ] - }, - { - "pc": 110, - "op": "DUP6", - "gas": 2921228, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x74", - "0xa0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a2d4aa8" - ] - }, - { - "pc": 111, - "op": "ADD", - "gas": 2921225, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x74", - "0xa0", - "0x0", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a2d4aa8" - ] - }, - { - "pc": 112, - "op": "PUSH2", - "gas": 2921222, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x74", - "0xa0", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a2d4aa8" - ] - }, - { - "pc": 115, - "op": "JUMP", - "gas": 2921219, - "gasCost": 8, - "depth": 2, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x74", - "0xa0", - "0x80", - "0x3f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a2d4aa8" - ] - }, - { - "pc": 63, - "op": "JUMPDEST", - "gas": 2921211, - "gasCost": 1, - "depth": 2, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x74", - "0xa0", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a2d4aa8" - ] - }, - { - "pc": 64, - "op": "PUSH1", - "gas": 2921210, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x74", - "0xa0", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a2d4aa8" - ] - }, - { - "pc": 66, - "op": "DUP2", - "gas": 2921207, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x74", - "0xa0", - "0x80", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a2d4aa8" - ] - }, - { - "pc": 67, - "op": "MLOAD", - "gas": 2921204, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x74", - "0xa0", - "0x80", - "0x0", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a2d4aa8" - ] - }, - { - "pc": 68, - "op": "SWAP1", - "gas": 2921201, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x74", - "0xa0", - "0x80", - "0x0", - "0x1819a2d4aa8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a2d4aa8" - ] - }, - { - "pc": 69, - "op": "POP", - "gas": 2921198, - "gasCost": 2, - "depth": 2, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x74", - "0xa0", - "0x80", - "0x1819a2d4aa8", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a2d4aa8" - ] - }, - { - "pc": 70, - "op": "PUSH2", - "gas": 2921196, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x74", - "0xa0", - "0x80", - "0x1819a2d4aa8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a2d4aa8" - ] - }, - { - "pc": 73, - "op": "DUP2", - "gas": 2921193, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x74", - "0xa0", - "0x80", - "0x1819a2d4aa8", - "0x4e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a2d4aa8" - ] - }, - { - "pc": 74, - "op": "PUSH2", - "gas": 2921190, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x74", - "0xa0", - "0x80", - "0x1819a2d4aa8", - "0x4e", - "0x1819a2d4aa8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a2d4aa8" - ] - }, - { - "pc": 77, - "op": "JUMP", - "gas": 2921187, - "gasCost": 8, - "depth": 2, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x74", - "0xa0", - "0x80", - "0x1819a2d4aa8", - "0x4e", - "0x1819a2d4aa8", - "0x87" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a2d4aa8" - ] - }, - { - "pc": 135, - "op": "JUMPDEST", - "gas": 2921179, - "gasCost": 1, - "depth": 2, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x74", - "0xa0", - "0x80", - "0x1819a2d4aa8", - "0x4e", - "0x1819a2d4aa8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a2d4aa8" - ] - }, - { - "pc": 136, - "op": "PUSH2", - "gas": 2921178, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x74", - "0xa0", - "0x80", - "0x1819a2d4aa8", - "0x4e", - "0x1819a2d4aa8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a2d4aa8" - ] - }, - { - "pc": 139, - "op": "DUP2", - "gas": 2921175, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x74", - "0xa0", - "0x80", - "0x1819a2d4aa8", - "0x4e", - "0x1819a2d4aa8", - "0x90" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a2d4aa8" - ] - }, - { - "pc": 140, - "op": "PUSH2", - "gas": 2921172, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x74", - "0xa0", - "0x80", - "0x1819a2d4aa8", - "0x4e", - "0x1819a2d4aa8", - "0x90", - "0x1819a2d4aa8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a2d4aa8" - ] - }, - { - "pc": 143, - "op": "JUMP", - "gas": 2921169, - "gasCost": 8, - "depth": 2, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x74", - "0xa0", - "0x80", - "0x1819a2d4aa8", - "0x4e", - "0x1819a2d4aa8", - "0x90", - "0x1819a2d4aa8", - "0x7d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a2d4aa8" - ] - }, - { - "pc": 125, - "op": "JUMPDEST", - "gas": 2921161, - "gasCost": 1, - "depth": 2, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x74", - "0xa0", - "0x80", - "0x1819a2d4aa8", - "0x4e", - "0x1819a2d4aa8", - "0x90", - "0x1819a2d4aa8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a2d4aa8" - ] - }, - { - "pc": 126, - "op": "PUSH1", - "gas": 2921160, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x74", - "0xa0", - "0x80", - "0x1819a2d4aa8", - "0x4e", - "0x1819a2d4aa8", - "0x90", - "0x1819a2d4aa8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a2d4aa8" - ] - }, - { - "pc": 128, - "op": "DUP2", - "gas": 2921157, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x74", - "0xa0", - "0x80", - "0x1819a2d4aa8", - "0x4e", - "0x1819a2d4aa8", - "0x90", - "0x1819a2d4aa8", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a2d4aa8" - ] - }, - { - "pc": 129, - "op": "SWAP1", - "gas": 2921154, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x74", - "0xa0", - "0x80", - "0x1819a2d4aa8", - "0x4e", - "0x1819a2d4aa8", - "0x90", - "0x1819a2d4aa8", - "0x0", - "0x1819a2d4aa8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a2d4aa8" - ] - }, - { - "pc": 130, - "op": "POP", - "gas": 2921151, - "gasCost": 2, - "depth": 2, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x74", - "0xa0", - "0x80", - "0x1819a2d4aa8", - "0x4e", - "0x1819a2d4aa8", - "0x90", - "0x1819a2d4aa8", - "0x1819a2d4aa8", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a2d4aa8" - ] - }, - { - "pc": 131, - "op": "SWAP2", - "gas": 2921149, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x74", - "0xa0", - "0x80", - "0x1819a2d4aa8", - "0x4e", - "0x1819a2d4aa8", - "0x90", - "0x1819a2d4aa8", - "0x1819a2d4aa8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a2d4aa8" - ] - }, - { - "pc": 132, - "op": "SWAP1", - "gas": 2921146, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x74", - "0xa0", - "0x80", - "0x1819a2d4aa8", - "0x4e", - "0x1819a2d4aa8", - "0x1819a2d4aa8", - "0x1819a2d4aa8", - "0x90" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a2d4aa8" - ] - }, - { - "pc": 133, - "op": "POP", - "gas": 2921143, - "gasCost": 2, - "depth": 2, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x74", - "0xa0", - "0x80", - "0x1819a2d4aa8", - "0x4e", - "0x1819a2d4aa8", - "0x1819a2d4aa8", - "0x90", - "0x1819a2d4aa8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a2d4aa8" - ] - }, - { - "pc": 134, - "op": "JUMP", - "gas": 2921141, - "gasCost": 8, - "depth": 2, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x74", - "0xa0", - "0x80", - "0x1819a2d4aa8", - "0x4e", - "0x1819a2d4aa8", - "0x1819a2d4aa8", - "0x90" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a2d4aa8" - ] - }, - { - "pc": 144, - "op": "JUMPDEST", - "gas": 2921133, - "gasCost": 1, - "depth": 2, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x74", - "0xa0", - "0x80", - "0x1819a2d4aa8", - "0x4e", - "0x1819a2d4aa8", - "0x1819a2d4aa8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a2d4aa8" - ] - }, - { - "pc": 145, - "op": "DUP2", - "gas": 2921132, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x74", - "0xa0", - "0x80", - "0x1819a2d4aa8", - "0x4e", - "0x1819a2d4aa8", - "0x1819a2d4aa8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a2d4aa8" - ] - }, - { - "pc": 146, - "op": "EQ", - "gas": 2921129, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x74", - "0xa0", - "0x80", - "0x1819a2d4aa8", - "0x4e", - "0x1819a2d4aa8", - "0x1819a2d4aa8", - "0x1819a2d4aa8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a2d4aa8" - ] - }, - { - "pc": 147, - "op": "PUSH2", - "gas": 2921126, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x74", - "0xa0", - "0x80", - "0x1819a2d4aa8", - "0x4e", - "0x1819a2d4aa8", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a2d4aa8" - ] - }, - { - "pc": 150, - "op": "JUMPI", - "gas": 2921123, - "gasCost": 10, - "depth": 2, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x74", - "0xa0", - "0x80", - "0x1819a2d4aa8", - "0x4e", - "0x1819a2d4aa8", - "0x1", - "0x9b" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a2d4aa8" - ] - }, - { - "pc": 155, - "op": "JUMPDEST", - "gas": 2921113, - "gasCost": 1, - "depth": 2, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x74", - "0xa0", - "0x80", - "0x1819a2d4aa8", - "0x4e", - "0x1819a2d4aa8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a2d4aa8" - ] - }, - { - "pc": 156, - "op": "POP", - "gas": 2921112, - "gasCost": 2, - "depth": 2, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x74", - "0xa0", - "0x80", - "0x1819a2d4aa8", - "0x4e", - "0x1819a2d4aa8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a2d4aa8" - ] - }, - { - "pc": 157, - "op": "JUMP", - "gas": 2921110, - "gasCost": 8, - "depth": 2, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x74", - "0xa0", - "0x80", - "0x1819a2d4aa8", - "0x4e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a2d4aa8" - ] - }, - { - "pc": 78, - "op": "JUMPDEST", - "gas": 2921102, - "gasCost": 1, - "depth": 2, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x74", - "0xa0", - "0x80", - "0x1819a2d4aa8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a2d4aa8" - ] - }, - { - "pc": 79, - "op": "SWAP3", - "gas": 2921101, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x74", - "0xa0", - "0x80", - "0x1819a2d4aa8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a2d4aa8" - ] - }, - { - "pc": 80, - "op": "SWAP2", - "gas": 2921098, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x1819a2d4aa8", - "0xa0", - "0x80", - "0x74" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a2d4aa8" - ] - }, - { - "pc": 81, - "op": "POP", - "gas": 2921095, - "gasCost": 2, - "depth": 2, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x1819a2d4aa8", - "0x74", - "0x80", - "0xa0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a2d4aa8" - ] - }, - { - "pc": 82, - "op": "POP", - "gas": 2921093, - "gasCost": 2, - "depth": 2, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x1819a2d4aa8", - "0x74", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a2d4aa8" - ] - }, - { - "pc": 83, - "op": "JUMP", - "gas": 2921091, - "gasCost": 8, - "depth": 2, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x1819a2d4aa8", - "0x74" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a2d4aa8" - ] - }, - { - "pc": 116, - "op": "JUMPDEST", - "gas": 2921083, - "gasCost": 1, - "depth": 2, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x1819a2d4aa8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a2d4aa8" - ] - }, - { - "pc": 117, - "op": "SWAP2", - "gas": 2921082, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x0", - "0x0", - "0x1819a2d4aa8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a2d4aa8" - ] - }, - { - "pc": 118, - "op": "POP", - "gas": 2921079, - "gasCost": 2, - "depth": 2, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x1819a2d4aa8", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a2d4aa8" - ] - }, - { - "pc": 119, - "op": "POP", - "gas": 2921077, - "gasCost": 2, - "depth": 2, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x1819a2d4aa8", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a2d4aa8" - ] - }, - { - "pc": 120, - "op": "SWAP3", - "gas": 2921075, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x32", - "0xa0", - "0x80", - "0x1819a2d4aa8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a2d4aa8" - ] - }, - { - "pc": 121, - "op": "SWAP2", - "gas": 2921072, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x1819a2d4aa8", - "0xa0", - "0x80", - "0x32" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a2d4aa8" - ] - }, - { - "pc": 122, - "op": "POP", - "gas": 2921069, - "gasCost": 2, - "depth": 2, - "stack": [ - "0x1819a2d4aa8", - "0x32", - "0x80", - "0xa0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a2d4aa8" - ] - }, - { - "pc": 123, - "op": "POP", - "gas": 2921067, - "gasCost": 2, - "depth": 2, - "stack": [ - "0x1819a2d4aa8", - "0x32", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a2d4aa8" - ] - }, - { - "pc": 124, - "op": "JUMP", - "gas": 2921065, - "gasCost": 8, - "depth": 2, - "stack": [ - "0x1819a2d4aa8", - "0x32" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a2d4aa8" - ] - }, - { - "pc": 50, - "op": "JUMPDEST", - "gas": 2921057, - "gasCost": 1, - "depth": 2, - "stack": [ - "0x1819a2d4aa8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a2d4aa8" - ] - }, - { - "pc": 51, - "op": "DUP1", - "gas": 2921056, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x1819a2d4aa8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a2d4aa8" - ] - }, - { - "pc": 52, - "op": "PUSH1", - "gas": 2921053, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x1819a2d4aa8", - "0x1819a2d4aa8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a2d4aa8" - ] - }, - { - "pc": 54, - "op": "DUP2", - "gas": 2921050, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x1819a2d4aa8", - "0x1819a2d4aa8", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a2d4aa8" - ] - }, - { - "pc": 55, - "op": "SWAP1", - "gas": 2921047, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x1819a2d4aa8", - "0x1819a2d4aa8", - "0x0", - "0x1819a2d4aa8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a2d4aa8" - ] - }, - { - "pc": 56, - "op": "SSTORE", - "gas": 2921044, - "gasCost": 22100, - "depth": 2, - "stack": [ - "0x1819a2d4aa8", - "0x1819a2d4aa8", - "0x1819a2d4aa8", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a2d4aa8" - ], - "storage": { - "0x0000000000000000000000000000000000000000000000000000000000000000": "0x000000000000000000000000000000000000000000000000000001819a2d4aa8" - }, - "extraData": { - "proofList": [ - { - "address": "0x2772ae3ebc6d3900c6a011d8d626b35fafb10331", - "nonce": 1, - "balance": "0x0", - "codeHash": "0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470", - "storage": { - "key": "0x0000000000000000000000000000000000000000000000000000000000000000", - "value": "0x0000000000000000000000000000000000000000000000000000000000000000" - } - } - ] - } - }, - { - "pc": 57, - "op": "POP", - "gas": 2898944, - "gasCost": 2, - "depth": 2, - "stack": [ - "0x1819a2d4aa8", - "0x1819a2d4aa8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a2d4aa8" - ] - }, - { - "pc": 58, - "op": "POP", - "gas": 2898942, - "gasCost": 2, - "depth": 2, - "stack": [ - "0x1819a2d4aa8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a2d4aa8" - ] - }, - { - "pc": 59, - "op": "PUSH2", - "gas": 2898940, - "gasCost": 3, - "depth": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a2d4aa8" - ] - }, - { - "pc": 62, - "op": "JUMP", - "gas": 2898937, - "gasCost": 8, - "depth": 2, - "stack": [ - "0x9e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a2d4aa8" - ] - }, - { - "pc": 158, - "op": "JUMPDEST", - "gas": 2898929, - "gasCost": 1, - "depth": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a2d4aa8" - ] - }, - { - "pc": 159, - "op": "PUSH2", - "gas": 2898928, - "gasCost": 3, - "depth": 2, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a2d4aa8" - ] - }, - { - "pc": 162, - "op": "DUP1", - "gas": 2898925, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x1c0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a2d4aa8" - ] - }, - { - "pc": 163, - "op": "PUSH2", - "gas": 2898922, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x1c0", - "0x1c0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a2d4aa8" - ] - }, - { - "pc": 166, - "op": "PUSH1", - "gas": 2898919, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x1c0", - "0x1c0", - "0xad" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a2d4aa8" - ] - }, - { - "pc": 168, - "op": "CODECOPY", - "gas": 2898916, - "gasCost": 72, - "depth": 2, - "stack": [ - "0x1c0", - "0x1c0", - "0xad", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000001819a2d4aa8", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 169, - "op": "PUSH1", - "gas": 2898844, - "gasCost": 3, - "depth": 2, - "stack": [ - "0x1c0" - ], - "memory": [ - "608060405234801561001057600080fd5b506004361061004c5760003560e01c", - "806321848c46146100515780632e64cec11461006d578063b0f2b72a1461008b", - "578063f3417673146100a7575b600080fd5b61006b6004803603810190610066", - "9190610116565b6100c5565b005b6100756100da565b60405161008291906101", - "4e565b60405180910390f35b6100a560048036038101906100a0919061011656", - "5b6100e3565b005b6100af6100ed565b6040516100bc919061014e565b604051", - "80910390f35b8060008190555060006100d757600080fd5b50565b6000805490", - "5090565b8060008190555050565b6000806100f957600080fd5b600054905090", - "565b60008135905061011081610173565b92915050565b600060208284031215", - "61012857600080fd5b600061013684828501610101565b91505092915050565b", - "61014881610169565b82525050565b6000602082019050610163600083018461", - "013f565b92915050565b6000819050919050565b61017c81610169565b811461", - "018757600080fd5b5056fea26469706673582212204ad60809f1f56c6a9fbcb2", - "3b2b6a9d14eacf8011af49ba0737b81f18f923f32e64736f6c63430008040033" - ] - }, - { - "pc": 171, - "op": "RETURN", - "gas": 2898841, - "gasCost": 0, - "depth": 2, - "stack": [ - "0x1c0", - "0x0" - ], - "memory": [ - "608060405234801561001057600080fd5b506004361061004c5760003560e01c", - "806321848c46146100515780632e64cec11461006d578063b0f2b72a1461008b", - "578063f3417673146100a7575b600080fd5b61006b6004803603810190610066", - "9190610116565b6100c5565b005b6100756100da565b60405161008291906101", - "4e565b60405180910390f35b6100a560048036038101906100a0919061011656", - "5b6100e3565b005b6100af6100ed565b6040516100bc919061014e565b604051", - "80910390f35b8060008190555060006100d757600080fd5b50565b6000805490", - "5090565b8060008190555050565b6000806100f957600080fd5b600054905090", - "565b60008135905061011081610173565b92915050565b600060208284031215", - "61012857600080fd5b600061013684828501610101565b91505092915050565b", - "61014881610169565b82525050565b6000602082019050610163600083018461", - "013f565b92915050565b6000819050919050565b61017c81610169565b811461", - "018757600080fd5b5056fea26469706673582212204ad60809f1f56c6a9fbcb2", - "3b2b6a9d14eacf8011af49ba0737b81f18f923f32e64736f6c63430008040033" - ] - }, - { - "pc": 233, - "op": "DUP1", - "gas": 2855612, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a2d4aa8", - "0x0", - "0x2772ae3ebc6d3900c6a011d8d626b35fafb10331" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000", - "0000000000000001819a2d4aa800000000000000000000000000000000000000" - ] - }, - { - "pc": 234, - "op": "ISZERO", - "gas": 2855609, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a2d4aa8", - "0x0", - "0x2772ae3ebc6d3900c6a011d8d626b35fafb10331", - "0x2772ae3ebc6d3900c6a011d8d626b35fafb10331" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000", - "0000000000000001819a2d4aa800000000000000000000000000000000000000" - ] - }, - { - "pc": 235, - "op": "DUP1", - "gas": 2855606, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a2d4aa8", - "0x0", - "0x2772ae3ebc6d3900c6a011d8d626b35fafb10331", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000", - "0000000000000001819a2d4aa800000000000000000000000000000000000000" - ] - }, - { - "pc": 236, - "op": "ISZERO", - "gas": 2855603, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a2d4aa8", - "0x0", - "0x2772ae3ebc6d3900c6a011d8d626b35fafb10331", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000", - "0000000000000001819a2d4aa800000000000000000000000000000000000000" - ] - }, - { - "pc": 237, - "op": "PUSH2", - "gas": 2855600, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a2d4aa8", - "0x0", - "0x2772ae3ebc6d3900c6a011d8d626b35fafb10331", - "0x0", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000", - "0000000000000001819a2d4aa800000000000000000000000000000000000000" - ] - }, - { - "pc": 240, - "op": "JUMPI", - "gas": 2855597, - "gasCost": 10, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a2d4aa8", - "0x0", - "0x2772ae3ebc6d3900c6a011d8d626b35fafb10331", - "0x0", - "0x1", - "0xfa" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000", - "0000000000000001819a2d4aa800000000000000000000000000000000000000" - ] - }, - { - "pc": 250, - "op": "JUMPDEST", - "gas": 2855587, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a2d4aa8", - "0x0", - "0x2772ae3ebc6d3900c6a011d8d626b35fafb10331", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000", - "0000000000000001819a2d4aa800000000000000000000000000000000000000" - ] - }, - { - "pc": 251, - "op": "POP", - "gas": 2855586, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a2d4aa8", - "0x0", - "0x2772ae3ebc6d3900c6a011d8d626b35fafb10331", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000", - "0000000000000001819a2d4aa800000000000000000000000000000000000000" - ] - }, - { - "pc": 252, - "op": "SWAP1", - "gas": 2855584, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a2d4aa8", - "0x0", - "0x2772ae3ebc6d3900c6a011d8d626b35fafb10331" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000", - "0000000000000001819a2d4aa800000000000000000000000000000000000000" - ] - }, - { - "pc": 253, - "op": "POP", - "gas": 2855581, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a2d4aa8", - "0x2772ae3ebc6d3900c6a011d8d626b35fafb10331", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000", - "0000000000000001819a2d4aa800000000000000000000000000000000000000" - ] - }, - { - "pc": 254, - "op": "DUP1", - "gas": 2855579, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a2d4aa8", - "0x2772ae3ebc6d3900c6a011d8d626b35fafb10331" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000", - "0000000000000001819a2d4aa800000000000000000000000000000000000000" - ] - }, - { - "pc": 255, - "op": "PUSH1", - "gas": 2855576, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a2d4aa8", - "0x2772ae3ebc6d3900c6a011d8d626b35fafb10331", - "0x2772ae3ebc6d3900c6a011d8d626b35fafb10331" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000", - "0000000000000001819a2d4aa800000000000000000000000000000000000000" - ] - }, - { - "pc": 257, - "op": "DUP1", - "gas": 2855573, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a2d4aa8", - "0x2772ae3ebc6d3900c6a011d8d626b35fafb10331", - "0x2772ae3ebc6d3900c6a011d8d626b35fafb10331", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000", - "0000000000000001819a2d4aa800000000000000000000000000000000000000" - ] - }, - { - "pc": 258, - "op": "PUSH2", - "gas": 2855570, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a2d4aa8", - "0x2772ae3ebc6d3900c6a011d8d626b35fafb10331", - "0x2772ae3ebc6d3900c6a011d8d626b35fafb10331", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000", - "0000000000000001819a2d4aa800000000000000000000000000000000000000" - ] - }, - { - "pc": 261, - "op": "EXP", - "gas": 2855567, - "gasCost": 10, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a2d4aa8", - "0x2772ae3ebc6d3900c6a011d8d626b35fafb10331", - "0x2772ae3ebc6d3900c6a011d8d626b35fafb10331", - "0x0", - "0x0", - "0x100" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000", - "0000000000000001819a2d4aa800000000000000000000000000000000000000" - ] - }, - { - "pc": 262, - "op": "DUP2", - "gas": 2855557, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a2d4aa8", - "0x2772ae3ebc6d3900c6a011d8d626b35fafb10331", - "0x2772ae3ebc6d3900c6a011d8d626b35fafb10331", - "0x0", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000", - "0000000000000001819a2d4aa800000000000000000000000000000000000000" - ] - }, - { - "pc": 263, - "op": "SLOAD", - "gas": 2855554, - "gasCost": 2100, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a2d4aa8", - "0x2772ae3ebc6d3900c6a011d8d626b35fafb10331", - "0x2772ae3ebc6d3900c6a011d8d626b35fafb10331", - "0x0", - "0x1", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000", - "0000000000000001819a2d4aa800000000000000000000000000000000000000" - ], - "storage": { - "0x0000000000000000000000000000000000000000000000000000000000000000": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - "extraData": { - "proofList": [ - { - "address": "0x33b5ddf9b5e82bb958eb885f5f241e783a113f18", - "nonce": 4, - "balance": "0x0", - "codeHash": "0xcc0a77f6e063b4b62eb7d9ed6f427cf687d8d0071d751850cfe5d136bc60d3ab", - "storage": { - "key": "0x0000000000000000000000000000000000000000000000000000000000000000", - "value": "0x0000000000000000000000000000000000000000000000000000000000000000" - } - } - ] - } - }, - { - "pc": 264, - "op": "DUP2", - "gas": 2853454, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a2d4aa8", - "0x2772ae3ebc6d3900c6a011d8d626b35fafb10331", - "0x2772ae3ebc6d3900c6a011d8d626b35fafb10331", - "0x0", - "0x1", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000", - "0000000000000001819a2d4aa800000000000000000000000000000000000000" - ] - }, - { - "pc": 265, - "op": "PUSH20", - "gas": 2853451, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a2d4aa8", - "0x2772ae3ebc6d3900c6a011d8d626b35fafb10331", - "0x2772ae3ebc6d3900c6a011d8d626b35fafb10331", - "0x0", - "0x1", - "0x0", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000", - "0000000000000001819a2d4aa800000000000000000000000000000000000000" - ] - }, - { - "pc": 286, - "op": "MUL", - "gas": 2853448, - "gasCost": 5, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a2d4aa8", - "0x2772ae3ebc6d3900c6a011d8d626b35fafb10331", - "0x2772ae3ebc6d3900c6a011d8d626b35fafb10331", - "0x0", - "0x1", - "0x0", - "0x1", - "0xffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000", - "0000000000000001819a2d4aa800000000000000000000000000000000000000" - ] - }, - { - "pc": 287, - "op": "NOT", - "gas": 2853443, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a2d4aa8", - "0x2772ae3ebc6d3900c6a011d8d626b35fafb10331", - "0x2772ae3ebc6d3900c6a011d8d626b35fafb10331", - "0x0", - "0x1", - "0x0", - "0xffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000", - "0000000000000001819a2d4aa800000000000000000000000000000000000000" - ] - }, - { - "pc": 288, - "op": "AND", - "gas": 2853440, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a2d4aa8", - "0x2772ae3ebc6d3900c6a011d8d626b35fafb10331", - "0x2772ae3ebc6d3900c6a011d8d626b35fafb10331", - "0x0", - "0x1", - "0x0", - "0xffffffffffffffffffffffff0000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000", - "0000000000000001819a2d4aa800000000000000000000000000000000000000" - ] - }, - { - "pc": 289, - "op": "SWAP1", - "gas": 2853437, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a2d4aa8", - "0x2772ae3ebc6d3900c6a011d8d626b35fafb10331", - "0x2772ae3ebc6d3900c6a011d8d626b35fafb10331", - "0x0", - "0x1", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000", - "0000000000000001819a2d4aa800000000000000000000000000000000000000" - ] - }, - { - "pc": 290, - "op": "DUP4", - "gas": 2853434, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a2d4aa8", - "0x2772ae3ebc6d3900c6a011d8d626b35fafb10331", - "0x2772ae3ebc6d3900c6a011d8d626b35fafb10331", - "0x0", - "0x0", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000", - "0000000000000001819a2d4aa800000000000000000000000000000000000000" - ] - }, - { - "pc": 291, - "op": "PUSH20", - "gas": 2853431, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a2d4aa8", - "0x2772ae3ebc6d3900c6a011d8d626b35fafb10331", - "0x2772ae3ebc6d3900c6a011d8d626b35fafb10331", - "0x0", - "0x0", - "0x1", - "0x2772ae3ebc6d3900c6a011d8d626b35fafb10331" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000", - "0000000000000001819a2d4aa800000000000000000000000000000000000000" - ] - }, - { - "pc": 312, - "op": "AND", - "gas": 2853428, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a2d4aa8", - "0x2772ae3ebc6d3900c6a011d8d626b35fafb10331", - "0x2772ae3ebc6d3900c6a011d8d626b35fafb10331", - "0x0", - "0x0", - "0x1", - "0x2772ae3ebc6d3900c6a011d8d626b35fafb10331", - "0xffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000", - "0000000000000001819a2d4aa800000000000000000000000000000000000000" - ] - }, - { - "pc": 313, - "op": "MUL", - "gas": 2853425, - "gasCost": 5, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a2d4aa8", - "0x2772ae3ebc6d3900c6a011d8d626b35fafb10331", - "0x2772ae3ebc6d3900c6a011d8d626b35fafb10331", - "0x0", - "0x0", - "0x1", - "0x2772ae3ebc6d3900c6a011d8d626b35fafb10331" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000", - "0000000000000001819a2d4aa800000000000000000000000000000000000000" - ] - }, - { - "pc": 314, - "op": "OR", - "gas": 2853420, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a2d4aa8", - "0x2772ae3ebc6d3900c6a011d8d626b35fafb10331", - "0x2772ae3ebc6d3900c6a011d8d626b35fafb10331", - "0x0", - "0x0", - "0x2772ae3ebc6d3900c6a011d8d626b35fafb10331" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000", - "0000000000000001819a2d4aa800000000000000000000000000000000000000" - ] - }, - { - "pc": 315, - "op": "SWAP1", - "gas": 2853417, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a2d4aa8", - "0x2772ae3ebc6d3900c6a011d8d626b35fafb10331", - "0x2772ae3ebc6d3900c6a011d8d626b35fafb10331", - "0x0", - "0x2772ae3ebc6d3900c6a011d8d626b35fafb10331" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000", - "0000000000000001819a2d4aa800000000000000000000000000000000000000" - ] - }, - { - "pc": 316, - "op": "SSTORE", - "gas": 2853414, - "gasCost": 20000, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a2d4aa8", - "0x2772ae3ebc6d3900c6a011d8d626b35fafb10331", - "0x2772ae3ebc6d3900c6a011d8d626b35fafb10331", - "0x2772ae3ebc6d3900c6a011d8d626b35fafb10331", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000", - "0000000000000001819a2d4aa800000000000000000000000000000000000000" - ], - "storage": { - "0x0000000000000000000000000000000000000000000000000000000000000000": "0x0000000000000000000000002772ae3ebc6d3900c6a011d8d626b35fafb10331" - }, - "extraData": { - "proofList": [ - { - "address": "0x33b5ddf9b5e82bb958eb885f5f241e783a113f18", - "nonce": 4, - "balance": "0x0", - "codeHash": "0xcc0a77f6e063b4b62eb7d9ed6f427cf687d8d0071d751850cfe5d136bc60d3ab", - "storage": { - "key": "0x0000000000000000000000000000000000000000000000000000000000000000", - "value": "0x0000000000000000000000000000000000000000000000000000000000000000" - } - } - ] - } - }, - { - "pc": 317, - "op": "POP", - "gas": 2833414, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a2d4aa8", - "0x2772ae3ebc6d3900c6a011d8d626b35fafb10331", - "0x2772ae3ebc6d3900c6a011d8d626b35fafb10331" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000", - "0000000000000001819a2d4aa800000000000000000000000000000000000000" - ] - }, - { - "pc": 318, - "op": "POP", - "gas": 2833412, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a2d4aa8", - "0x2772ae3ebc6d3900c6a011d8d626b35fafb10331" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000", - "0000000000000001819a2d4aa800000000000000000000000000000000000000" - ] - }, - { - "pc": 319, - "op": "POP", - "gas": 2833410, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e", - "0x1819a2d4aa8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000", - "0000000000000001819a2d4aa800000000000000000000000000000000000000" - ] - }, - { - "pc": 320, - "op": "JUMP", - "gas": 2833408, - "gasCost": 8, - "depth": 1, - "stack": [ - "0xc5b0437c", - "0x7e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000", - "0000000000000001819a2d4aa800000000000000000000000000000000000000" - ] - }, - { - "pc": 126, - "op": "JUMPDEST", - "gas": 2833400, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xc5b0437c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000", - "0000000000000001819a2d4aa800000000000000000000000000000000000000" - ] - }, - { - "pc": 127, - "op": "STOP", - "gas": 2833399, - "gasCost": 0, - "depth": 1, - "stack": [ - "0xc5b0437c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "608060405234801561001057600080fd5b5060405161026d38038061026d8339", - "8181016040528101906100329190610054565b806000819055505061009e565b", - "60008151905061004e81610087565b92915050565b6000602082840312156100", - "6657600080fd5b60006100748482850161003f565b91505092915050565b6000", - "819050919050565b6100908161007d565b811461009b57600080fd5b50565b61", - "01c0806100ad6000396000f3fe608060405234801561001057600080fd5b5060", - "04361061004c5760003560e01c806321848c46146100515780632e64cec11461", - "006d578063b0f2b72a1461008b578063f3417673146100a7575b600080fd5b61", - "006b60048036038101906100669190610116565b6100c5565b005b6100756100", - "da565b604051610082919061014e565b60405180910390f35b6100a560048036", - "038101906100a09190610116565b6100e3565b005b6100af6100ed565b604051", - "6100bc919061014e565b60405180910390f35b8060008190555060006100d757", - "600080fd5b50565b60008054905090565b8060008190555050565b6000806100", - "f957600080fd5b600054905090565b60008135905061011081610173565b9291", - "5050565b60006020828403121561012857600080fd5b60006101368482850161", - "0101565b91505092915050565b61014881610169565b82525050565b60006020", - "82019050610163600083018461013f565b92915050565b600081905091905056", - "5b61017c81610169565b811461018757600080fd5b5056fea264697066735822", - "12204ad60809f1f56c6a9fbcb23b2b6a9d14eacf8011af49ba0737b81f18f923", - "f32e64736f6c6343000804003300000000000000000000000000000000000000", - "0000000000000001819a2d4aa800000000000000000000000000000000000000" - ] - } - ] - }, - { - "gas": 35245, - "failed": false, - "returnValue": "0000000000000000000000000000000000000000000000000000000000000001", - "from": { - "address": "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "nonce": 17, - "balance": "0x56bc75e2d630fffffffffffffffffffffffffffffffffffff9537b30881bf3", - "codeHash": "0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470" - }, - "to": { - "address": "0xee0e03c1a621084ca3c542f36e4a5d0230304471", - "nonce": 1, - "balance": "0x0", - "codeHash": "0x178763dea206ad5ecfbf211ddeb69d930d18811bc617cb4bbb0c0e7f0d28a3aa" - }, - "accountAfter": [ - { - "address": "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "nonce": 18, - "balance": "0x56bc75e2d630fffffffffffffffffffffffffffffffffffff94ea049d5d75b", - "codeHash": "0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470" - }, - { - "address": "0xee0e03c1a621084ca3c542f36e4a5d0230304471", - "nonce": 1, - "balance": "0x0", - "codeHash": "0x178763dea206ad5ecfbf211ddeb69d930d18811bc617cb4bbb0c0e7f0d28a3aa" - } - ], - "codeHash": "0x178763dea206ad5ecfbf211ddeb69d930d18811bc617cb4bbb0c0e7f0d28a3aa", - "byteCode": "0x608060405234801561001057600080fd5b50600436106100a95760003560e01c80633950935111610071578063395093511461016857806370a082311461019857806395d89b41146101c8578063a457c2d7146101e6578063a9059cbb14610216578063dd62ed3e14610246576100a9565b806306fdde03146100ae578063095ea7b3146100cc57806318160ddd146100fc57806323b872dd1461011a578063313ce5671461014a575b600080fd5b6100b6610276565b6040516100c39190610dff565b60405180910390f35b6100e660048036038101906100e19190610c4d565b610308565b6040516100f39190610de4565b60405180910390f35b61010461032b565b6040516101119190610f01565b60405180910390f35b610134600480360381019061012f9190610bfe565b610335565b6040516101419190610de4565b60405180910390f35b610152610364565b60405161015f9190610f1c565b60405180910390f35b610182600480360381019061017d9190610c4d565b61036d565b60405161018f9190610de4565b60405180910390f35b6101b260048036038101906101ad9190610b99565b610417565b6040516101bf9190610f01565b60405180910390f35b6101d061045f565b6040516101dd9190610dff565b60405180910390f35b61020060048036038101906101fb9190610c4d565b6104f1565b60405161020d9190610de4565b60405180910390f35b610230600480360381019061022b9190610c4d565b6105db565b60405161023d9190610de4565b60405180910390f35b610260600480360381019061025b9190610bc2565b6105fe565b60405161026d9190610f01565b60405180910390f35b60606003805461028590611031565b80601f01602080910402602001604051908101604052809291908181526020018280546102b190611031565b80156102fe5780601f106102d3576101008083540402835291602001916102fe565b820191906000526020600020905b8154815290600101906020018083116102e157829003601f168201915b5050505050905090565b600080610313610685565b905061032081858561068d565b600191505092915050565b6000600254905090565b600080610340610685565b905061034d858285610858565b6103588585856108e4565b60019150509392505050565b60006012905090565b600080610378610685565b905061040c818585600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546104079190610f53565b61068d565b600191505092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60606004805461046e90611031565b80601f016020809104026020016040519081016040528092919081815260200182805461049a90611031565b80156104e75780601f106104bc576101008083540402835291602001916104e7565b820191906000526020600020905b8154815290600101906020018083116104ca57829003601f168201915b5050505050905090565b6000806104fc610685565b90506000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050838110156105c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105b990610ee1565b60405180910390fd5b6105cf828686840361068d565b60019250505092915050565b6000806105e6610685565b90506105f38185856108e4565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156106fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106f490610ec1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561076d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161076490610e41565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161084b9190610f01565b60405180910390a3505050565b600061086484846105fe565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146108de57818110156108d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c790610e61565b60405180910390fd5b6108dd848484840361068d565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610954576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094b90610ea1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156109c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109bb90610e21565b60405180910390fd5b6109cf838383610b65565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610a55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4c90610e81565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610ae89190610f53565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610b4c9190610f01565b60405180910390a3610b5f848484610b6a565b50505050565b505050565b505050565b600081359050610b7e816112d5565b92915050565b600081359050610b93816112ec565b92915050565b600060208284031215610bab57600080fd5b6000610bb984828501610b6f565b91505092915050565b60008060408385031215610bd557600080fd5b6000610be385828601610b6f565b9250506020610bf485828601610b6f565b9150509250929050565b600080600060608486031215610c1357600080fd5b6000610c2186828701610b6f565b9350506020610c3286828701610b6f565b9250506040610c4386828701610b84565b9150509250925092565b60008060408385031215610c6057600080fd5b6000610c6e85828601610b6f565b9250506020610c7f85828601610b84565b9150509250929050565b610c9281610fbb565b82525050565b6000610ca382610f37565b610cad8185610f42565b9350610cbd818560208601610ffe565b610cc6816110c1565b840191505092915050565b6000610cde602383610f42565b9150610ce9826110d2565b604082019050919050565b6000610d01602283610f42565b9150610d0c82611121565b604082019050919050565b6000610d24601d83610f42565b9150610d2f82611170565b602082019050919050565b6000610d47602683610f42565b9150610d5282611199565b604082019050919050565b6000610d6a602583610f42565b9150610d75826111e8565b604082019050919050565b6000610d8d602483610f42565b9150610d9882611237565b604082019050919050565b6000610db0602583610f42565b9150610dbb82611286565b604082019050919050565b610dcf81610fe7565b82525050565b610dde81610ff1565b82525050565b6000602082019050610df96000830184610c89565b92915050565b60006020820190508181036000830152610e198184610c98565b905092915050565b60006020820190508181036000830152610e3a81610cd1565b9050919050565b60006020820190508181036000830152610e5a81610cf4565b9050919050565b60006020820190508181036000830152610e7a81610d17565b9050919050565b60006020820190508181036000830152610e9a81610d3a565b9050919050565b60006020820190508181036000830152610eba81610d5d565b9050919050565b60006020820190508181036000830152610eda81610d80565b9050919050565b60006020820190508181036000830152610efa81610da3565b9050919050565b6000602082019050610f166000830184610dc6565b92915050565b6000602082019050610f316000830184610dd5565b92915050565b600081519050919050565b600082825260208201905092915050565b6000610f5e82610fe7565b9150610f6983610fe7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115610f9e57610f9d611063565b5b828201905092915050565b6000610fb482610fc7565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561101c578082015181840152602081019050611001565b8381111561102b576000848401525b50505050565b6000600282049050600182168061104957607f821691505b6020821081141561105d5761105c611092565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6112de81610fa9565b81146112e957600080fd5b50565b6112f581610fe7565b811461130057600080fd5b5056fea2646970667358221220528e9f99da5848328108980c88dcb1501b939a9d0233b2d1854729422b301b9a64736f6c63430008040033", - "structLogs": [ - { - "pc": 0, - "op": "PUSH1", - "gas": 3001352, - "gasCost": 3, - "depth": 1 - }, - { - "pc": 2, - "op": "PUSH1", - "gas": 3001349, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80" - ] - }, - { - "pc": 4, - "op": "MSTORE", - "gas": 3001346, - "gasCost": 12, - "depth": 1, - "stack": [ - "0x80", - "0x40" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 5, - "op": "CALLVALUE", - "gas": 3001334, - "gasCost": 2, - "depth": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 6, - "op": "DUP1", - "gas": 3001332, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 7, - "op": "ISZERO", - "gas": 3001329, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 8, - "op": "PUSH2", - "gas": 3001326, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x0", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 11, - "op": "JUMPI", - "gas": 3001323, - "gasCost": 10, - "depth": 1, - "stack": [ - "0x0", - "0x1", - "0x10" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 16, - "op": "JUMPDEST", - "gas": 3001313, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 17, - "op": "POP", - "gas": 3001312, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 18, - "op": "PUSH1", - "gas": 3001310, - "gasCost": 3, - "depth": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 20, - "op": "CALLDATASIZE", - "gas": 3001307, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 21, - "op": "LT", - "gas": 3001305, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x4", - "0x44" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 22, - "op": "PUSH2", - "gas": 3001302, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 25, - "op": "JUMPI", - "gas": 3001299, - "gasCost": 10, - "depth": 1, - "stack": [ - "0x0", - "0xa9" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 26, - "op": "PUSH1", - "gas": 3001289, - "gasCost": 3, - "depth": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 28, - "op": "CALLDATALOAD", - "gas": 3001286, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 29, - "op": "PUSH1", - "gas": 3001283, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb0000000000000000000000008ba1f109551bd432803012645ac136dd" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 31, - "op": "SHR", - "gas": 3001280, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb0000000000000000000000008ba1f109551bd432803012645ac136dd", - "0xe0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 32, - "op": "DUP1", - "gas": 3001277, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 33, - "op": "PUSH4", - "gas": 3001274, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0xa9059cbb" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 38, - "op": "GT", - "gas": 3001271, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0xa9059cbb", - "0x39509351" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 39, - "op": "PUSH2", - "gas": 3001268, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 42, - "op": "JUMPI", - "gas": 3001265, - "gasCost": 10, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x0", - "0x71" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 43, - "op": "DUP1", - "gas": 3001255, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 44, - "op": "PUSH4", - "gas": 3001252, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0xa9059cbb" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 49, - "op": "EQ", - "gas": 3001249, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0xa9059cbb", - "0x39509351" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 50, - "op": "PUSH2", - "gas": 3001246, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 53, - "op": "JUMPI", - "gas": 3001243, - "gasCost": 10, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x0", - "0x168" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 54, - "op": "DUP1", - "gas": 3001233, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 55, - "op": "PUSH4", - "gas": 3001230, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0xa9059cbb" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 60, - "op": "EQ", - "gas": 3001227, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0xa9059cbb", - "0x70a08231" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 61, - "op": "PUSH2", - "gas": 3001224, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 64, - "op": "JUMPI", - "gas": 3001221, - "gasCost": 10, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x0", - "0x198" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 65, - "op": "DUP1", - "gas": 3001211, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 66, - "op": "PUSH4", - "gas": 3001208, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0xa9059cbb" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 71, - "op": "EQ", - "gas": 3001205, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0xa9059cbb", - "0x95d89b41" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 72, - "op": "PUSH2", - "gas": 3001202, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 75, - "op": "JUMPI", - "gas": 3001199, - "gasCost": 10, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x0", - "0x1c8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 76, - "op": "DUP1", - "gas": 3001189, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 77, - "op": "PUSH4", - "gas": 3001186, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0xa9059cbb" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 82, - "op": "EQ", - "gas": 3001183, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0xa9059cbb", - "0xa457c2d7" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 83, - "op": "PUSH2", - "gas": 3001180, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 86, - "op": "JUMPI", - "gas": 3001177, - "gasCost": 10, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x0", - "0x1e6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 87, - "op": "DUP1", - "gas": 3001167, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 88, - "op": "PUSH4", - "gas": 3001164, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0xa9059cbb" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 93, - "op": "EQ", - "gas": 3001161, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0xa9059cbb", - "0xa9059cbb" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 94, - "op": "PUSH2", - "gas": 3001158, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 97, - "op": "JUMPI", - "gas": 3001155, - "gasCost": 10, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x1", - "0x216" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 534, - "op": "JUMPDEST", - "gas": 3001145, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xa9059cbb" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 535, - "op": "PUSH2", - "gas": 3001144, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 538, - "op": "PUSH1", - "gas": 3001141, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 540, - "op": "DUP1", - "gas": 3001138, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 541, - "op": "CALLDATASIZE", - "gas": 3001135, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x4", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 542, - "op": "SUB", - "gas": 3001133, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x4", - "0x4", - "0x44" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 543, - "op": "DUP2", - "gas": 3001130, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x4", - "0x40" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 544, - "op": "ADD", - "gas": 3001127, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x4", - "0x40", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 545, - "op": "SWAP1", - "gas": 3001124, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x4", - "0x44" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 546, - "op": "PUSH2", - "gas": 3001121, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x44", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 549, - "op": "SWAP2", - "gas": 3001118, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x44", - "0x4", - "0x22b" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 550, - "op": "SWAP1", - "gas": 3001115, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x4", - "0x44" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 551, - "op": "PUSH2", - "gas": 3001112, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x44", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 554, - "op": "JUMP", - "gas": 3001109, - "gasCost": 8, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x44", - "0x4", - "0xc4d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 3149, - "op": "JUMPDEST", - "gas": 3001101, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x44", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 3150, - "op": "PUSH1", - "gas": 3001100, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x44", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 3152, - "op": "DUP1", - "gas": 3001097, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x44", - "0x4", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 3153, - "op": "PUSH1", - "gas": 3001094, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x44", - "0x4", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 3155, - "op": "DUP4", - "gas": 3001091, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x44", - "0x4", - "0x0", - "0x0", - "0x40" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 3156, - "op": "DUP6", - "gas": 3001088, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x44", - "0x4", - "0x0", - "0x0", - "0x40", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 3157, - "op": "SUB", - "gas": 3001085, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x44", - "0x4", - "0x0", - "0x0", - "0x40", - "0x4", - "0x44" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 3158, - "op": "SLT", - "gas": 3001082, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x44", - "0x4", - "0x0", - "0x0", - "0x40", - "0x40" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 3159, - "op": "ISZERO", - "gas": 3001079, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x44", - "0x4", - "0x0", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 3160, - "op": "PUSH2", - "gas": 3001076, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x44", - "0x4", - "0x0", - "0x0", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 3163, - "op": "JUMPI", - "gas": 3001073, - "gasCost": 10, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x44", - "0x4", - "0x0", - "0x0", - "0x1", - "0xc60" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 3168, - "op": "JUMPDEST", - "gas": 3001063, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x44", - "0x4", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 3169, - "op": "PUSH1", - "gas": 3001062, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x44", - "0x4", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 3171, - "op": "PUSH2", - "gas": 3001059, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x44", - "0x4", - "0x0", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 3174, - "op": "DUP6", - "gas": 3001056, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x44", - "0x4", - "0x0", - "0x0", - "0x0", - "0xc6e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 3175, - "op": "DUP3", - "gas": 3001053, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x44", - "0x4", - "0x0", - "0x0", - "0x0", - "0xc6e", - "0x44" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 3176, - "op": "DUP7", - "gas": 3001050, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x44", - "0x4", - "0x0", - "0x0", - "0x0", - "0xc6e", - "0x44", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 3177, - "op": "ADD", - "gas": 3001047, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x44", - "0x4", - "0x0", - "0x0", - "0x0", - "0xc6e", - "0x44", - "0x0", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 3178, - "op": "PUSH2", - "gas": 3001044, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x44", - "0x4", - "0x0", - "0x0", - "0x0", - "0xc6e", - "0x44", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 3181, - "op": "JUMP", - "gas": 3001041, - "gasCost": 8, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x44", - "0x4", - "0x0", - "0x0", - "0x0", - "0xc6e", - "0x44", - "0x4", - "0xb6f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2927, - "op": "JUMPDEST", - "gas": 3001033, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x44", - "0x4", - "0x0", - "0x0", - "0x0", - "0xc6e", - "0x44", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2928, - "op": "PUSH1", - "gas": 3001032, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x44", - "0x4", - "0x0", - "0x0", - "0x0", - "0xc6e", - "0x44", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2930, - "op": "DUP2", - "gas": 3001029, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x44", - "0x4", - "0x0", - "0x0", - "0x0", - "0xc6e", - "0x44", - "0x4", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2931, - "op": "CALLDATALOAD", - "gas": 3001026, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x44", - "0x4", - "0x0", - "0x0", - "0x0", - "0xc6e", - "0x44", - "0x4", - "0x0", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2932, - "op": "SWAP1", - "gas": 3001023, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x44", - "0x4", - "0x0", - "0x0", - "0x0", - "0xc6e", - "0x44", - "0x4", - "0x0", - "0x8ba1f109551bd432803012645ac136ddd64dba72" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2933, - "op": "POP", - "gas": 3001020, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x44", - "0x4", - "0x0", - "0x0", - "0x0", - "0xc6e", - "0x44", - "0x4", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2934, - "op": "PUSH2", - "gas": 3001018, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x44", - "0x4", - "0x0", - "0x0", - "0x0", - "0xc6e", - "0x44", - "0x4", - "0x8ba1f109551bd432803012645ac136ddd64dba72" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2937, - "op": "DUP2", - "gas": 3001015, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x44", - "0x4", - "0x0", - "0x0", - "0x0", - "0xc6e", - "0x44", - "0x4", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0xb7e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2938, - "op": "PUSH2", - "gas": 3001012, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x44", - "0x4", - "0x0", - "0x0", - "0x0", - "0xc6e", - "0x44", - "0x4", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0xb7e", - "0x8ba1f109551bd432803012645ac136ddd64dba72" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2941, - "op": "JUMP", - "gas": 3001009, - "gasCost": 8, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x44", - "0x4", - "0x0", - "0x0", - "0x0", - "0xc6e", - "0x44", - "0x4", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0xb7e", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x12d5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 4821, - "op": "JUMPDEST", - "gas": 3001001, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x44", - "0x4", - "0x0", - "0x0", - "0x0", - "0xc6e", - "0x44", - "0x4", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0xb7e", - "0x8ba1f109551bd432803012645ac136ddd64dba72" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 4822, - "op": "PUSH2", - "gas": 3001000, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x44", - "0x4", - "0x0", - "0x0", - "0x0", - "0xc6e", - "0x44", - "0x4", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0xb7e", - "0x8ba1f109551bd432803012645ac136ddd64dba72" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 4825, - "op": "DUP2", - "gas": 3000997, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x44", - "0x4", - "0x0", - "0x0", - "0x0", - "0xc6e", - "0x44", - "0x4", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0xb7e", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x12de" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 4826, - "op": "PUSH2", - "gas": 3000994, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x44", - "0x4", - "0x0", - "0x0", - "0x0", - "0xc6e", - "0x44", - "0x4", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0xb7e", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x12de", - "0x8ba1f109551bd432803012645ac136ddd64dba72" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 4829, - "op": "JUMP", - "gas": 3000991, - "gasCost": 8, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x44", - "0x4", - "0x0", - "0x0", - "0x0", - "0xc6e", - "0x44", - "0x4", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0xb7e", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x12de", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0xfa9" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 4009, - "op": "JUMPDEST", - "gas": 3000983, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x44", - "0x4", - "0x0", - "0x0", - "0x0", - "0xc6e", - "0x44", - "0x4", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0xb7e", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x12de", - "0x8ba1f109551bd432803012645ac136ddd64dba72" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 4010, - "op": "PUSH1", - "gas": 3000982, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x44", - "0x4", - "0x0", - "0x0", - "0x0", - "0xc6e", - "0x44", - "0x4", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0xb7e", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x12de", - "0x8ba1f109551bd432803012645ac136ddd64dba72" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 4012, - "op": "PUSH2", - "gas": 3000979, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x44", - "0x4", - "0x0", - "0x0", - "0x0", - "0xc6e", - "0x44", - "0x4", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0xb7e", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x12de", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 4015, - "op": "DUP3", - "gas": 3000976, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x44", - "0x4", - "0x0", - "0x0", - "0x0", - "0xc6e", - "0x44", - "0x4", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0xb7e", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x12de", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x0", - "0xfb4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 4016, - "op": "PUSH2", - "gas": 3000973, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x44", - "0x4", - "0x0", - "0x0", - "0x0", - "0xc6e", - "0x44", - "0x4", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0xb7e", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x12de", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x0", - "0xfb4", - "0x8ba1f109551bd432803012645ac136ddd64dba72" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 4019, - "op": "JUMP", - "gas": 3000970, - "gasCost": 8, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x44", - "0x4", - "0x0", - "0x0", - "0x0", - "0xc6e", - "0x44", - "0x4", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0xb7e", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x12de", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x0", - "0xfb4", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0xfc7" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 4039, - "op": "JUMPDEST", - "gas": 3000962, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x44", - "0x4", - "0x0", - "0x0", - "0x0", - "0xc6e", - "0x44", - "0x4", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0xb7e", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x12de", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x0", - "0xfb4", - "0x8ba1f109551bd432803012645ac136ddd64dba72" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 4040, - "op": "PUSH1", - "gas": 3000961, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x44", - "0x4", - "0x0", - "0x0", - "0x0", - "0xc6e", - "0x44", - "0x4", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0xb7e", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x12de", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x0", - "0xfb4", - "0x8ba1f109551bd432803012645ac136ddd64dba72" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 4042, - "op": "PUSH20", - "gas": 3000958, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x44", - "0x4", - "0x0", - "0x0", - "0x0", - "0xc6e", - "0x44", - "0x4", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0xb7e", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x12de", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x0", - "0xfb4", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 4063, - "op": "DUP3", - "gas": 3000955, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x44", - "0x4", - "0x0", - "0x0", - "0x0", - "0xc6e", - "0x44", - "0x4", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0xb7e", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x12de", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x0", - "0xfb4", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x0", - "0xffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 4064, - "op": "AND", - "gas": 3000952, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x44", - "0x4", - "0x0", - "0x0", - "0x0", - "0xc6e", - "0x44", - "0x4", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0xb7e", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x12de", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x0", - "0xfb4", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x0", - "0xffffffffffffffffffffffffffffffffffffffff", - "0x8ba1f109551bd432803012645ac136ddd64dba72" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 4065, - "op": "SWAP1", - "gas": 3000949, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x44", - "0x4", - "0x0", - "0x0", - "0x0", - "0xc6e", - "0x44", - "0x4", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0xb7e", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x12de", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x0", - "0xfb4", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x0", - "0x8ba1f109551bd432803012645ac136ddd64dba72" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 4066, - "op": "POP", - "gas": 3000946, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x44", - "0x4", - "0x0", - "0x0", - "0x0", - "0xc6e", - "0x44", - "0x4", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0xb7e", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x12de", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x0", - "0xfb4", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 4067, - "op": "SWAP2", - "gas": 3000944, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x44", - "0x4", - "0x0", - "0x0", - "0x0", - "0xc6e", - "0x44", - "0x4", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0xb7e", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x12de", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x0", - "0xfb4", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x8ba1f109551bd432803012645ac136ddd64dba72" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 4068, - "op": "SWAP1", - "gas": 3000941, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x44", - "0x4", - "0x0", - "0x0", - "0x0", - "0xc6e", - "0x44", - "0x4", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0xb7e", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x12de", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x0", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0xfb4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 4069, - "op": "POP", - "gas": 3000938, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x44", - "0x4", - "0x0", - "0x0", - "0x0", - "0xc6e", - "0x44", - "0x4", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0xb7e", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x12de", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x0", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0xfb4", - "0x8ba1f109551bd432803012645ac136ddd64dba72" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 4070, - "op": "JUMP", - "gas": 3000936, - "gasCost": 8, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x44", - "0x4", - "0x0", - "0x0", - "0x0", - "0xc6e", - "0x44", - "0x4", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0xb7e", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x12de", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x0", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0xfb4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 4020, - "op": "JUMPDEST", - "gas": 3000928, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x44", - "0x4", - "0x0", - "0x0", - "0x0", - "0xc6e", - "0x44", - "0x4", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0xb7e", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x12de", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x0", - "0x8ba1f109551bd432803012645ac136ddd64dba72" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 4021, - "op": "SWAP1", - "gas": 3000927, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x44", - "0x4", - "0x0", - "0x0", - "0x0", - "0xc6e", - "0x44", - "0x4", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0xb7e", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x12de", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x0", - "0x8ba1f109551bd432803012645ac136ddd64dba72" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 4022, - "op": "POP", - "gas": 3000924, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x44", - "0x4", - "0x0", - "0x0", - "0x0", - "0xc6e", - "0x44", - "0x4", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0xb7e", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x12de", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 4023, - "op": "SWAP2", - "gas": 3000922, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x44", - "0x4", - "0x0", - "0x0", - "0x0", - "0xc6e", - "0x44", - "0x4", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0xb7e", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x12de", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x8ba1f109551bd432803012645ac136ddd64dba72" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 4024, - "op": "SWAP1", - "gas": 3000919, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x44", - "0x4", - "0x0", - "0x0", - "0x0", - "0xc6e", - "0x44", - "0x4", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0xb7e", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x12de" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 4025, - "op": "POP", - "gas": 3000916, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x44", - "0x4", - "0x0", - "0x0", - "0x0", - "0xc6e", - "0x44", - "0x4", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0xb7e", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x12de", - "0x8ba1f109551bd432803012645ac136ddd64dba72" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 4026, - "op": "JUMP", - "gas": 3000914, - "gasCost": 8, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x44", - "0x4", - "0x0", - "0x0", - "0x0", - "0xc6e", - "0x44", - "0x4", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0xb7e", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x12de" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 4830, - "op": "JUMPDEST", - "gas": 3000906, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x44", - "0x4", - "0x0", - "0x0", - "0x0", - "0xc6e", - "0x44", - "0x4", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0xb7e", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x8ba1f109551bd432803012645ac136ddd64dba72" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 4831, - "op": "DUP2", - "gas": 3000905, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x44", - "0x4", - "0x0", - "0x0", - "0x0", - "0xc6e", - "0x44", - "0x4", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0xb7e", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x8ba1f109551bd432803012645ac136ddd64dba72" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 4832, - "op": "EQ", - "gas": 3000902, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x44", - "0x4", - "0x0", - "0x0", - "0x0", - "0xc6e", - "0x44", - "0x4", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0xb7e", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x8ba1f109551bd432803012645ac136ddd64dba72" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 4833, - "op": "PUSH2", - "gas": 3000899, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x44", - "0x4", - "0x0", - "0x0", - "0x0", - "0xc6e", - "0x44", - "0x4", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0xb7e", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 4836, - "op": "JUMPI", - "gas": 3000896, - "gasCost": 10, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x44", - "0x4", - "0x0", - "0x0", - "0x0", - "0xc6e", - "0x44", - "0x4", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0xb7e", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x1", - "0x12e9" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 4841, - "op": "JUMPDEST", - "gas": 3000886, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x44", - "0x4", - "0x0", - "0x0", - "0x0", - "0xc6e", - "0x44", - "0x4", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0xb7e", - "0x8ba1f109551bd432803012645ac136ddd64dba72" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 4842, - "op": "POP", - "gas": 3000885, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x44", - "0x4", - "0x0", - "0x0", - "0x0", - "0xc6e", - "0x44", - "0x4", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0xb7e", - "0x8ba1f109551bd432803012645ac136ddd64dba72" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 4843, - "op": "JUMP", - "gas": 3000883, - "gasCost": 8, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x44", - "0x4", - "0x0", - "0x0", - "0x0", - "0xc6e", - "0x44", - "0x4", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0xb7e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2942, - "op": "JUMPDEST", - "gas": 3000875, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x44", - "0x4", - "0x0", - "0x0", - "0x0", - "0xc6e", - "0x44", - "0x4", - "0x8ba1f109551bd432803012645ac136ddd64dba72" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2943, - "op": "SWAP3", - "gas": 3000874, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x44", - "0x4", - "0x0", - "0x0", - "0x0", - "0xc6e", - "0x44", - "0x4", - "0x8ba1f109551bd432803012645ac136ddd64dba72" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2944, - "op": "SWAP2", - "gas": 3000871, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x44", - "0x4", - "0x0", - "0x0", - "0x0", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x44", - "0x4", - "0xc6e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2945, - "op": "POP", - "gas": 3000868, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x44", - "0x4", - "0x0", - "0x0", - "0x0", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0xc6e", - "0x4", - "0x44" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2946, - "op": "POP", - "gas": 3000866, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x44", - "0x4", - "0x0", - "0x0", - "0x0", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0xc6e", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2947, - "op": "JUMP", - "gas": 3000864, - "gasCost": 8, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x44", - "0x4", - "0x0", - "0x0", - "0x0", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0xc6e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 3182, - "op": "JUMPDEST", - "gas": 3000856, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x44", - "0x4", - "0x0", - "0x0", - "0x0", - "0x8ba1f109551bd432803012645ac136ddd64dba72" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 3183, - "op": "SWAP3", - "gas": 3000855, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x44", - "0x4", - "0x0", - "0x0", - "0x0", - "0x8ba1f109551bd432803012645ac136ddd64dba72" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 3184, - "op": "POP", - "gas": 3000852, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x44", - "0x4", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x0", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 3185, - "op": "POP", - "gas": 3000850, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x44", - "0x4", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 3186, - "op": "PUSH1", - "gas": 3000848, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x44", - "0x4", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 3188, - "op": "PUSH2", - "gas": 3000845, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x44", - "0x4", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x0", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 3191, - "op": "DUP6", - "gas": 3000842, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x44", - "0x4", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x0", - "0x20", - "0xc7f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 3192, - "op": "DUP3", - "gas": 3000839, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x44", - "0x4", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x0", - "0x20", - "0xc7f", - "0x44" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 3193, - "op": "DUP7", - "gas": 3000836, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x44", - "0x4", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x0", - "0x20", - "0xc7f", - "0x44", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 3194, - "op": "ADD", - "gas": 3000833, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x44", - "0x4", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x0", - "0x20", - "0xc7f", - "0x44", - "0x20", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 3195, - "op": "PUSH2", - "gas": 3000830, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x44", - "0x4", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x0", - "0x20", - "0xc7f", - "0x44", - "0x24" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 3198, - "op": "JUMP", - "gas": 3000827, - "gasCost": 8, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x44", - "0x4", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x0", - "0x20", - "0xc7f", - "0x44", - "0x24", - "0xb84" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2948, - "op": "JUMPDEST", - "gas": 3000819, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x44", - "0x4", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x0", - "0x20", - "0xc7f", - "0x44", - "0x24" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2949, - "op": "PUSH1", - "gas": 3000818, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x44", - "0x4", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x0", - "0x20", - "0xc7f", - "0x44", - "0x24" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2951, - "op": "DUP2", - "gas": 3000815, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x44", - "0x4", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x0", - "0x20", - "0xc7f", - "0x44", - "0x24", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2952, - "op": "CALLDATALOAD", - "gas": 3000812, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x44", - "0x4", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x0", - "0x20", - "0xc7f", - "0x44", - "0x24", - "0x0", - "0x24" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2953, - "op": "SWAP1", - "gas": 3000809, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x44", - "0x4", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x0", - "0x20", - "0xc7f", - "0x44", - "0x24", - "0x0", - "0x3e8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2954, - "op": "POP", - "gas": 3000806, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x44", - "0x4", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x0", - "0x20", - "0xc7f", - "0x44", - "0x24", - "0x3e8", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2955, - "op": "PUSH2", - "gas": 3000804, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x44", - "0x4", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x0", - "0x20", - "0xc7f", - "0x44", - "0x24", - "0x3e8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2958, - "op": "DUP2", - "gas": 3000801, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x44", - "0x4", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x0", - "0x20", - "0xc7f", - "0x44", - "0x24", - "0x3e8", - "0xb93" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2959, - "op": "PUSH2", - "gas": 3000798, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x44", - "0x4", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x0", - "0x20", - "0xc7f", - "0x44", - "0x24", - "0x3e8", - "0xb93", - "0x3e8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2962, - "op": "JUMP", - "gas": 3000795, - "gasCost": 8, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x44", - "0x4", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x0", - "0x20", - "0xc7f", - "0x44", - "0x24", - "0x3e8", - "0xb93", - "0x3e8", - "0x12ec" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 4844, - "op": "JUMPDEST", - "gas": 3000787, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x44", - "0x4", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x0", - "0x20", - "0xc7f", - "0x44", - "0x24", - "0x3e8", - "0xb93", - "0x3e8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 4845, - "op": "PUSH2", - "gas": 3000786, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x44", - "0x4", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x0", - "0x20", - "0xc7f", - "0x44", - "0x24", - "0x3e8", - "0xb93", - "0x3e8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 4848, - "op": "DUP2", - "gas": 3000783, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x44", - "0x4", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x0", - "0x20", - "0xc7f", - "0x44", - "0x24", - "0x3e8", - "0xb93", - "0x3e8", - "0x12f5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 4849, - "op": "PUSH2", - "gas": 3000780, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x44", - "0x4", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x0", - "0x20", - "0xc7f", - "0x44", - "0x24", - "0x3e8", - "0xb93", - "0x3e8", - "0x12f5", - "0x3e8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 4852, - "op": "JUMP", - "gas": 3000777, - "gasCost": 8, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x44", - "0x4", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x0", - "0x20", - "0xc7f", - "0x44", - "0x24", - "0x3e8", - "0xb93", - "0x3e8", - "0x12f5", - "0x3e8", - "0xfe7" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 4071, - "op": "JUMPDEST", - "gas": 3000769, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x44", - "0x4", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x0", - "0x20", - "0xc7f", - "0x44", - "0x24", - "0x3e8", - "0xb93", - "0x3e8", - "0x12f5", - "0x3e8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 4072, - "op": "PUSH1", - "gas": 3000768, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x44", - "0x4", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x0", - "0x20", - "0xc7f", - "0x44", - "0x24", - "0x3e8", - "0xb93", - "0x3e8", - "0x12f5", - "0x3e8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 4074, - "op": "DUP2", - "gas": 3000765, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x44", - "0x4", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x0", - "0x20", - "0xc7f", - "0x44", - "0x24", - "0x3e8", - "0xb93", - "0x3e8", - "0x12f5", - "0x3e8", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 4075, - "op": "SWAP1", - "gas": 3000762, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x44", - "0x4", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x0", - "0x20", - "0xc7f", - "0x44", - "0x24", - "0x3e8", - "0xb93", - "0x3e8", - "0x12f5", - "0x3e8", - "0x0", - "0x3e8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 4076, - "op": "POP", - "gas": 3000759, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x44", - "0x4", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x0", - "0x20", - "0xc7f", - "0x44", - "0x24", - "0x3e8", - "0xb93", - "0x3e8", - "0x12f5", - "0x3e8", - "0x3e8", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 4077, - "op": "SWAP2", - "gas": 3000757, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x44", - "0x4", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x0", - "0x20", - "0xc7f", - "0x44", - "0x24", - "0x3e8", - "0xb93", - "0x3e8", - "0x12f5", - "0x3e8", - "0x3e8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 4078, - "op": "SWAP1", - "gas": 3000754, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x44", - "0x4", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x0", - "0x20", - "0xc7f", - "0x44", - "0x24", - "0x3e8", - "0xb93", - "0x3e8", - "0x3e8", - "0x3e8", - "0x12f5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 4079, - "op": "POP", - "gas": 3000751, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x44", - "0x4", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x0", - "0x20", - "0xc7f", - "0x44", - "0x24", - "0x3e8", - "0xb93", - "0x3e8", - "0x3e8", - "0x12f5", - "0x3e8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 4080, - "op": "JUMP", - "gas": 3000749, - "gasCost": 8, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x44", - "0x4", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x0", - "0x20", - "0xc7f", - "0x44", - "0x24", - "0x3e8", - "0xb93", - "0x3e8", - "0x3e8", - "0x12f5" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 4853, - "op": "JUMPDEST", - "gas": 3000741, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x44", - "0x4", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x0", - "0x20", - "0xc7f", - "0x44", - "0x24", - "0x3e8", - "0xb93", - "0x3e8", - "0x3e8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 4854, - "op": "DUP2", - "gas": 3000740, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x44", - "0x4", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x0", - "0x20", - "0xc7f", - "0x44", - "0x24", - "0x3e8", - "0xb93", - "0x3e8", - "0x3e8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 4855, - "op": "EQ", - "gas": 3000737, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x44", - "0x4", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x0", - "0x20", - "0xc7f", - "0x44", - "0x24", - "0x3e8", - "0xb93", - "0x3e8", - "0x3e8", - "0x3e8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 4856, - "op": "PUSH2", - "gas": 3000734, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x44", - "0x4", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x0", - "0x20", - "0xc7f", - "0x44", - "0x24", - "0x3e8", - "0xb93", - "0x3e8", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 4859, - "op": "JUMPI", - "gas": 3000731, - "gasCost": 10, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x44", - "0x4", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x0", - "0x20", - "0xc7f", - "0x44", - "0x24", - "0x3e8", - "0xb93", - "0x3e8", - "0x1", - "0x1300" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 4864, - "op": "JUMPDEST", - "gas": 3000721, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x44", - "0x4", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x0", - "0x20", - "0xc7f", - "0x44", - "0x24", - "0x3e8", - "0xb93", - "0x3e8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 4865, - "op": "POP", - "gas": 3000720, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x44", - "0x4", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x0", - "0x20", - "0xc7f", - "0x44", - "0x24", - "0x3e8", - "0xb93", - "0x3e8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 4866, - "op": "JUMP", - "gas": 3000718, - "gasCost": 8, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x44", - "0x4", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x0", - "0x20", - "0xc7f", - "0x44", - "0x24", - "0x3e8", - "0xb93" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2963, - "op": "JUMPDEST", - "gas": 3000710, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x44", - "0x4", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x0", - "0x20", - "0xc7f", - "0x44", - "0x24", - "0x3e8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2964, - "op": "SWAP3", - "gas": 3000709, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x44", - "0x4", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x0", - "0x20", - "0xc7f", - "0x44", - "0x24", - "0x3e8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2965, - "op": "SWAP2", - "gas": 3000706, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x44", - "0x4", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x0", - "0x20", - "0x3e8", - "0x44", - "0x24", - "0xc7f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2966, - "op": "POP", - "gas": 3000703, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x44", - "0x4", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x0", - "0x20", - "0x3e8", - "0xc7f", - "0x24", - "0x44" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2967, - "op": "POP", - "gas": 3000701, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x44", - "0x4", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x0", - "0x20", - "0x3e8", - "0xc7f", - "0x24" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2968, - "op": "JUMP", - "gas": 3000699, - "gasCost": 8, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x44", - "0x4", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x0", - "0x20", - "0x3e8", - "0xc7f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 3199, - "op": "JUMPDEST", - "gas": 3000691, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x44", - "0x4", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x0", - "0x20", - "0x3e8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 3200, - "op": "SWAP2", - "gas": 3000690, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x44", - "0x4", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x0", - "0x20", - "0x3e8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 3201, - "op": "POP", - "gas": 3000687, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x44", - "0x4", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x20", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 3202, - "op": "POP", - "gas": 3000685, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x44", - "0x4", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 3203, - "op": "SWAP3", - "gas": 3000683, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x44", - "0x4", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 3204, - "op": "POP", - "gas": 3000680, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x3e8", - "0x4", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x44" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 3205, - "op": "SWAP3", - "gas": 3000678, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x22b", - "0x3e8", - "0x4", - "0x8ba1f109551bd432803012645ac136ddd64dba72" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 3206, - "op": "SWAP1", - "gas": 3000675, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x4", - "0x22b" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 3207, - "op": "POP", - "gas": 3000672, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x22b", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 3208, - "op": "JUMP", - "gas": 3000670, - "gasCost": 8, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x22b" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 555, - "op": "JUMPDEST", - "gas": 3000662, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 556, - "op": "PUSH2", - "gas": 3000661, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 559, - "op": "JUMP", - "gas": 3000658, - "gasCost": 8, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x5db" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 1499, - "op": "JUMPDEST", - "gas": 3000650, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 1500, - "op": "PUSH1", - "gas": 3000649, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 1502, - "op": "DUP1", - "gas": 3000646, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 1503, - "op": "PUSH2", - "gas": 3000643, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 1506, - "op": "PUSH2", - "gas": 3000640, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x0", - "0x5e6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 1509, - "op": "JUMP", - "gas": 3000637, - "gasCost": 8, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x0", - "0x5e6", - "0x685" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 1669, - "op": "JUMPDEST", - "gas": 3000629, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x0", - "0x5e6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 1670, - "op": "PUSH1", - "gas": 3000628, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x0", - "0x5e6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 1672, - "op": "CALLER", - "gas": 3000625, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x0", - "0x5e6", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 1673, - "op": "SWAP1", - "gas": 3000623, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x0", - "0x5e6", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 1674, - "op": "POP", - "gas": 3000620, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x0", - "0x5e6", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 1675, - "op": "SWAP1", - "gas": 3000618, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x0", - "0x5e6", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 1676, - "op": "JUMP", - "gas": 3000615, - "gasCost": 8, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5e6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 1510, - "op": "JUMPDEST", - "gas": 3000607, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 1511, - "op": "SWAP1", - "gas": 3000606, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 1512, - "op": "POP", - "gas": 3000603, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 1513, - "op": "PUSH2", - "gas": 3000601, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 1516, - "op": "DUP2", - "gas": 3000598, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 1517, - "op": "DUP6", - "gas": 3000595, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 1518, - "op": "DUP6", - "gas": 3000592, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 1519, - "op": "PUSH2", - "gas": 3000589, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 1522, - "op": "JUMP", - "gas": 3000586, - "gasCost": 8, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x8e4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2276, - "op": "JUMPDEST", - "gas": 3000578, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2277, - "op": "PUSH1", - "gas": 3000577, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2279, - "op": "PUSH20", - "gas": 3000574, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2300, - "op": "AND", - "gas": 3000571, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0xffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2301, - "op": "DUP4", - "gas": 3000568, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2302, - "op": "PUSH20", - "gas": 3000565, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2323, - "op": "AND", - "gas": 3000562, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0xffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2324, - "op": "EQ", - "gas": 3000559, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2325, - "op": "ISZERO", - "gas": 3000556, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2326, - "op": "PUSH2", - "gas": 3000553, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2329, - "op": "JUMPI", - "gas": 3000550, - "gasCost": 10, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x1", - "0x954" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2388, - "op": "JUMPDEST", - "gas": 3000540, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2389, - "op": "PUSH1", - "gas": 3000539, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2391, - "op": "PUSH20", - "gas": 3000536, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2412, - "op": "AND", - "gas": 3000533, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0xffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2413, - "op": "DUP3", - "gas": 3000530, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2414, - "op": "PUSH20", - "gas": 3000527, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x8ba1f109551bd432803012645ac136ddd64dba72" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2435, - "op": "AND", - "gas": 3000524, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0xffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2436, - "op": "EQ", - "gas": 3000521, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x8ba1f109551bd432803012645ac136ddd64dba72" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2437, - "op": "ISZERO", - "gas": 3000518, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2438, - "op": "PUSH2", - "gas": 3000515, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2441, - "op": "JUMPI", - "gas": 3000512, - "gasCost": 10, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x1", - "0x9c4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2500, - "op": "JUMPDEST", - "gas": 3000502, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2501, - "op": "PUSH2", - "gas": 3000501, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2504, - "op": "DUP4", - "gas": 3000498, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x9cf" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2505, - "op": "DUP4", - "gas": 3000495, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x9cf", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2506, - "op": "DUP4", - "gas": 3000492, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x9cf", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2507, - "op": "PUSH2", - "gas": 3000489, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x9cf", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2510, - "op": "JUMP", - "gas": 3000486, - "gasCost": 8, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x9cf", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0xb65" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2917, - "op": "JUMPDEST", - "gas": 3000478, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x9cf", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2918, - "op": "POP", - "gas": 3000477, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x9cf", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2919, - "op": "POP", - "gas": 3000475, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x9cf", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2920, - "op": "POP", - "gas": 3000473, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x9cf", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2921, - "op": "JUMP", - "gas": 3000471, - "gasCost": 8, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x9cf" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2511, - "op": "JUMPDEST", - "gas": 3000463, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2512, - "op": "PUSH1", - "gas": 3000462, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2514, - "op": "DUP1", - "gas": 3000459, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2515, - "op": "PUSH1", - "gas": 3000456, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2517, - "op": "DUP6", - "gas": 3000453, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2518, - "op": "PUSH20", - "gas": 3000450, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x0", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2539, - "op": "AND", - "gas": 3000447, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x0", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0xffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2540, - "op": "PUSH20", - "gas": 3000444, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x0", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2561, - "op": "AND", - "gas": 3000441, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x0", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0xffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2562, - "op": "DUP2", - "gas": 3000438, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x0", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2563, - "op": "MSTORE", - "gas": 3000435, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x0", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2564, - "op": "PUSH1", - "gas": 3000432, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2566, - "op": "ADD", - "gas": 3000429, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x0", - "0x0", - "0x20" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2567, - "op": "SWAP1", - "gas": 3000426, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x0", - "0x20" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2568, - "op": "DUP2", - "gas": 3000423, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x20", - "0x0" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2569, - "op": "MSTORE", - "gas": 3000420, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x20", - "0x0", - "0x20" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2570, - "op": "PUSH1", - "gas": 3000417, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x20" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2572, - "op": "ADD", - "gas": 3000414, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x20", - "0x20" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2573, - "op": "PUSH1", - "gas": 3000411, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x40" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2575, - "op": "SHA3", - "gas": 3000408, - "gasCost": 42, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x40", - "0x0" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2576, - "op": "SLOAD", - "gas": 3000366, - "gasCost": 2100, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x5a158573daab1c353835da34297290f5f813859e4bb52de641691b875502523f" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0x5a158573daab1c353835da34297290f5f813859e4bb52de641691b875502523f": "0x00000000000000000000000000000000000000007f228daac38a51833dbbf448" - }, - "extraData": { - "proofList": [ - { - "address": "0xee0e03c1a621084ca3c542f36e4a5d0230304471", - "nonce": 1, - "balance": "0x0", - "codeHash": "0x178763dea206ad5ecfbf211ddeb69d930d18811bc617cb4bbb0c0e7f0d28a3aa", - "storage": { - "key": "0x5a158573daab1c353835da34297290f5f813859e4bb52de641691b875502523f", - "value": "0x00000000000000000000000000000000000000007f228daac38a51833dbbf448" - } - } - ] - } - }, - { - "pc": 2577, - "op": "SWAP1", - "gas": 2998266, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x7f228daac38a51833dbbf448" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2578, - "op": "POP", - "gas": 2998263, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x0" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2579, - "op": "DUP2", - "gas": 2998261, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2580, - "op": "DUP2", - "gas": 2998258, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x3e8" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2581, - "op": "LT", - "gas": 2998255, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x3e8", - "0x7f228daac38a51833dbbf448" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2582, - "op": "ISZERO", - "gas": 2998252, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x0" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2583, - "op": "PUSH2", - "gas": 2998249, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x1" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2586, - "op": "JUMPI", - "gas": 2998246, - "gasCost": 10, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x1", - "0xa55" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2645, - "op": "JUMPDEST", - "gas": 2998236, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2646, - "op": "DUP2", - "gas": 2998235, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2647, - "op": "DUP2", - "gas": 2998232, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x3e8" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2648, - "op": "SUB", - "gas": 2998229, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x3e8", - "0x7f228daac38a51833dbbf448" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2649, - "op": "PUSH1", - "gas": 2998226, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x7f228daac38a51833dbbf060" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2651, - "op": "DUP1", - "gas": 2998223, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x7f228daac38a51833dbbf060", - "0x0" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2652, - "op": "DUP7", - "gas": 2998220, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x7f228daac38a51833dbbf060", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2653, - "op": "PUSH20", - "gas": 2998217, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x7f228daac38a51833dbbf060", - "0x0", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2674, - "op": "AND", - "gas": 2998214, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x7f228daac38a51833dbbf060", - "0x0", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0xffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2675, - "op": "PUSH20", - "gas": 2998211, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x7f228daac38a51833dbbf060", - "0x0", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2696, - "op": "AND", - "gas": 2998208, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x7f228daac38a51833dbbf060", - "0x0", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0xffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2697, - "op": "DUP2", - "gas": 2998205, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x7f228daac38a51833dbbf060", - "0x0", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2698, - "op": "MSTORE", - "gas": 2998202, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x7f228daac38a51833dbbf060", - "0x0", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x0" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2699, - "op": "PUSH1", - "gas": 2998199, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x7f228daac38a51833dbbf060", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2701, - "op": "ADD", - "gas": 2998196, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x7f228daac38a51833dbbf060", - "0x0", - "0x0", - "0x20" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2702, - "op": "SWAP1", - "gas": 2998193, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x7f228daac38a51833dbbf060", - "0x0", - "0x20" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2703, - "op": "DUP2", - "gas": 2998190, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x7f228daac38a51833dbbf060", - "0x20", - "0x0" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2704, - "op": "MSTORE", - "gas": 2998187, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x7f228daac38a51833dbbf060", - "0x20", - "0x0", - "0x20" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2705, - "op": "PUSH1", - "gas": 2998184, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x7f228daac38a51833dbbf060", - "0x20" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2707, - "op": "ADD", - "gas": 2998181, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x7f228daac38a51833dbbf060", - "0x20", - "0x20" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2708, - "op": "PUSH1", - "gas": 2998178, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x7f228daac38a51833dbbf060", - "0x40" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2710, - "op": "SHA3", - "gas": 2998175, - "gasCost": 42, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x7f228daac38a51833dbbf060", - "0x40", - "0x0" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2711, - "op": "DUP2", - "gas": 2998133, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x7f228daac38a51833dbbf060", - "0x5a158573daab1c353835da34297290f5f813859e4bb52de641691b875502523f" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2712, - "op": "SWAP1", - "gas": 2998130, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x7f228daac38a51833dbbf060", - "0x5a158573daab1c353835da34297290f5f813859e4bb52de641691b875502523f", - "0x7f228daac38a51833dbbf060" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2713, - "op": "SSTORE", - "gas": 2998127, - "gasCost": 2900, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x7f228daac38a51833dbbf060", - "0x7f228daac38a51833dbbf060", - "0x5a158573daab1c353835da34297290f5f813859e4bb52de641691b875502523f" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0x5a158573daab1c353835da34297290f5f813859e4bb52de641691b875502523f": "0x00000000000000000000000000000000000000007f228daac38a51833dbbf060" - }, - "extraData": { - "proofList": [ - { - "address": "0xee0e03c1a621084ca3c542f36e4a5d0230304471", - "nonce": 1, - "balance": "0x0", - "codeHash": "0x178763dea206ad5ecfbf211ddeb69d930d18811bc617cb4bbb0c0e7f0d28a3aa", - "storage": { - "key": "0x5a158573daab1c353835da34297290f5f813859e4bb52de641691b875502523f", - "value": "0x00000000000000000000000000000000000000007f228daac38a51833dbbf448" - } - } - ] - } - }, - { - "pc": 2714, - "op": "POP", - "gas": 2995227, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x7f228daac38a51833dbbf060" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2715, - "op": "DUP2", - "gas": 2995225, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2716, - "op": "PUSH1", - "gas": 2995222, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x3e8" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2718, - "op": "DUP1", - "gas": 2995219, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x3e8", - "0x0" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2719, - "op": "DUP6", - "gas": 2995216, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x3e8", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2720, - "op": "PUSH20", - "gas": 2995213, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x3e8", - "0x0", - "0x0", - "0x8ba1f109551bd432803012645ac136ddd64dba72" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2741, - "op": "AND", - "gas": 2995210, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x3e8", - "0x0", - "0x0", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0xffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2742, - "op": "PUSH20", - "gas": 2995207, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x3e8", - "0x0", - "0x0", - "0x8ba1f109551bd432803012645ac136ddd64dba72" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2763, - "op": "AND", - "gas": 2995204, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x3e8", - "0x0", - "0x0", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0xffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2764, - "op": "DUP2", - "gas": 2995201, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x3e8", - "0x0", - "0x0", - "0x8ba1f109551bd432803012645ac136ddd64dba72" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2765, - "op": "MSTORE", - "gas": 2995198, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x3e8", - "0x0", - "0x0", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x0" - ], - "memory": [ - "0000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2766, - "op": "PUSH1", - "gas": 2995195, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x3e8", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2768, - "op": "ADD", - "gas": 2995192, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x3e8", - "0x0", - "0x0", - "0x20" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2769, - "op": "SWAP1", - "gas": 2995189, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x3e8", - "0x0", - "0x20" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2770, - "op": "DUP2", - "gas": 2995186, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x3e8", - "0x20", - "0x0" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2771, - "op": "MSTORE", - "gas": 2995183, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x3e8", - "0x20", - "0x0", - "0x20" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2772, - "op": "PUSH1", - "gas": 2995180, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x3e8", - "0x20" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2774, - "op": "ADD", - "gas": 2995177, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x3e8", - "0x20", - "0x20" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2775, - "op": "PUSH1", - "gas": 2995174, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x3e8", - "0x40" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2777, - "op": "SHA3", - "gas": 2995171, - "gasCost": 42, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x3e8", - "0x40", - "0x0" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2778, - "op": "PUSH1", - "gas": 2995129, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x3e8", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2780, - "op": "DUP3", - "gas": 2995126, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x3e8", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0x0" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2781, - "op": "DUP3", - "gas": 2995123, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x3e8", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0x0", - "0x3e8" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2782, - "op": "SLOAD", - "gas": 2995120, - "gasCost": 2100, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x3e8", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0x0", - "0x3e8", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0x5a158573daab1c353835da34297290f5f813859e4bb52de641691b875502523f": "0x00000000000000000000000000000000000000007f228daac38a51833dbbf060", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f": "0x0000000000000000000000000000000000000000000000000000000000000bb8" - }, - "extraData": { - "proofList": [ - { - "address": "0xee0e03c1a621084ca3c542f36e4a5d0230304471", - "nonce": 1, - "balance": "0x0", - "codeHash": "0x178763dea206ad5ecfbf211ddeb69d930d18811bc617cb4bbb0c0e7f0d28a3aa", - "storage": { - "key": "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "value": "0x0000000000000000000000000000000000000000000000000000000000000bb8" - } - } - ] - } - }, - { - "pc": 2783, - "op": "PUSH2", - "gas": 2993020, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x3e8", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0x0", - "0x3e8", - "0xbb8" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2786, - "op": "SWAP2", - "gas": 2993017, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x3e8", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0x0", - "0x3e8", - "0xbb8", - "0xae8" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2787, - "op": "SWAP1", - "gas": 2993014, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x3e8", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0x0", - "0xae8", - "0xbb8", - "0x3e8" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2788, - "op": "PUSH2", - "gas": 2993011, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x3e8", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0x0", - "0xae8", - "0x3e8", - "0xbb8" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2791, - "op": "JUMP", - "gas": 2993008, - "gasCost": 8, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x3e8", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0x0", - "0xae8", - "0x3e8", - "0xbb8", - "0xf53" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 3923, - "op": "JUMPDEST", - "gas": 2993000, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x3e8", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0x0", - "0xae8", - "0x3e8", - "0xbb8" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 3924, - "op": "PUSH1", - "gas": 2992999, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x3e8", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0x0", - "0xae8", - "0x3e8", - "0xbb8" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 3926, - "op": "PUSH2", - "gas": 2992996, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x3e8", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0x0", - "0xae8", - "0x3e8", - "0xbb8", - "0x0" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 3929, - "op": "DUP3", - "gas": 2992993, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x3e8", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0x0", - "0xae8", - "0x3e8", - "0xbb8", - "0x0", - "0xf5e" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 3930, - "op": "PUSH2", - "gas": 2992990, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x3e8", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0x0", - "0xae8", - "0x3e8", - "0xbb8", - "0x0", - "0xf5e", - "0xbb8" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 3933, - "op": "JUMP", - "gas": 2992987, - "gasCost": 8, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x3e8", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0x0", - "0xae8", - "0x3e8", - "0xbb8", - "0x0", - "0xf5e", - "0xbb8", - "0xfe7" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 4071, - "op": "JUMPDEST", - "gas": 2992979, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x3e8", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0x0", - "0xae8", - "0x3e8", - "0xbb8", - "0x0", - "0xf5e", - "0xbb8" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 4072, - "op": "PUSH1", - "gas": 2992978, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x3e8", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0x0", - "0xae8", - "0x3e8", - "0xbb8", - "0x0", - "0xf5e", - "0xbb8" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 4074, - "op": "DUP2", - "gas": 2992975, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x3e8", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0x0", - "0xae8", - "0x3e8", - "0xbb8", - "0x0", - "0xf5e", - "0xbb8", - "0x0" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 4075, - "op": "SWAP1", - "gas": 2992972, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x3e8", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0x0", - "0xae8", - "0x3e8", - "0xbb8", - "0x0", - "0xf5e", - "0xbb8", - "0x0", - "0xbb8" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 4076, - "op": "POP", - "gas": 2992969, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x3e8", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0x0", - "0xae8", - "0x3e8", - "0xbb8", - "0x0", - "0xf5e", - "0xbb8", - "0xbb8", - "0x0" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 4077, - "op": "SWAP2", - "gas": 2992967, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x3e8", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0x0", - "0xae8", - "0x3e8", - "0xbb8", - "0x0", - "0xf5e", - "0xbb8", - "0xbb8" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 4078, - "op": "SWAP1", - "gas": 2992964, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x3e8", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0x0", - "0xae8", - "0x3e8", - "0xbb8", - "0x0", - "0xbb8", - "0xbb8", - "0xf5e" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 4079, - "op": "POP", - "gas": 2992961, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x3e8", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0x0", - "0xae8", - "0x3e8", - "0xbb8", - "0x0", - "0xbb8", - "0xf5e", - "0xbb8" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 4080, - "op": "JUMP", - "gas": 2992959, - "gasCost": 8, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x3e8", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0x0", - "0xae8", - "0x3e8", - "0xbb8", - "0x0", - "0xbb8", - "0xf5e" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 3934, - "op": "JUMPDEST", - "gas": 2992951, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x3e8", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0x0", - "0xae8", - "0x3e8", - "0xbb8", - "0x0", - "0xbb8" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 3935, - "op": "SWAP2", - "gas": 2992950, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x3e8", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0x0", - "0xae8", - "0x3e8", - "0xbb8", - "0x0", - "0xbb8" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 3936, - "op": "POP", - "gas": 2992947, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x3e8", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0x0", - "0xae8", - "0x3e8", - "0xbb8", - "0x0", - "0xbb8" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 3937, - "op": "PUSH2", - "gas": 2992945, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x3e8", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0x0", - "0xae8", - "0x3e8", - "0xbb8", - "0x0" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 3940, - "op": "DUP4", - "gas": 2992942, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x3e8", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0x0", - "0xae8", - "0x3e8", - "0xbb8", - "0x0", - "0xf69" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 3941, - "op": "PUSH2", - "gas": 2992939, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x3e8", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0x0", - "0xae8", - "0x3e8", - "0xbb8", - "0x0", - "0xf69", - "0x3e8" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 3944, - "op": "JUMP", - "gas": 2992936, - "gasCost": 8, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x3e8", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0x0", - "0xae8", - "0x3e8", - "0xbb8", - "0x0", - "0xf69", - "0x3e8", - "0xfe7" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 4071, - "op": "JUMPDEST", - "gas": 2992928, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x3e8", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0x0", - "0xae8", - "0x3e8", - "0xbb8", - "0x0", - "0xf69", - "0x3e8" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 4072, - "op": "PUSH1", - "gas": 2992927, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x3e8", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0x0", - "0xae8", - "0x3e8", - "0xbb8", - "0x0", - "0xf69", - "0x3e8" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 4074, - "op": "DUP2", - "gas": 2992924, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x3e8", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0x0", - "0xae8", - "0x3e8", - "0xbb8", - "0x0", - "0xf69", - "0x3e8", - "0x0" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 4075, - "op": "SWAP1", - "gas": 2992921, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x3e8", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0x0", - "0xae8", - "0x3e8", - "0xbb8", - "0x0", - "0xf69", - "0x3e8", - "0x0", - "0x3e8" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 4076, - "op": "POP", - "gas": 2992918, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x3e8", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0x0", - "0xae8", - "0x3e8", - "0xbb8", - "0x0", - "0xf69", - "0x3e8", - "0x3e8", - "0x0" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 4077, - "op": "SWAP2", - "gas": 2992916, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x3e8", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0x0", - "0xae8", - "0x3e8", - "0xbb8", - "0x0", - "0xf69", - "0x3e8", - "0x3e8" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 4078, - "op": "SWAP1", - "gas": 2992913, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x3e8", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0x0", - "0xae8", - "0x3e8", - "0xbb8", - "0x0", - "0x3e8", - "0x3e8", - "0xf69" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 4079, - "op": "POP", - "gas": 2992910, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x3e8", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0x0", - "0xae8", - "0x3e8", - "0xbb8", - "0x0", - "0x3e8", - "0xf69", - "0x3e8" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 4080, - "op": "JUMP", - "gas": 2992908, - "gasCost": 8, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x3e8", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0x0", - "0xae8", - "0x3e8", - "0xbb8", - "0x0", - "0x3e8", - "0xf69" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 3945, - "op": "JUMPDEST", - "gas": 2992900, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x3e8", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0x0", - "0xae8", - "0x3e8", - "0xbb8", - "0x0", - "0x3e8" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 3946, - "op": "SWAP3", - "gas": 2992899, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x3e8", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0x0", - "0xae8", - "0x3e8", - "0xbb8", - "0x0", - "0x3e8" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 3947, - "op": "POP", - "gas": 2992896, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x3e8", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0x0", - "0xae8", - "0x3e8", - "0xbb8", - "0x0", - "0x3e8" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 3948, - "op": "DUP3", - "gas": 2992894, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x3e8", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0x0", - "0xae8", - "0x3e8", - "0xbb8", - "0x0" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 3949, - "op": "PUSH32", - "gas": 2992891, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x3e8", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0x0", - "0xae8", - "0x3e8", - "0xbb8", - "0x0", - "0x3e8" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 3982, - "op": "SUB", - "gas": 2992888, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x3e8", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0x0", - "0xae8", - "0x3e8", - "0xbb8", - "0x0", - "0x3e8", - "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 3983, - "op": "DUP3", - "gas": 2992885, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x3e8", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0x0", - "0xae8", - "0x3e8", - "0xbb8", - "0x0", - "0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc17" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 3984, - "op": "GT", - "gas": 2992882, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x3e8", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0x0", - "0xae8", - "0x3e8", - "0xbb8", - "0x0", - "0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc17", - "0xbb8" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 3985, - "op": "ISZERO", - "gas": 2992879, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x3e8", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0x0", - "0xae8", - "0x3e8", - "0xbb8", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 3986, - "op": "PUSH2", - "gas": 2992876, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x3e8", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0x0", - "0xae8", - "0x3e8", - "0xbb8", - "0x0", - "0x1" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 3989, - "op": "JUMPI", - "gas": 2992873, - "gasCost": 10, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x3e8", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0x0", - "0xae8", - "0x3e8", - "0xbb8", - "0x0", - "0x1", - "0xf9e" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 3998, - "op": "JUMPDEST", - "gas": 2992863, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x3e8", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0x0", - "0xae8", - "0x3e8", - "0xbb8", - "0x0" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 3999, - "op": "DUP3", - "gas": 2992862, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x3e8", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0x0", - "0xae8", - "0x3e8", - "0xbb8", - "0x0" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 4000, - "op": "DUP3", - "gas": 2992859, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x3e8", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0x0", - "0xae8", - "0x3e8", - "0xbb8", - "0x0", - "0x3e8" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 4001, - "op": "ADD", - "gas": 2992856, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x3e8", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0x0", - "0xae8", - "0x3e8", - "0xbb8", - "0x0", - "0x3e8", - "0xbb8" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 4002, - "op": "SWAP1", - "gas": 2992853, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x3e8", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0x0", - "0xae8", - "0x3e8", - "0xbb8", - "0x0", - "0xfa0" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 4003, - "op": "POP", - "gas": 2992850, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x3e8", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0x0", - "0xae8", - "0x3e8", - "0xbb8", - "0xfa0", - "0x0" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 4004, - "op": "SWAP3", - "gas": 2992848, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x3e8", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0x0", - "0xae8", - "0x3e8", - "0xbb8", - "0xfa0" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 4005, - "op": "SWAP2", - "gas": 2992845, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x3e8", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0x0", - "0xfa0", - "0x3e8", - "0xbb8", - "0xae8" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 4006, - "op": "POP", - "gas": 2992842, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x3e8", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0x0", - "0xfa0", - "0xae8", - "0xbb8", - "0x3e8" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 4007, - "op": "POP", - "gas": 2992840, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x3e8", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0x0", - "0xfa0", - "0xae8", - "0xbb8" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 4008, - "op": "JUMP", - "gas": 2992838, - "gasCost": 8, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x3e8", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0x0", - "0xfa0", - "0xae8" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2792, - "op": "JUMPDEST", - "gas": 2992830, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x3e8", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0x0", - "0xfa0" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2793, - "op": "SWAP3", - "gas": 2992829, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x3e8", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0x0", - "0xfa0" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2794, - "op": "POP", - "gas": 2992826, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0xfa0", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0x0", - "0x3e8" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2795, - "op": "POP", - "gas": 2992824, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0xfa0", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0x0" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2796, - "op": "DUP2", - "gas": 2992822, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0xfa0", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2797, - "op": "SWAP1", - "gas": 2992819, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0xfa0", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "0xfa0" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2798, - "op": "SSTORE", - "gas": 2992816, - "gasCost": 2900, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0xfa0", - "0xfa0", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0x5a158573daab1c353835da34297290f5f813859e4bb52de641691b875502523f": "0x00000000000000000000000000000000000000007f228daac38a51833dbbf060", - "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f": "0x0000000000000000000000000000000000000000000000000000000000000fa0" - }, - "extraData": { - "proofList": [ - { - "address": "0xee0e03c1a621084ca3c542f36e4a5d0230304471", - "nonce": 1, - "balance": "0x0", - "codeHash": "0x178763dea206ad5ecfbf211ddeb69d930d18811bc617cb4bbb0c0e7f0d28a3aa", - "storage": { - "key": "0x977b86d8b2c12cb1b0cf5c34210e07337f1ed424f3f38ee3bddb639468b3095f", - "value": "0x0000000000000000000000000000000000000000000000000000000000000bb8" - } - } - ] - } - }, - { - "pc": 2799, - "op": "POP", - "gas": 2989916, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0xfa0" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2800, - "op": "DUP3", - "gas": 2989914, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2801, - "op": "PUSH20", - "gas": 2989911, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x8ba1f109551bd432803012645ac136ddd64dba72" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2822, - "op": "AND", - "gas": 2989908, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0xffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2823, - "op": "DUP5", - "gas": 2989905, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x8ba1f109551bd432803012645ac136ddd64dba72" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2824, - "op": "PUSH20", - "gas": 2989902, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2845, - "op": "AND", - "gas": 2989899, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0xffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2846, - "op": "PUSH32", - "gas": 2989896, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2879, - "op": "DUP5", - "gas": 2989893, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2880, - "op": "PUSH1", - "gas": 2989890, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0x3e8" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2882, - "op": "MLOAD", - "gas": 2989887, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0x3e8", - "0x40" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2883, - "op": "PUSH2", - "gas": 2989884, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0x3e8", - "0x80" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2886, - "op": "SWAP2", - "gas": 2989881, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0x3e8", - "0x80", - "0xb4c" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2887, - "op": "SWAP1", - "gas": 2989878, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0xb4c", - "0x80", - "0x3e8" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2888, - "op": "PUSH2", - "gas": 2989875, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0xb4c", - "0x3e8", - "0x80" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 2891, - "op": "JUMP", - "gas": 2989872, - "gasCost": 8, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0xb4c", - "0x3e8", - "0x80", - "0xf01" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 3841, - "op": "JUMPDEST", - "gas": 2989864, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0xb4c", - "0x3e8", - "0x80" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 3842, - "op": "PUSH1", - "gas": 2989863, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0xb4c", - "0x3e8", - "0x80" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 3844, - "op": "PUSH1", - "gas": 2989860, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0xb4c", - "0x3e8", - "0x80", - "0x0" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 3846, - "op": "DUP3", - "gas": 2989857, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0xb4c", - "0x3e8", - "0x80", - "0x0", - "0x20" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 3847, - "op": "ADD", - "gas": 2989854, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0xb4c", - "0x3e8", - "0x80", - "0x0", - "0x20", - "0x80" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 3848, - "op": "SWAP1", - "gas": 2989851, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0xb4c", - "0x3e8", - "0x80", - "0x0", - "0xa0" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 3849, - "op": "POP", - "gas": 2989848, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0xb4c", - "0x3e8", - "0x80", - "0xa0", - "0x0" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 3850, - "op": "PUSH2", - "gas": 2989846, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0xb4c", - "0x3e8", - "0x80", - "0xa0" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 3853, - "op": "PUSH1", - "gas": 2989843, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0xb4c", - "0x3e8", - "0x80", - "0xa0", - "0xf16" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 3855, - "op": "DUP4", - "gas": 2989840, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0xb4c", - "0x3e8", - "0x80", - "0xa0", - "0xf16", - "0x0" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 3856, - "op": "ADD", - "gas": 2989837, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0xb4c", - "0x3e8", - "0x80", - "0xa0", - "0xf16", - "0x0", - "0x80" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 3857, - "op": "DUP5", - "gas": 2989834, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0xb4c", - "0x3e8", - "0x80", - "0xa0", - "0xf16", - "0x80" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 3858, - "op": "PUSH2", - "gas": 2989831, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0xb4c", - "0x3e8", - "0x80", - "0xa0", - "0xf16", - "0x80", - "0x3e8" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 3861, - "op": "JUMP", - "gas": 2989828, - "gasCost": 8, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0xb4c", - "0x3e8", - "0x80", - "0xa0", - "0xf16", - "0x80", - "0x3e8", - "0xdc6" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 3526, - "op": "JUMPDEST", - "gas": 2989820, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0xb4c", - "0x3e8", - "0x80", - "0xa0", - "0xf16", - "0x80", - "0x3e8" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 3527, - "op": "PUSH2", - "gas": 2989819, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0xb4c", - "0x3e8", - "0x80", - "0xa0", - "0xf16", - "0x80", - "0x3e8" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 3530, - "op": "DUP2", - "gas": 2989816, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0xb4c", - "0x3e8", - "0x80", - "0xa0", - "0xf16", - "0x80", - "0x3e8", - "0xdcf" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 3531, - "op": "PUSH2", - "gas": 2989813, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0xb4c", - "0x3e8", - "0x80", - "0xa0", - "0xf16", - "0x80", - "0x3e8", - "0xdcf", - "0x3e8" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 3534, - "op": "JUMP", - "gas": 2989810, - "gasCost": 8, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0xb4c", - "0x3e8", - "0x80", - "0xa0", - "0xf16", - "0x80", - "0x3e8", - "0xdcf", - "0x3e8", - "0xfe7" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 4071, - "op": "JUMPDEST", - "gas": 2989802, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0xb4c", - "0x3e8", - "0x80", - "0xa0", - "0xf16", - "0x80", - "0x3e8", - "0xdcf", - "0x3e8" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 4072, - "op": "PUSH1", - "gas": 2989801, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0xb4c", - "0x3e8", - "0x80", - "0xa0", - "0xf16", - "0x80", - "0x3e8", - "0xdcf", - "0x3e8" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 4074, - "op": "DUP2", - "gas": 2989798, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0xb4c", - "0x3e8", - "0x80", - "0xa0", - "0xf16", - "0x80", - "0x3e8", - "0xdcf", - "0x3e8", - "0x0" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 4075, - "op": "SWAP1", - "gas": 2989795, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0xb4c", - "0x3e8", - "0x80", - "0xa0", - "0xf16", - "0x80", - "0x3e8", - "0xdcf", - "0x3e8", - "0x0", - "0x3e8" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 4076, - "op": "POP", - "gas": 2989792, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0xb4c", - "0x3e8", - "0x80", - "0xa0", - "0xf16", - "0x80", - "0x3e8", - "0xdcf", - "0x3e8", - "0x3e8", - "0x0" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 4077, - "op": "SWAP2", - "gas": 2989790, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0xb4c", - "0x3e8", - "0x80", - "0xa0", - "0xf16", - "0x80", - "0x3e8", - "0xdcf", - "0x3e8", - "0x3e8" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 4078, - "op": "SWAP1", - "gas": 2989787, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0xb4c", - "0x3e8", - "0x80", - "0xa0", - "0xf16", - "0x80", - "0x3e8", - "0x3e8", - "0x3e8", - "0xdcf" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 4079, - "op": "POP", - "gas": 2989784, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0xb4c", - "0x3e8", - "0x80", - "0xa0", - "0xf16", - "0x80", - "0x3e8", - "0x3e8", - "0xdcf", - "0x3e8" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 4080, - "op": "JUMP", - "gas": 2989782, - "gasCost": 8, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0xb4c", - "0x3e8", - "0x80", - "0xa0", - "0xf16", - "0x80", - "0x3e8", - "0x3e8", - "0xdcf" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 3535, - "op": "JUMPDEST", - "gas": 2989774, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0xb4c", - "0x3e8", - "0x80", - "0xa0", - "0xf16", - "0x80", - "0x3e8", - "0x3e8" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 3536, - "op": "DUP3", - "gas": 2989773, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0xb4c", - "0x3e8", - "0x80", - "0xa0", - "0xf16", - "0x80", - "0x3e8", - "0x3e8" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 3537, - "op": "MSTORE", - "gas": 2989770, - "gasCost": 9, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0xb4c", - "0x3e8", - "0x80", - "0xa0", - "0xf16", - "0x80", - "0x3e8", - "0x3e8", - "0x80" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 3538, - "op": "POP", - "gas": 2989761, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0xb4c", - "0x3e8", - "0x80", - "0xa0", - "0xf16", - "0x80", - "0x3e8" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" - ] - }, - { - "pc": 3539, - "op": "POP", - "gas": 2989759, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0xb4c", - "0x3e8", - "0x80", - "0xa0", - "0xf16", - "0x80" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" - ] - }, - { - "pc": 3540, - "op": "JUMP", - "gas": 2989757, - "gasCost": 8, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0xb4c", - "0x3e8", - "0x80", - "0xa0", - "0xf16" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" - ] - }, - { - "pc": 3862, - "op": "JUMPDEST", - "gas": 2989749, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0xb4c", - "0x3e8", - "0x80", - "0xa0" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" - ] - }, - { - "pc": 3863, - "op": "SWAP3", - "gas": 2989748, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0xb4c", - "0x3e8", - "0x80", - "0xa0" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" - ] - }, - { - "pc": 3864, - "op": "SWAP2", - "gas": 2989745, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0xa0", - "0x3e8", - "0x80", - "0xb4c" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" - ] - }, - { - "pc": 3865, - "op": "POP", - "gas": 2989742, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0xa0", - "0xb4c", - "0x80", - "0x3e8" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" - ] - }, - { - "pc": 3866, - "op": "POP", - "gas": 2989740, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0xa0", - "0xb4c", - "0x80" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" - ] - }, - { - "pc": 3867, - "op": "JUMP", - "gas": 2989738, - "gasCost": 8, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0xa0", - "0xb4c" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" - ] - }, - { - "pc": 2892, - "op": "JUMPDEST", - "gas": 2989730, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0xa0" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" - ] - }, - { - "pc": 2893, - "op": "PUSH1", - "gas": 2989729, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0xa0" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" - ] - }, - { - "pc": 2895, - "op": "MLOAD", - "gas": 2989726, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0xa0", - "0x40" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" - ] - }, - { - "pc": 2896, - "op": "DUP1", - "gas": 2989723, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0xa0", - "0x80" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" - ] - }, - { - "pc": 2897, - "op": "SWAP2", - "gas": 2989720, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0xa0", - "0x80", - "0x80" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" - ] - }, - { - "pc": 2898, - "op": "SUB", - "gas": 2989717, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0x80", - "0x80", - "0xa0" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" - ] - }, - { - "pc": 2899, - "op": "SWAP1", - "gas": 2989714, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0x80", - "0x20" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" - ] - }, - { - "pc": 2900, - "op": "LOG3", - "gas": 2989711, - "gasCost": 1756, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", - "0x20", - "0x80" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" - ] - }, - { - "pc": 2901, - "op": "PUSH2", - "gas": 2987955, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" - ] - }, - { - "pc": 2904, - "op": "DUP5", - "gas": 2987952, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0xb5f" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" - ] - }, - { - "pc": 2905, - "op": "DUP5", - "gas": 2987949, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0xb5f", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" - ] - }, - { - "pc": 2906, - "op": "DUP5", - "gas": 2987946, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0xb5f", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" - ] - }, - { - "pc": 2907, - "op": "PUSH2", - "gas": 2987943, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0xb5f", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" - ] - }, - { - "pc": 2910, - "op": "JUMP", - "gas": 2987940, - "gasCost": 8, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0xb5f", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0xb6a" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" - ] - }, - { - "pc": 2922, - "op": "JUMPDEST", - "gas": 2987932, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0xb5f", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" - ] - }, - { - "pc": 2923, - "op": "POP", - "gas": 2987931, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0xb5f", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" - ] - }, - { - "pc": 2924, - "op": "POP", - "gas": 2987929, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0xb5f", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" - ] - }, - { - "pc": 2925, - "op": "POP", - "gas": 2987927, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0xb5f", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" - ] - }, - { - "pc": 2926, - "op": "JUMP", - "gas": 2987925, - "gasCost": 8, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448", - "0xb5f" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" - ] - }, - { - "pc": 2911, - "op": "JUMPDEST", - "gas": 2987917, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" - ] - }, - { - "pc": 2912, - "op": "POP", - "gas": 2987916, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x7f228daac38a51833dbbf448" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" - ] - }, - { - "pc": 2913, - "op": "POP", - "gas": 2987914, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" - ] - }, - { - "pc": 2914, - "op": "POP", - "gas": 2987912, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x8ba1f109551bd432803012645ac136ddd64dba72" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" - ] - }, - { - "pc": 2915, - "op": "POP", - "gas": 2987910, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" - ] - }, - { - "pc": 2916, - "op": "JUMP", - "gas": 2987908, - "gasCost": 8, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x5f3" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" - ] - }, - { - "pc": 1523, - "op": "JUMPDEST", - "gas": 2987900, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" - ] - }, - { - "pc": 1524, - "op": "PUSH1", - "gas": 2987899, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" - ] - }, - { - "pc": 1526, - "op": "SWAP2", - "gas": 2987896, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x0", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x1" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" - ] - }, - { - "pc": 1527, - "op": "POP", - "gas": 2987893, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x1", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "0x0" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" - ] - }, - { - "pc": 1528, - "op": "POP", - "gas": 2987891, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x1", - "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" - ] - }, - { - "pc": 1529, - "op": "SWAP3", - "gas": 2987889, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x230", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x1" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" - ] - }, - { - "pc": 1530, - "op": "SWAP2", - "gas": 2987886, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x1", - "0x8ba1f109551bd432803012645ac136ddd64dba72", - "0x3e8", - "0x230" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" - ] - }, - { - "pc": 1531, - "op": "POP", - "gas": 2987883, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x1", - "0x230", - "0x3e8", - "0x8ba1f109551bd432803012645ac136ddd64dba72" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" - ] - }, - { - "pc": 1532, - "op": "POP", - "gas": 2987881, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x1", - "0x230", - "0x3e8" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" - ] - }, - { - "pc": 1533, - "op": "JUMP", - "gas": 2987879, - "gasCost": 8, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x1", - "0x230" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" - ] - }, - { - "pc": 560, - "op": "JUMPDEST", - "gas": 2987871, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x1" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" - ] - }, - { - "pc": 561, - "op": "PUSH1", - "gas": 2987870, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x1" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" - ] - }, - { - "pc": 563, - "op": "MLOAD", - "gas": 2987867, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x1", - "0x40" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" - ] - }, - { - "pc": 564, - "op": "PUSH2", - "gas": 2987864, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x1", - "0x80" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" - ] - }, - { - "pc": 567, - "op": "SWAP2", - "gas": 2987861, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x1", - "0x80", - "0x23d" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" - ] - }, - { - "pc": 568, - "op": "SWAP1", - "gas": 2987858, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x23d", - "0x80", - "0x1" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" - ] - }, - { - "pc": 569, - "op": "PUSH2", - "gas": 2987855, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x23d", - "0x1", - "0x80" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" - ] - }, - { - "pc": 572, - "op": "JUMP", - "gas": 2987852, - "gasCost": 8, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x23d", - "0x1", - "0x80", - "0xde4" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" - ] - }, - { - "pc": 3556, - "op": "JUMPDEST", - "gas": 2987844, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x23d", - "0x1", - "0x80" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" - ] - }, - { - "pc": 3557, - "op": "PUSH1", - "gas": 2987843, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x23d", - "0x1", - "0x80" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" - ] - }, - { - "pc": 3559, - "op": "PUSH1", - "gas": 2987840, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x23d", - "0x1", - "0x80", - "0x0" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" - ] - }, - { - "pc": 3561, - "op": "DUP3", - "gas": 2987837, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x23d", - "0x1", - "0x80", - "0x0", - "0x20" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" - ] - }, - { - "pc": 3562, - "op": "ADD", - "gas": 2987834, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x23d", - "0x1", - "0x80", - "0x0", - "0x20", - "0x80" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" - ] - }, - { - "pc": 3563, - "op": "SWAP1", - "gas": 2987831, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x23d", - "0x1", - "0x80", - "0x0", - "0xa0" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" - ] - }, - { - "pc": 3564, - "op": "POP", - "gas": 2987828, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x23d", - "0x1", - "0x80", - "0xa0", - "0x0" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" - ] - }, - { - "pc": 3565, - "op": "PUSH2", - "gas": 2987826, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x23d", - "0x1", - "0x80", - "0xa0" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" - ] - }, - { - "pc": 3568, - "op": "PUSH1", - "gas": 2987823, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x23d", - "0x1", - "0x80", - "0xa0", - "0xdf9" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" - ] - }, - { - "pc": 3570, - "op": "DUP4", - "gas": 2987820, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x23d", - "0x1", - "0x80", - "0xa0", - "0xdf9", - "0x0" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" - ] - }, - { - "pc": 3571, - "op": "ADD", - "gas": 2987817, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x23d", - "0x1", - "0x80", - "0xa0", - "0xdf9", - "0x0", - "0x80" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" - ] - }, - { - "pc": 3572, - "op": "DUP5", - "gas": 2987814, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x23d", - "0x1", - "0x80", - "0xa0", - "0xdf9", - "0x80" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" - ] - }, - { - "pc": 3573, - "op": "PUSH2", - "gas": 2987811, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x23d", - "0x1", - "0x80", - "0xa0", - "0xdf9", - "0x80", - "0x1" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" - ] - }, - { - "pc": 3576, - "op": "JUMP", - "gas": 2987808, - "gasCost": 8, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x23d", - "0x1", - "0x80", - "0xa0", - "0xdf9", - "0x80", - "0x1", - "0xc89" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" - ] - }, - { - "pc": 3209, - "op": "JUMPDEST", - "gas": 2987800, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x23d", - "0x1", - "0x80", - "0xa0", - "0xdf9", - "0x80", - "0x1" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" - ] - }, - { - "pc": 3210, - "op": "PUSH2", - "gas": 2987799, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x23d", - "0x1", - "0x80", - "0xa0", - "0xdf9", - "0x80", - "0x1" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" - ] - }, - { - "pc": 3213, - "op": "DUP2", - "gas": 2987796, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x23d", - "0x1", - "0x80", - "0xa0", - "0xdf9", - "0x80", - "0x1", - "0xc92" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" - ] - }, - { - "pc": 3214, - "op": "PUSH2", - "gas": 2987793, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x23d", - "0x1", - "0x80", - "0xa0", - "0xdf9", - "0x80", - "0x1", - "0xc92", - "0x1" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" - ] - }, - { - "pc": 3217, - "op": "JUMP", - "gas": 2987790, - "gasCost": 8, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x23d", - "0x1", - "0x80", - "0xa0", - "0xdf9", - "0x80", - "0x1", - "0xc92", - "0x1", - "0xfbb" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" - ] - }, - { - "pc": 4027, - "op": "JUMPDEST", - "gas": 2987782, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x23d", - "0x1", - "0x80", - "0xa0", - "0xdf9", - "0x80", - "0x1", - "0xc92", - "0x1" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" - ] - }, - { - "pc": 4028, - "op": "PUSH1", - "gas": 2987781, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x23d", - "0x1", - "0x80", - "0xa0", - "0xdf9", - "0x80", - "0x1", - "0xc92", - "0x1" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" - ] - }, - { - "pc": 4030, - "op": "DUP2", - "gas": 2987778, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x23d", - "0x1", - "0x80", - "0xa0", - "0xdf9", - "0x80", - "0x1", - "0xc92", - "0x1", - "0x0" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" - ] - }, - { - "pc": 4031, - "op": "ISZERO", - "gas": 2987775, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x23d", - "0x1", - "0x80", - "0xa0", - "0xdf9", - "0x80", - "0x1", - "0xc92", - "0x1", - "0x0", - "0x1" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" - ] - }, - { - "pc": 4032, - "op": "ISZERO", - "gas": 2987772, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x23d", - "0x1", - "0x80", - "0xa0", - "0xdf9", - "0x80", - "0x1", - "0xc92", - "0x1", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" - ] - }, - { - "pc": 4033, - "op": "SWAP1", - "gas": 2987769, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x23d", - "0x1", - "0x80", - "0xa0", - "0xdf9", - "0x80", - "0x1", - "0xc92", - "0x1", - "0x0", - "0x1" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" - ] - }, - { - "pc": 4034, - "op": "POP", - "gas": 2987766, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x23d", - "0x1", - "0x80", - "0xa0", - "0xdf9", - "0x80", - "0x1", - "0xc92", - "0x1", - "0x1", - "0x0" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" - ] - }, - { - "pc": 4035, - "op": "SWAP2", - "gas": 2987764, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x23d", - "0x1", - "0x80", - "0xa0", - "0xdf9", - "0x80", - "0x1", - "0xc92", - "0x1", - "0x1" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" - ] - }, - { - "pc": 4036, - "op": "SWAP1", - "gas": 2987761, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x23d", - "0x1", - "0x80", - "0xa0", - "0xdf9", - "0x80", - "0x1", - "0x1", - "0x1", - "0xc92" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" - ] - }, - { - "pc": 4037, - "op": "POP", - "gas": 2987758, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x23d", - "0x1", - "0x80", - "0xa0", - "0xdf9", - "0x80", - "0x1", - "0x1", - "0xc92", - "0x1" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" - ] - }, - { - "pc": 4038, - "op": "JUMP", - "gas": 2987756, - "gasCost": 8, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x23d", - "0x1", - "0x80", - "0xa0", - "0xdf9", - "0x80", - "0x1", - "0x1", - "0xc92" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" - ] - }, - { - "pc": 3218, - "op": "JUMPDEST", - "gas": 2987748, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x23d", - "0x1", - "0x80", - "0xa0", - "0xdf9", - "0x80", - "0x1", - "0x1" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" - ] - }, - { - "pc": 3219, - "op": "DUP3", - "gas": 2987747, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x23d", - "0x1", - "0x80", - "0xa0", - "0xdf9", - "0x80", - "0x1", - "0x1" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" - ] - }, - { - "pc": 3220, - "op": "MSTORE", - "gas": 2987744, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x23d", - "0x1", - "0x80", - "0xa0", - "0xdf9", - "0x80", - "0x1", - "0x1", - "0x80" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000003e8" - ] - }, - { - "pc": 3221, - "op": "POP", - "gas": 2987741, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x23d", - "0x1", - "0x80", - "0xa0", - "0xdf9", - "0x80", - "0x1" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ] - }, - { - "pc": 3222, - "op": "POP", - "gas": 2987739, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x23d", - "0x1", - "0x80", - "0xa0", - "0xdf9", - "0x80" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ] - }, - { - "pc": 3223, - "op": "JUMP", - "gas": 2987737, - "gasCost": 8, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x23d", - "0x1", - "0x80", - "0xa0", - "0xdf9" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ] - }, - { - "pc": 3577, - "op": "JUMPDEST", - "gas": 2987729, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x23d", - "0x1", - "0x80", - "0xa0" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ] - }, - { - "pc": 3578, - "op": "SWAP3", - "gas": 2987728, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x23d", - "0x1", - "0x80", - "0xa0" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ] - }, - { - "pc": 3579, - "op": "SWAP2", - "gas": 2987725, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0xa0", - "0x1", - "0x80", - "0x23d" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ] - }, - { - "pc": 3580, - "op": "POP", - "gas": 2987722, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0xa0", - "0x23d", - "0x80", - "0x1" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ] - }, - { - "pc": 3581, - "op": "POP", - "gas": 2987720, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0xa0", - "0x23d", - "0x80" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ] - }, - { - "pc": 3582, - "op": "JUMP", - "gas": 2987718, - "gasCost": 8, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0xa0", - "0x23d" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ] - }, - { - "pc": 573, - "op": "JUMPDEST", - "gas": 2987710, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0xa0" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ] - }, - { - "pc": 574, - "op": "PUSH1", - "gas": 2987709, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0xa0" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ] - }, - { - "pc": 576, - "op": "MLOAD", - "gas": 2987706, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0xa0", - "0x40" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ] - }, - { - "pc": 577, - "op": "DUP1", - "gas": 2987703, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0xa0", - "0x80" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ] - }, - { - "pc": 578, - "op": "SWAP2", - "gas": 2987700, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0xa0", - "0x80", - "0x80" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ] - }, - { - "pc": 579, - "op": "SUB", - "gas": 2987697, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x80", - "0x80", - "0xa0" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ] - }, - { - "pc": 580, - "op": "SWAP1", - "gas": 2987694, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x80", - "0x20" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ] - }, - { - "pc": 581, - "op": "RETURN", - "gas": 2987691, - "gasCost": 0, - "depth": 1, - "stack": [ - "0xa9059cbb", - "0x20", - "0x80" - ], - "memory": [ - "0000000000000000000000008ba1f109551bd432803012645ac136ddd64dba72", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/trie/zkproof/orderer.go b/trie/zkproof/orderer.go index 7137ec99b1..27c985230f 100644 --- a/trie/zkproof/orderer.go +++ b/trie/zkproof/orderer.go @@ -14,7 +14,9 @@ type opIterator interface { } type opOrderer interface { + readonly(bool) absorb(*types.AccountWrapper) + absorbStorage(*types.AccountWrapper, *types.StorageWrapper) end_absorb() opIterator } @@ -33,13 +35,33 @@ func (ops *iterateOp) next() *types.AccountWrapper { } type simpleOrderer struct { - savedOp []*types.AccountWrapper + readOnly int + savedOp []*types.AccountWrapper +} + +func (od *simpleOrderer) SavedOp() []*types.AccountWrapper { return od.savedOp } + +func (od *simpleOrderer) readonly(mode bool) { + if mode { + od.readOnly += 1 + } else if od.readOnly == 0 { + panic("unexpected readonly mode stack pop") + } else { + od.readOnly -= 1 + } } func (od *simpleOrderer) absorb(st *types.AccountWrapper) { + if od.readOnly > 0 { + return + } od.savedOp = append(od.savedOp, st) } +func (od *simpleOrderer) absorbStorage(st *types.AccountWrapper, _ *types.StorageWrapper) { + od.absorb(st) +} + func (od *simpleOrderer) end_absorb() opIterator { ret := iterateOp(od.savedOp) return &ret @@ -69,6 +91,15 @@ func (opss *multiOpIterator) next() *types.AccountWrapper { } type rwTblOrderer struct { + readOnly int + readOnlySnapshot struct { + accounts map[string]*types.AccountWrapper + storages map[string]map[string]*types.StorageWrapper + } + initedData map[common.Address]*types.AccountWrapper + + // help to track all accounts being touched, and provide the + // completed account status for storage updating traced map[string]*types.AccountWrapper opAccNonce map[string]*types.AccountWrapper @@ -77,30 +108,36 @@ type rwTblOrderer struct { opStorage map[string]map[string]*types.StorageWrapper } -func newRWTblOrderer(inited map[common.Address]*types.StateAccount) *rwTblOrderer { +func NewSimpleOrderer() *simpleOrderer { return &simpleOrderer{} } - traced := make(map[string]*types.AccountWrapper) +func NewRWTblOrderer(inited map[common.Address]*types.StateAccount) *rwTblOrderer { + initedAcc := make(map[common.Address]*types.AccountWrapper) for addr, data := range inited { if data == nil { - continue + initedAcc[addr] = &types.AccountWrapper{ + Address: addr, + Balance: (*hexutil.Big)(big.NewInt(0)), + } + } else { + bl := data.Balance + if bl == nil { + bl = big.NewInt(0) + } + + initedAcc[addr] = &types.AccountWrapper{ + Address: addr, + Nonce: data.Nonce, + Balance: (*hexutil.Big)(bl), + CodeHash: common.BytesToHash(data.CodeHash), + } } - bl := data.Balance - if bl == nil { - bl = big.NewInt(0) - } - - traced[addr.String()] = &types.AccountWrapper{ - Address: addr, - Nonce: data.Nonce, - Balance: (*hexutil.Big)(bl), - CodeHash: common.BytesToHash(data.CodeHash), - } } return &rwTblOrderer{ - traced: traced, + initedData: initedAcc, + traced: make(map[string]*types.AccountWrapper), opAccNonce: make(map[string]*types.AccountWrapper), opAccBalance: make(map[string]*types.AccountWrapper), opAccCodeHash: make(map[string]*types.AccountWrapper), @@ -108,16 +145,101 @@ func newRWTblOrderer(inited map[common.Address]*types.StateAccount) *rwTblOrdere } } +func (od *rwTblOrderer) readonly(mode bool) { + if mode { + if od.readOnly == 0 { + od.readOnlySnapshot.accounts = make(map[string]*types.AccountWrapper) + od.readOnlySnapshot.storages = make(map[string]map[string]*types.StorageWrapper) + } + od.readOnly += 1 + } else if od.readOnly == 0 { + panic("unexpected readonly mode stack pop") + } else { + od.readOnly -= 1 + if od.readOnly == 0 { + for addrS, st := range od.readOnlySnapshot.accounts { + od.absorb(st) + if m, existed := od.readOnlySnapshot.storages[addrS]; existed { + for _, stg := range m { + st.Storage = stg + od.absorbStorage(st, nil) + } + } + } + } + } +} + +func (od *rwTblOrderer) absorbStorage(st *types.AccountWrapper, before *types.StorageWrapper) { + if st.Storage == nil { + panic("do not call absorbStorage ") + } + + od.absorb(st) + addrStr := st.Address.String() + + if stg := st.Storage; stg != nil { + m, existed := od.opStorage[addrStr] + if !existed { + m = make(map[string]*types.StorageWrapper) + od.opStorage[addrStr] = m + } + + // key must be unified into 32 bytes + keyBytes := hexutil.MustDecode(stg.Key) + keyStr := common.BytesToHash(keyBytes).String() + + // trace every "touched" status for readOnly + if od.readOnly > 0 { + m, existed := od.readOnlySnapshot.storages[addrStr] + if !existed { + m = make(map[string]*types.StorageWrapper) + od.readOnlySnapshot.storages[addrStr] = m + } + if _, hashTraced := m[keyStr]; !hashTraced { + if before != nil { + m[keyStr] = before + } else { + m[keyStr] = stg + } + + } + } + + m[keyStr] = stg + } + +} + func (od *rwTblOrderer) absorb(st *types.AccountWrapper) { + initedRef, existed := od.initedData[st.Address] + if !existed { + panic("encounter unprepared status") + } + addrStr := st.Address.String() - start, existed := od.traced[addrStr] - if !existed { - start = &types.AccountWrapper{ + // trace every "touched" status for readOnly + if od.readOnly > 0 { + snapShot, existed := od.traced[addrStr] + if !existed { + snapShot = initedRef + } + + if _, hasTraced := od.readOnlySnapshot.accounts[addrStr]; !hasTraced { + od.readOnlySnapshot.accounts[addrStr] = copyAccountState(snapShot) + } + } + + if isDeletedAccount(st) { + // for account delete, made a safer data for status + st = &types.AccountWrapper{ + Address: st.Address, Balance: (*hexutil.Big)(big.NewInt(0)), } } + od.traced[addrStr] = st // notice there would be at least one entry for all 3 fields when accessing an address @@ -128,8 +250,8 @@ func (od *rwTblOrderer) absorb(st *types.AccountWrapper) { if traced, existed := od.opAccNonce[addrStr]; !existed { traced = copyAccountState(st) - traced.Balance = start.Balance - traced.CodeHash = start.CodeHash + traced.Balance = initedRef.Balance + traced.CodeHash = initedRef.CodeHash traced.Storage = nil od.opAccNonce[addrStr] = traced } else { @@ -138,7 +260,7 @@ func (od *rwTblOrderer) absorb(st *types.AccountWrapper) { if traced, existed := od.opAccBalance[addrStr]; !existed { traced = copyAccountState(st) - traced.CodeHash = start.CodeHash + traced.CodeHash = initedRef.CodeHash traced.Storage = nil od.opAccBalance[addrStr] = traced } else { @@ -156,17 +278,6 @@ func (od *rwTblOrderer) absorb(st *types.AccountWrapper) { traced.CodeHash = st.CodeHash } - if stg := st.Storage; stg != nil { - m, existed := od.opStorage[addrStr] - if !existed { - m = make(map[string]*types.StorageWrapper) - od.opStorage[addrStr] = m - } - - // key must be unified into 32 bytes - keyBytes := hexutil.MustDecode(stg.Key) - m[common.BytesToHash(keyBytes).String()] = stg - } } func (od *rwTblOrderer) end_absorb() opIterator { @@ -184,6 +295,7 @@ func (od *rwTblOrderer) end_absorb() opIterator { var iterStorage []*types.AccountWrapper for _, addrStr := range sortedAddrs { + if v, existed := od.opAccNonce[addrStr]; existed { iterNonce = append(iterNonce, v) } diff --git a/trie/zkproof/staticcall_trace.json b/trie/zkproof/staticcall_trace.json deleted file mode 100644 index bbcdb133b7..0000000000 --- a/trie/zkproof/staticcall_trace.json +++ /dev/null @@ -1,8637 +0,0 @@ -{ - "blockTrace": { - "number": "0xc", - "hash": "0x422529e5c58d16dc57ed9e9aa99a933b2ab7abadd80b5e2e7f9eb08b14ef201d", - "gasLimit": 6801154, - "difficulty": "0x2", - "baseFee": "0xd59419d", - "coinbase": { - "address": "0x0000000000000000000000000000000000000000", - "nonce": 0, - "balance": "0x0", - "codeHash": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - "time": 1656148801, - "transactions": [ - { - "type": 2, - "nonce": 12, - "gas": 158877, - "gasPrice": "0x10e4f70a", - "from": "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "to": null, - "chainId": "0xcf55", - "value": "0x0", - "data": "0x608060405234801561001057600080fd5b506100596040518060400160405280600481526020017f746573740000000000000000000000000000000000000000000000000000000081525061005e60201b6100091760201c565b6101e1565b6100fa81604051602401610072919061015f565b6040516020818303038152906040527f41304fac000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506100fd60201b60201c565b50565b60008151905060006a636f6e736f6c652e6c6f679050602083016000808483855afa5050505050565b600061013182610181565b61013b818561018c565b935061014b81856020860161019d565b610154816101d0565b840191505092915050565b600060208201905081810360008301526101798184610126565b905092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156101bb5780820151818401526020810190506101a0565b838111156101ca576000848401525b50505050565b6000601f19601f8301169050919050565b6101bc806101f06000396000f3fe6080604052600080fd5b61009f8160405160240161001d9190610104565b6040516020818303038152906040527f41304fac000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506100a2565b50565b60008151905060006a636f6e736f6c652e6c6f679050602083016000808483855afa5050505050565b60006100d682610126565b6100e08185610131565b93506100f0818560208601610142565b6100f981610175565b840191505092915050565b6000602082019050818103600083015261011e81846100cb565b905092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610160578082015181840152602081019050610145565b8381111561016f576000848401525b50505050565b6000601f19601f830116905091905056fea2646970667358221220325eab903412c8473722231b3bc907d0df8e3cb8feba060b5da2f1776cc5b11264736f6c63430008040033", - "isCreate": true, - "v": "0x1", - "r": "0xca609301e5f84af64d9fec92eb38ba44925ce03276fc20716b0a7856382f38da", - "s": "0x615bfb096ad62c5cc9ce9647d0d42f3f82d8338ea8cdef969121209bc3afdb77" - } - ] - }, - "storageTrace": { - "rootBefore": "0x06e650d34cdf7bfcdb3339e5485a4d2bfca1bece693907d6fbf47cc8b9ed8c0f", - "rootAfter": "0x0219ac7602cae63fdc5b277e48183da3e85dd71eae208bcc3cbb61429f829b40", - "proofs": { - "0x0000000000000000000000000000000000000000": [ - "0x00979a62c8642ce57875366cc354a5e73eb9ad8abdbc51044574b4496f9758190ce04f412673d804e511e6f2758ab1d1a9ebd0a15d296d41cdbb8369cb6da12103", - "0x01e232499c4754368052075d13fb84b18537b94a2da166170e7bd94bdc879097090404000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000000cc0a77f6e063b4b62eb7d9ed6f427cf687d8d0071d751850cfe5d136bc60d3ab03000ecf278f3c3309f2a3a091b4d20b5e01f2b4e8f5b2a44bd4e2e67aa9a3d500", - "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" - ], - "0x000000000000000000636F6e736F6c652e6c6f67": [ - "0x00979a62c8642ce57875366cc354a5e73eb9ad8abdbc51044574b4496f9758190ce04f412673d804e511e6f2758ab1d1a9ebd0a15d296d41cdbb8369cb6da12103", - "0x008faeda5eccb55af8e92974e2b7abd3d0822e9f756a1b4bc2ce7d5704dfb4292476d603087affd3922662b5b38a1940e24a1c0bd28923f829c1f71031727ec92c", - "0x002f719a7d94e0142e3e0ccb05942a65398e36ee904d8455b862801431ee19601d9c5d6da70845a21af9f2914712752493a441ad0ed631bd7787a4c0698f11881c", - "0x00b3aa11ff053e190ab62761090c4e7d5d582b7923685f599f3eb11923f99dba090000000000000000000000000000000000000000000000000000000000000000", - "0x000000000000000000000000000000000000000000000000000000000000000000b989e3bc0a4d1a58e4072c236d9b06c946d33859afee03e71f35aaca6f822e10", - "0x02", - "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" - ], - "0x4cb1aB63aF5D8931Ce09673EbD8ae2ce16fD6571": [ - "0x00979a62c8642ce57875366cc354a5e73eb9ad8abdbc51044574b4496f9758190ce04f412673d804e511e6f2758ab1d1a9ebd0a15d296d41cdbb8369cb6da12103", - "0x008faeda5eccb55af8e92974e2b7abd3d0822e9f756a1b4bc2ce7d5704dfb4292476d603087affd3922662b5b38a1940e24a1c0bd28923f829c1f71031727ec92c", - "0x002f719a7d94e0142e3e0ccb05942a65398e36ee904d8455b862801431ee19601d9c5d6da70845a21af9f2914712752493a441ad0ed631bd7787a4c0698f11881c", - "0x00b3aa11ff053e190ab62761090c4e7d5d582b7923685f599f3eb11923f99dba090000000000000000000000000000000000000000000000000000000000000000", - "0x000000000000000000000000000000000000000000000000000000000000000000b989e3bc0a4d1a58e4072c236d9b06c946d33859afee03e71f35aaca6f822e10", - "0x0078c7b59d789c294f21339f0a872b81a418d6b24273fe959dc00126520917970debcb163403c57b208c34b25b126e89ef6c8ecfb92c4c144d432dcbfcc2c6dc11", - "0x0000000000000000000000000000000000000000000000000000000000000000005dba64837161c2781c69bfaf0d8bb732665627d13ca2e2af2bd8017409a4cd0f", - "0x0043301025aa81dd484e74342913be5ad57ee0612b87faf2aa7ad38e1b5f674a10a72c67edca1db779b38140aaee9baf382c96315f0884909da4a4a7480f3ab82d", - "0x017581e431a68d0fa641e14a7d29a6c2b150db6da1d13f59dee6f7f492a0bebd2904040000000000000000000000000000000000000000000000000000000000000000000c0056bc75e2d630fffffffffffffffffffffffffffffffffffff99d9ee845c228c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470000000000000000000000000000000000000000000000000000000000000000000", - "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" - ], - "0xcE7A6cF7fB61158b6c2EbF53C64f7d7985eEBACA": [ - "0x00979a62c8642ce57875366cc354a5e73eb9ad8abdbc51044574b4496f9758190ce04f412673d804e511e6f2758ab1d1a9ebd0a15d296d41cdbb8369cb6da12103", - "0x008faeda5eccb55af8e92974e2b7abd3d0822e9f756a1b4bc2ce7d5704dfb4292476d603087affd3922662b5b38a1940e24a1c0bd28923f829c1f71031727ec92c", - "0x01fb6c28252d0ee14db1cdabda01391300ac75dcfdcda6ba1880e509aed4bc1225040400000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000009d2fd3a7cb9d5547a21c851248d703921e6348bfbdf4c0130695a3263f916ef247baa79042915dccda832b71ef58a31687e0a0af51b804c98f7aa36afa5fdb400", - "0x5448495320495320534f4d45204d4147494320425954455320464f5220534d54206d3172525867503278704449" - ] - } - }, - "executionResults": [ - { - "gas": 158877, - "failed": false, - "returnValue": "6080604052600080fd5b61009f8160405160240161001d9190610104565b6040516020818303038152906040527f41304fac000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506100a2565b50565b60008151905060006a636f6e736f6c652e6c6f679050602083016000808483855afa5050505050565b60006100d682610126565b6100e08185610131565b93506100f0818560208601610142565b6100f981610175565b840191505092915050565b6000602082019050818103600083015261011e81846100cb565b905092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610160578082015181840152602081019050610145565b8381111561016f576000848401525b50505050565b6000601f19601f830116905091905056fea2646970667358221220325eab903412c8473722231b3bc907d0df8e3cb8feba060b5da2f1776cc5b11264736f6c63430008040033", - "from": { - "address": "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "nonce": 12, - "balance": "0x56bc75e2d630fffffffffffffffffffffffffffffffffffff99d9ee845c228", - "codeHash": "0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470" - }, - "accountCreated": { - "address": "0xce7a6cf7fb61158b6c2ebf53c64f7d7985eebaca", - "nonce": 1, - "balance": "0x0", - "codeHash": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - "accountAfter": [ - { - "address": "0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571", - "nonce": 13, - "balance": "0x56bc75e2d630fffffffffffffffffffffffffffffffffffff97d428da048df", - "codeHash": "0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470" - }, - { - "address": "0xce7a6cf7fb61158b6c2ebf53c64f7d7985eebaca", - "nonce": 1, - "balance": "0x0", - "codeHash": "0xc6f52282b77f5cd26cc7869f246a73aef152a7698e8b4d63e528d5617006f094" - } - ], - "byteCode": "0x608060405234801561001057600080fd5b506100596040518060400160405280600481526020017f746573740000000000000000000000000000000000000000000000000000000081525061005e60201b6100091760201c565b6101e1565b6100fa81604051602401610072919061015f565b6040516020818303038152906040527f41304fac000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506100fd60201b60201c565b50565b60008151905060006a636f6e736f6c652e6c6f679050602083016000808483855afa5050505050565b600061013182610181565b61013b818561018c565b935061014b81856020860161019d565b610154816101d0565b840191505092915050565b600060208201905081810360008301526101798184610126565b905092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156101bb5780820151818401526020810190506101a0565b838111156101ca576000848401525b50505050565b6000601f19601f8301169050919050565b6101bc806101f06000396000f3fe6080604052600080fd5b61009f8160405160240161001d9190610104565b6040516020818303038152906040527f41304fac000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506100a2565b50565b60008151905060006a636f6e736f6c652e6c6f679050602083016000808483855afa5050505050565b60006100d682610126565b6100e08185610131565b93506100f0818560208601610142565b6100f981610175565b840191505092915050565b6000602082019050818103600083015261011e81846100cb565b905092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610160578082015181840152602081019050610145565b8381111561016f576000848401525b50505050565b6000601f19601f830116905091905056fea2646970667358221220325eab903412c8473722231b3bc907d0df8e3cb8feba060b5da2f1776cc5b11264736f6c63430008040033", - "structLogs": [ - { - "pc": 0, - "op": "PUSH1", - "gas": 92361, - "gasCost": 3, - "depth": 1 - }, - { - "pc": 2, - "op": "PUSH1", - "gas": 92358, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x80" - ] - }, - { - "pc": 4, - "op": "MSTORE", - "gas": 92355, - "gasCost": 12, - "depth": 1, - "stack": [ - "0x80", - "0x40" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 5, - "op": "CALLVALUE", - "gas": 92343, - "gasCost": 2, - "depth": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 6, - "op": "DUP1", - "gas": 92341, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 7, - "op": "ISZERO", - "gas": 92338, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 8, - "op": "PUSH2", - "gas": 92335, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x0", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 11, - "op": "JUMPI", - "gas": 92332, - "gasCost": 10, - "depth": 1, - "stack": [ - "0x0", - "0x1", - "0x10" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 16, - "op": "JUMPDEST", - "gas": 92322, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 17, - "op": "POP", - "gas": 92321, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 18, - "op": "PUSH2", - "gas": 92319, - "gasCost": 3, - "depth": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 21, - "op": "PUSH1", - "gas": 92316, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 23, - "op": "MLOAD", - "gas": 92313, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x40" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 24, - "op": "DUP1", - "gas": 92310, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 25, - "op": "PUSH1", - "gas": 92307, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 27, - "op": "ADD", - "gas": 92304, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0x80", - "0x40" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 28, - "op": "PUSH1", - "gas": 92301, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xc0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 30, - "op": "MSTORE", - "gas": 92298, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xc0", - "0x40" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ] - }, - { - "pc": 31, - "op": "DUP1", - "gas": 92295, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0" - ] - }, - { - "pc": 32, - "op": "PUSH1", - "gas": 92292, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0" - ] - }, - { - "pc": 34, - "op": "DUP2", - "gas": 92289, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0x80", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0" - ] - }, - { - "pc": 35, - "op": "MSTORE", - "gas": 92286, - "gasCost": 9, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0x80", - "0x4", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 36, - "op": "PUSH1", - "gas": 92277, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004" - ] - }, - { - "pc": 38, - "op": "ADD", - "gas": 92274, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0x80", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004" - ] - }, - { - "pc": 39, - "op": "PUSH32", - "gas": 92271, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xa0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004" - ] - }, - { - "pc": 72, - "op": "DUP2", - "gas": 92268, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xa0", - "0x7465737400000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004" - ] - }, - { - "pc": 73, - "op": "MSTORE", - "gas": 92265, - "gasCost": 6, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xa0", - "0x7465737400000000000000000000000000000000000000000000000000000000", - "0xa0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 74, - "op": "POP", - "gas": 92259, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xa0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 75, - "op": "PUSH2", - "gas": 92257, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 78, - "op": "PUSH1", - "gas": 92254, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0x5e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 80, - "op": "SHL", - "gas": 92251, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0x5e", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 81, - "op": "PUSH2", - "gas": 92248, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0x5e00000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 84, - "op": "OR", - "gas": 92245, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0x5e00000000", - "0x9" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 85, - "op": "PUSH1", - "gas": 92242, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0x5e00000009" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 87, - "op": "SHR", - "gas": 92239, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0x5e00000009", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 88, - "op": "JUMP", - "gas": 92236, - "gasCost": 8, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0x5e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 94, - "op": "JUMPDEST", - "gas": 92228, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x59", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 95, - "op": "PUSH2", - "gas": 92227, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 98, - "op": "DUP2", - "gas": 92224, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 99, - "op": "PUSH1", - "gas": 92221, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 101, - "op": "MLOAD", - "gas": 92218, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x80", - "0x40" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 102, - "op": "PUSH1", - "gas": 92215, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x80", - "0xc0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 104, - "op": "ADD", - "gas": 92212, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x80", - "0xc0", - "0x24" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 105, - "op": "PUSH2", - "gas": 92209, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x80", - "0xe4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 108, - "op": "SWAP2", - "gas": 92206, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x80", - "0xe4", - "0x72" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 109, - "op": "SWAP1", - "gas": 92203, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0xe4", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 110, - "op": "PUSH2", - "gas": 92200, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 113, - "op": "JUMP", - "gas": 92197, - "gasCost": 8, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x15f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 351, - "op": "JUMPDEST", - "gas": 92189, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 352, - "op": "PUSH1", - "gas": 92188, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 354, - "op": "PUSH1", - "gas": 92185, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 356, - "op": "DUP3", - "gas": 92182, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x0", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 357, - "op": "ADD", - "gas": 92179, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x0", - "0x20", - "0xe4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 358, - "op": "SWAP1", - "gas": 92176, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x0", - "0x104" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 359, - "op": "POP", - "gas": 92173, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 360, - "op": "DUP2", - "gas": 92171, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 361, - "op": "DUP2", - "gas": 92168, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0xe4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 362, - "op": "SUB", - "gas": 92165, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0xe4", - "0x104" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 363, - "op": "PUSH1", - "gas": 92162, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 365, - "op": "DUP4", - "gas": 92159, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x20", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 366, - "op": "ADD", - "gas": 92156, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x20", - "0x0", - "0xe4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 367, - "op": "MSTORE", - "gas": 92153, - "gasCost": 12, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x20", - "0xe4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 368, - "op": "PUSH2", - "gas": 92141, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 371, - "op": "DUP2", - "gas": 92138, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x179" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 372, - "op": "DUP5", - "gas": 92135, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x179", - "0x104" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 373, - "op": "PUSH2", - "gas": 92132, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x179", - "0x104", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 376, - "op": "JUMP", - "gas": 92129, - "gasCost": 8, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x179", - "0x104", - "0x80", - "0x126" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 294, - "op": "JUMPDEST", - "gas": 92121, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x179", - "0x104", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 295, - "op": "PUSH1", - "gas": 92120, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x179", - "0x104", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 297, - "op": "PUSH2", - "gas": 92117, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x179", - "0x104", - "0x80", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 300, - "op": "DUP3", - "gas": 92114, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x179", - "0x104", - "0x80", - "0x0", - "0x131" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 301, - "op": "PUSH2", - "gas": 92111, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x179", - "0x104", - "0x80", - "0x0", - "0x131", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 304, - "op": "JUMP", - "gas": 92108, - "gasCost": 8, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x179", - "0x104", - "0x80", - "0x0", - "0x131", - "0x80", - "0x181" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 385, - "op": "JUMPDEST", - "gas": 92100, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x179", - "0x104", - "0x80", - "0x0", - "0x131", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 386, - "op": "PUSH1", - "gas": 92099, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x179", - "0x104", - "0x80", - "0x0", - "0x131", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 388, - "op": "DUP2", - "gas": 92096, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x179", - "0x104", - "0x80", - "0x0", - "0x131", - "0x80", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 389, - "op": "MLOAD", - "gas": 92093, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x179", - "0x104", - "0x80", - "0x0", - "0x131", - "0x80", - "0x0", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 390, - "op": "SWAP1", - "gas": 92090, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x179", - "0x104", - "0x80", - "0x0", - "0x131", - "0x80", - "0x0", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 391, - "op": "POP", - "gas": 92087, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x179", - "0x104", - "0x80", - "0x0", - "0x131", - "0x80", - "0x4", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 392, - "op": "SWAP2", - "gas": 92085, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x179", - "0x104", - "0x80", - "0x0", - "0x131", - "0x80", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 393, - "op": "SWAP1", - "gas": 92082, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x179", - "0x104", - "0x80", - "0x0", - "0x4", - "0x80", - "0x131" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 394, - "op": "POP", - "gas": 92079, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x179", - "0x104", - "0x80", - "0x0", - "0x4", - "0x131", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 395, - "op": "JUMP", - "gas": 92077, - "gasCost": 8, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x179", - "0x104", - "0x80", - "0x0", - "0x4", - "0x131" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 305, - "op": "JUMPDEST", - "gas": 92069, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x179", - "0x104", - "0x80", - "0x0", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 306, - "op": "PUSH2", - "gas": 92068, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x179", - "0x104", - "0x80", - "0x0", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 309, - "op": "DUP2", - "gas": 92065, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x179", - "0x104", - "0x80", - "0x0", - "0x4", - "0x13b" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 310, - "op": "DUP6", - "gas": 92062, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x179", - "0x104", - "0x80", - "0x0", - "0x4", - "0x13b", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 311, - "op": "PUSH2", - "gas": 92059, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x179", - "0x104", - "0x80", - "0x0", - "0x4", - "0x13b", - "0x4", - "0x104" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 314, - "op": "JUMP", - "gas": 92056, - "gasCost": 8, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x179", - "0x104", - "0x80", - "0x0", - "0x4", - "0x13b", - "0x4", - "0x104", - "0x18c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 396, - "op": "JUMPDEST", - "gas": 92048, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x179", - "0x104", - "0x80", - "0x0", - "0x4", - "0x13b", - "0x4", - "0x104" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 397, - "op": "PUSH1", - "gas": 92047, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x179", - "0x104", - "0x80", - "0x0", - "0x4", - "0x13b", - "0x4", - "0x104" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 399, - "op": "DUP3", - "gas": 92044, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x179", - "0x104", - "0x80", - "0x0", - "0x4", - "0x13b", - "0x4", - "0x104", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 400, - "op": "DUP3", - "gas": 92041, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x179", - "0x104", - "0x80", - "0x0", - "0x4", - "0x13b", - "0x4", - "0x104", - "0x0", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 401, - "op": "MSTORE", - "gas": 92038, - "gasCost": 6, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x179", - "0x104", - "0x80", - "0x0", - "0x4", - "0x13b", - "0x4", - "0x104", - "0x0", - "0x4", - "0x104" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 402, - "op": "PUSH1", - "gas": 92032, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x179", - "0x104", - "0x80", - "0x0", - "0x4", - "0x13b", - "0x4", - "0x104", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 404, - "op": "DUP3", - "gas": 92029, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x179", - "0x104", - "0x80", - "0x0", - "0x4", - "0x13b", - "0x4", - "0x104", - "0x0", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 405, - "op": "ADD", - "gas": 92026, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x179", - "0x104", - "0x80", - "0x0", - "0x4", - "0x13b", - "0x4", - "0x104", - "0x0", - "0x20", - "0x104" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 406, - "op": "SWAP1", - "gas": 92023, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x179", - "0x104", - "0x80", - "0x0", - "0x4", - "0x13b", - "0x4", - "0x104", - "0x0", - "0x124" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 407, - "op": "POP", - "gas": 92020, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x179", - "0x104", - "0x80", - "0x0", - "0x4", - "0x13b", - "0x4", - "0x104", - "0x124", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 408, - "op": "SWAP3", - "gas": 92018, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x179", - "0x104", - "0x80", - "0x0", - "0x4", - "0x13b", - "0x4", - "0x104", - "0x124" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 409, - "op": "SWAP2", - "gas": 92015, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x179", - "0x104", - "0x80", - "0x0", - "0x4", - "0x124", - "0x4", - "0x104", - "0x13b" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 410, - "op": "POP", - "gas": 92012, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x179", - "0x104", - "0x80", - "0x0", - "0x4", - "0x124", - "0x13b", - "0x104", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 411, - "op": "POP", - "gas": 92010, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x179", - "0x104", - "0x80", - "0x0", - "0x4", - "0x124", - "0x13b", - "0x104" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 412, - "op": "JUMP", - "gas": 92008, - "gasCost": 8, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x179", - "0x104", - "0x80", - "0x0", - "0x4", - "0x124", - "0x13b" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 315, - "op": "JUMPDEST", - "gas": 92000, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x179", - "0x104", - "0x80", - "0x0", - "0x4", - "0x124" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 316, - "op": "SWAP4", - "gas": 91999, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x179", - "0x104", - "0x80", - "0x0", - "0x4", - "0x124" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 317, - "op": "POP", - "gas": 91996, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x179", - "0x124", - "0x80", - "0x0", - "0x4", - "0x104" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 318, - "op": "PUSH2", - "gas": 91994, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x179", - "0x124", - "0x80", - "0x0", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 321, - "op": "DUP2", - "gas": 91991, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x179", - "0x124", - "0x80", - "0x0", - "0x4", - "0x14b" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 322, - "op": "DUP6", - "gas": 91988, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x179", - "0x124", - "0x80", - "0x0", - "0x4", - "0x14b", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 323, - "op": "PUSH1", - "gas": 91985, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x179", - "0x124", - "0x80", - "0x0", - "0x4", - "0x14b", - "0x4", - "0x124" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 325, - "op": "DUP7", - "gas": 91982, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x179", - "0x124", - "0x80", - "0x0", - "0x4", - "0x14b", - "0x4", - "0x124", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 326, - "op": "ADD", - "gas": 91979, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x179", - "0x124", - "0x80", - "0x0", - "0x4", - "0x14b", - "0x4", - "0x124", - "0x20", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 327, - "op": "PUSH2", - "gas": 91976, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x179", - "0x124", - "0x80", - "0x0", - "0x4", - "0x14b", - "0x4", - "0x124", - "0xa0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 330, - "op": "JUMP", - "gas": 91973, - "gasCost": 8, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x179", - "0x124", - "0x80", - "0x0", - "0x4", - "0x14b", - "0x4", - "0x124", - "0xa0", - "0x19d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 413, - "op": "JUMPDEST", - "gas": 91965, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x179", - "0x124", - "0x80", - "0x0", - "0x4", - "0x14b", - "0x4", - "0x124", - "0xa0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 414, - "op": "PUSH1", - "gas": 91964, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x179", - "0x124", - "0x80", - "0x0", - "0x4", - "0x14b", - "0x4", - "0x124", - "0xa0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 416, - "op": "JUMPDEST", - "gas": 91961, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x179", - "0x124", - "0x80", - "0x0", - "0x4", - "0x14b", - "0x4", - "0x124", - "0xa0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 417, - "op": "DUP4", - "gas": 91960, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x179", - "0x124", - "0x80", - "0x0", - "0x4", - "0x14b", - "0x4", - "0x124", - "0xa0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 418, - "op": "DUP2", - "gas": 91957, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x179", - "0x124", - "0x80", - "0x0", - "0x4", - "0x14b", - "0x4", - "0x124", - "0xa0", - "0x0", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 419, - "op": "LT", - "gas": 91954, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x179", - "0x124", - "0x80", - "0x0", - "0x4", - "0x14b", - "0x4", - "0x124", - "0xa0", - "0x0", - "0x4", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 420, - "op": "ISZERO", - "gas": 91951, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x179", - "0x124", - "0x80", - "0x0", - "0x4", - "0x14b", - "0x4", - "0x124", - "0xa0", - "0x0", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 421, - "op": "PUSH2", - "gas": 91948, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x179", - "0x124", - "0x80", - "0x0", - "0x4", - "0x14b", - "0x4", - "0x124", - "0xa0", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 424, - "op": "JUMPI", - "gas": 91945, - "gasCost": 10, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x179", - "0x124", - "0x80", - "0x0", - "0x4", - "0x14b", - "0x4", - "0x124", - "0xa0", - "0x0", - "0x0", - "0x1bb" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 425, - "op": "DUP1", - "gas": 91935, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x179", - "0x124", - "0x80", - "0x0", - "0x4", - "0x14b", - "0x4", - "0x124", - "0xa0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 426, - "op": "DUP3", - "gas": 91932, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x179", - "0x124", - "0x80", - "0x0", - "0x4", - "0x14b", - "0x4", - "0x124", - "0xa0", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 427, - "op": "ADD", - "gas": 91929, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x179", - "0x124", - "0x80", - "0x0", - "0x4", - "0x14b", - "0x4", - "0x124", - "0xa0", - "0x0", - "0x0", - "0xa0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 428, - "op": "MLOAD", - "gas": 91926, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x179", - "0x124", - "0x80", - "0x0", - "0x4", - "0x14b", - "0x4", - "0x124", - "0xa0", - "0x0", - "0xa0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 429, - "op": "DUP2", - "gas": 91923, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x179", - "0x124", - "0x80", - "0x0", - "0x4", - "0x14b", - "0x4", - "0x124", - "0xa0", - "0x0", - "0x7465737400000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 430, - "op": "DUP5", - "gas": 91920, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x179", - "0x124", - "0x80", - "0x0", - "0x4", - "0x14b", - "0x4", - "0x124", - "0xa0", - "0x0", - "0x7465737400000000000000000000000000000000000000000000000000000000", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 431, - "op": "ADD", - "gas": 91917, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x179", - "0x124", - "0x80", - "0x0", - "0x4", - "0x14b", - "0x4", - "0x124", - "0xa0", - "0x0", - "0x7465737400000000000000000000000000000000000000000000000000000000", - "0x0", - "0x124" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000400000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 432, - "op": "MSTORE", - "gas": 91914, - "gasCost": 6, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x179", - "0x124", - "0x80", - "0x0", - "0x4", - "0x14b", - "0x4", - "0x124", - "0xa0", - "0x0", - "0x7465737400000000000000000000000000000000000000000000000000000000", - "0x124" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 433, - "op": "PUSH1", - "gas": 91908, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x179", - "0x124", - "0x80", - "0x0", - "0x4", - "0x14b", - "0x4", - "0x124", - "0xa0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 435, - "op": "DUP2", - "gas": 91905, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x179", - "0x124", - "0x80", - "0x0", - "0x4", - "0x14b", - "0x4", - "0x124", - "0xa0", - "0x0", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 436, - "op": "ADD", - "gas": 91902, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x179", - "0x124", - "0x80", - "0x0", - "0x4", - "0x14b", - "0x4", - "0x124", - "0xa0", - "0x0", - "0x20", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 437, - "op": "SWAP1", - "gas": 91899, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x179", - "0x124", - "0x80", - "0x0", - "0x4", - "0x14b", - "0x4", - "0x124", - "0xa0", - "0x0", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 438, - "op": "POP", - "gas": 91896, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x179", - "0x124", - "0x80", - "0x0", - "0x4", - "0x14b", - "0x4", - "0x124", - "0xa0", - "0x20", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 439, - "op": "PUSH2", - "gas": 91894, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x179", - "0x124", - "0x80", - "0x0", - "0x4", - "0x14b", - "0x4", - "0x124", - "0xa0", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 442, - "op": "JUMP", - "gas": 91891, - "gasCost": 8, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x179", - "0x124", - "0x80", - "0x0", - "0x4", - "0x14b", - "0x4", - "0x124", - "0xa0", - "0x20", - "0x1a0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 416, - "op": "JUMPDEST", - "gas": 91883, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x179", - "0x124", - "0x80", - "0x0", - "0x4", - "0x14b", - "0x4", - "0x124", - "0xa0", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 417, - "op": "DUP4", - "gas": 91882, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x179", - "0x124", - "0x80", - "0x0", - "0x4", - "0x14b", - "0x4", - "0x124", - "0xa0", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 418, - "op": "DUP2", - "gas": 91879, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x179", - "0x124", - "0x80", - "0x0", - "0x4", - "0x14b", - "0x4", - "0x124", - "0xa0", - "0x20", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 419, - "op": "LT", - "gas": 91876, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x179", - "0x124", - "0x80", - "0x0", - "0x4", - "0x14b", - "0x4", - "0x124", - "0xa0", - "0x20", - "0x4", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 420, - "op": "ISZERO", - "gas": 91873, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x179", - "0x124", - "0x80", - "0x0", - "0x4", - "0x14b", - "0x4", - "0x124", - "0xa0", - "0x20", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 421, - "op": "PUSH2", - "gas": 91870, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x179", - "0x124", - "0x80", - "0x0", - "0x4", - "0x14b", - "0x4", - "0x124", - "0xa0", - "0x20", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 424, - "op": "JUMPI", - "gas": 91867, - "gasCost": 10, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x179", - "0x124", - "0x80", - "0x0", - "0x4", - "0x14b", - "0x4", - "0x124", - "0xa0", - "0x20", - "0x1", - "0x1bb" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 443, - "op": "JUMPDEST", - "gas": 91857, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x179", - "0x124", - "0x80", - "0x0", - "0x4", - "0x14b", - "0x4", - "0x124", - "0xa0", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 444, - "op": "DUP4", - "gas": 91856, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x179", - "0x124", - "0x80", - "0x0", - "0x4", - "0x14b", - "0x4", - "0x124", - "0xa0", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 445, - "op": "DUP2", - "gas": 91853, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x179", - "0x124", - "0x80", - "0x0", - "0x4", - "0x14b", - "0x4", - "0x124", - "0xa0", - "0x20", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 446, - "op": "GT", - "gas": 91850, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x179", - "0x124", - "0x80", - "0x0", - "0x4", - "0x14b", - "0x4", - "0x124", - "0xa0", - "0x20", - "0x4", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 447, - "op": "ISZERO", - "gas": 91847, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x179", - "0x124", - "0x80", - "0x0", - "0x4", - "0x14b", - "0x4", - "0x124", - "0xa0", - "0x20", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 448, - "op": "PUSH2", - "gas": 91844, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x179", - "0x124", - "0x80", - "0x0", - "0x4", - "0x14b", - "0x4", - "0x124", - "0xa0", - "0x20", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 451, - "op": "JUMPI", - "gas": 91841, - "gasCost": 10, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x179", - "0x124", - "0x80", - "0x0", - "0x4", - "0x14b", - "0x4", - "0x124", - "0xa0", - "0x20", - "0x0", - "0x1ca" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 452, - "op": "PUSH1", - "gas": 91831, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x179", - "0x124", - "0x80", - "0x0", - "0x4", - "0x14b", - "0x4", - "0x124", - "0xa0", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 454, - "op": "DUP5", - "gas": 91828, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x179", - "0x124", - "0x80", - "0x0", - "0x4", - "0x14b", - "0x4", - "0x124", - "0xa0", - "0x20", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 455, - "op": "DUP5", - "gas": 91825, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x179", - "0x124", - "0x80", - "0x0", - "0x4", - "0x14b", - "0x4", - "0x124", - "0xa0", - "0x20", - "0x0", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 456, - "op": "ADD", - "gas": 91822, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x179", - "0x124", - "0x80", - "0x0", - "0x4", - "0x14b", - "0x4", - "0x124", - "0xa0", - "0x20", - "0x0", - "0x4", - "0x124" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 457, - "op": "MSTORE", - "gas": 91819, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x179", - "0x124", - "0x80", - "0x0", - "0x4", - "0x14b", - "0x4", - "0x124", - "0xa0", - "0x20", - "0x0", - "0x128" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 458, - "op": "JUMPDEST", - "gas": 91816, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x179", - "0x124", - "0x80", - "0x0", - "0x4", - "0x14b", - "0x4", - "0x124", - "0xa0", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 459, - "op": "POP", - "gas": 91815, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x179", - "0x124", - "0x80", - "0x0", - "0x4", - "0x14b", - "0x4", - "0x124", - "0xa0", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 460, - "op": "POP", - "gas": 91813, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x179", - "0x124", - "0x80", - "0x0", - "0x4", - "0x14b", - "0x4", - "0x124", - "0xa0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 461, - "op": "POP", - "gas": 91811, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x179", - "0x124", - "0x80", - "0x0", - "0x4", - "0x14b", - "0x4", - "0x124" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 462, - "op": "POP", - "gas": 91809, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x179", - "0x124", - "0x80", - "0x0", - "0x4", - "0x14b", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 463, - "op": "JUMP", - "gas": 91807, - "gasCost": 8, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x179", - "0x124", - "0x80", - "0x0", - "0x4", - "0x14b" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 331, - "op": "JUMPDEST", - "gas": 91799, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x179", - "0x124", - "0x80", - "0x0", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 332, - "op": "PUSH2", - "gas": 91798, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x179", - "0x124", - "0x80", - "0x0", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 335, - "op": "DUP2", - "gas": 91795, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x179", - "0x124", - "0x80", - "0x0", - "0x4", - "0x154" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 336, - "op": "PUSH2", - "gas": 91792, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x179", - "0x124", - "0x80", - "0x0", - "0x4", - "0x154", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 339, - "op": "JUMP", - "gas": 91789, - "gasCost": 8, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x179", - "0x124", - "0x80", - "0x0", - "0x4", - "0x154", - "0x4", - "0x1d0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 464, - "op": "JUMPDEST", - "gas": 91781, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x179", - "0x124", - "0x80", - "0x0", - "0x4", - "0x154", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 465, - "op": "PUSH1", - "gas": 91780, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x179", - "0x124", - "0x80", - "0x0", - "0x4", - "0x154", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 467, - "op": "PUSH1", - "gas": 91777, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x179", - "0x124", - "0x80", - "0x0", - "0x4", - "0x154", - "0x4", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 469, - "op": "NOT", - "gas": 91774, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x179", - "0x124", - "0x80", - "0x0", - "0x4", - "0x154", - "0x4", - "0x0", - "0x1f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 470, - "op": "PUSH1", - "gas": 91771, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x179", - "0x124", - "0x80", - "0x0", - "0x4", - "0x154", - "0x4", - "0x0", - "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 472, - "op": "DUP4", - "gas": 91768, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x179", - "0x124", - "0x80", - "0x0", - "0x4", - "0x154", - "0x4", - "0x0", - "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", - "0x1f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 473, - "op": "ADD", - "gas": 91765, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x179", - "0x124", - "0x80", - "0x0", - "0x4", - "0x154", - "0x4", - "0x0", - "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", - "0x1f", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 474, - "op": "AND", - "gas": 91762, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x179", - "0x124", - "0x80", - "0x0", - "0x4", - "0x154", - "0x4", - "0x0", - "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", - "0x23" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 475, - "op": "SWAP1", - "gas": 91759, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x179", - "0x124", - "0x80", - "0x0", - "0x4", - "0x154", - "0x4", - "0x0", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 476, - "op": "POP", - "gas": 91756, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x179", - "0x124", - "0x80", - "0x0", - "0x4", - "0x154", - "0x4", - "0x20", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 477, - "op": "SWAP2", - "gas": 91754, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x179", - "0x124", - "0x80", - "0x0", - "0x4", - "0x154", - "0x4", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 478, - "op": "SWAP1", - "gas": 91751, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x179", - "0x124", - "0x80", - "0x0", - "0x4", - "0x20", - "0x4", - "0x154" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 479, - "op": "POP", - "gas": 91748, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x179", - "0x124", - "0x80", - "0x0", - "0x4", - "0x20", - "0x154", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 480, - "op": "JUMP", - "gas": 91746, - "gasCost": 8, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x179", - "0x124", - "0x80", - "0x0", - "0x4", - "0x20", - "0x154" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 340, - "op": "JUMPDEST", - "gas": 91738, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x179", - "0x124", - "0x80", - "0x0", - "0x4", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 341, - "op": "DUP5", - "gas": 91737, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x179", - "0x124", - "0x80", - "0x0", - "0x4", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 342, - "op": "ADD", - "gas": 91734, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x179", - "0x124", - "0x80", - "0x0", - "0x4", - "0x20", - "0x124" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 343, - "op": "SWAP2", - "gas": 91731, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x179", - "0x124", - "0x80", - "0x0", - "0x4", - "0x144" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 344, - "op": "POP", - "gas": 91728, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x179", - "0x124", - "0x80", - "0x144", - "0x4", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 345, - "op": "POP", - "gas": 91726, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x179", - "0x124", - "0x80", - "0x144", - "0x4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 346, - "op": "SWAP3", - "gas": 91724, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x179", - "0x124", - "0x80", - "0x144" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 347, - "op": "SWAP2", - "gas": 91721, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x144", - "0x124", - "0x80", - "0x179" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 348, - "op": "POP", - "gas": 91718, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x144", - "0x179", - "0x80", - "0x124" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 349, - "op": "POP", - "gas": 91716, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x144", - "0x179", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 350, - "op": "JUMP", - "gas": 91714, - "gasCost": 8, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x144", - "0x179" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 377, - "op": "JUMPDEST", - "gas": 91706, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x144" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 378, - "op": "SWAP1", - "gas": 91705, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x104", - "0x144" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 379, - "op": "POP", - "gas": 91702, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x144", - "0x104" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 380, - "op": "SWAP3", - "gas": 91700, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x72", - "0x80", - "0xe4", - "0x144" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 381, - "op": "SWAP2", - "gas": 91697, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x144", - "0x80", - "0xe4", - "0x72" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 382, - "op": "POP", - "gas": 91694, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x144", - "0x72", - "0xe4", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 383, - "op": "POP", - "gas": 91692, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x144", - "0x72", - "0xe4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 384, - "op": "JUMP", - "gas": 91690, - "gasCost": 8, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x144", - "0x72" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 114, - "op": "JUMPDEST", - "gas": 91682, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x144" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 115, - "op": "PUSH1", - "gas": 91681, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x144" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 117, - "op": "MLOAD", - "gas": 91678, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x144", - "0x40" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 118, - "op": "PUSH1", - "gas": 91675, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x144", - "0xc0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 120, - "op": "DUP2", - "gas": 91672, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x144", - "0xc0", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 121, - "op": "DUP4", - "gas": 91669, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x144", - "0xc0", - "0x20", - "0xc0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 122, - "op": "SUB", - "gas": 91666, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x144", - "0xc0", - "0x20", - "0xc0", - "0x144" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 123, - "op": "SUB", - "gas": 91663, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x144", - "0xc0", - "0x20", - "0x84" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 124, - "op": "DUP2", - "gas": 91660, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x144", - "0xc0", - "0x64" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 125, - "op": "MSTORE", - "gas": 91657, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x144", - "0xc0", - "0x64", - "0xc0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 126, - "op": "SWAP1", - "gas": 91654, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0x144", - "0xc0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 127, - "op": "PUSH1", - "gas": 91651, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0xc0", - "0x144" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 129, - "op": "MSTORE", - "gas": 91648, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0xc0", - "0x144", - "0x40" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 130, - "op": "PUSH32", - "gas": 91645, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0xc0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000144", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 163, - "op": "PUSH28", - "gas": 91642, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0xc0", - "0x41304fac00000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000144", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 192, - "op": "NOT", - "gas": 91639, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0xc0", - "0x41304fac00000000000000000000000000000000000000000000000000000000", - "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000144", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 193, - "op": "AND", - "gas": 91636, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0xc0", - "0x41304fac00000000000000000000000000000000000000000000000000000000", - "0xffffffff00000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000144", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 194, - "op": "PUSH1", - "gas": 91633, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0xc0", - "0x41304fac00000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000144", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 196, - "op": "DUP3", - "gas": 91630, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0xc0", - "0x41304fac00000000000000000000000000000000000000000000000000000000", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000144", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 197, - "op": "ADD", - "gas": 91627, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0xc0", - "0x41304fac00000000000000000000000000000000000000000000000000000000", - "0x20", - "0xc0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000144", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 198, - "op": "DUP1", - "gas": 91624, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0xc0", - "0x41304fac00000000000000000000000000000000000000000000000000000000", - "0xe0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000144", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 199, - "op": "MLOAD", - "gas": 91621, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0xc0", - "0x41304fac00000000000000000000000000000000000000000000000000000000", - "0xe0", - "0xe0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000144", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 200, - "op": "PUSH28", - "gas": 91618, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0xc0", - "0x41304fac00000000000000000000000000000000000000000000000000000000", - "0xe0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000144", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 229, - "op": "DUP4", - "gas": 91615, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0xc0", - "0x41304fac00000000000000000000000000000000000000000000000000000000", - "0xe0", - "0x0", - "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000144", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 230, - "op": "DUP2", - "gas": 91612, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0xc0", - "0x41304fac00000000000000000000000000000000000000000000000000000000", - "0xe0", - "0x0", - "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0x41304fac00000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000144", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 231, - "op": "DUP4", - "gas": 91609, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0xc0", - "0x41304fac00000000000000000000000000000000000000000000000000000000", - "0xe0", - "0x0", - "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0x41304fac00000000000000000000000000000000000000000000000000000000", - "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000144", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 232, - "op": "AND", - "gas": 91606, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0xc0", - "0x41304fac00000000000000000000000000000000000000000000000000000000", - "0xe0", - "0x0", - "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0x41304fac00000000000000000000000000000000000000000000000000000000", - "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000144", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 233, - "op": "OR", - "gas": 91603, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0xc0", - "0x41304fac00000000000000000000000000000000000000000000000000000000", - "0xe0", - "0x0", - "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0x41304fac00000000000000000000000000000000000000000000000000000000", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000144", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 234, - "op": "DUP4", - "gas": 91600, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0xc0", - "0x41304fac00000000000000000000000000000000000000000000000000000000", - "0xe0", - "0x0", - "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0x41304fac00000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000144", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 235, - "op": "MSTORE", - "gas": 91597, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0xc0", - "0x41304fac00000000000000000000000000000000000000000000000000000000", - "0xe0", - "0x0", - "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff", - "0x41304fac00000000000000000000000000000000000000000000000000000000", - "0xe0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000144", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 236, - "op": "POP", - "gas": 91594, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0xc0", - "0x41304fac00000000000000000000000000000000000000000000000000000000", - "0xe0", - "0x0", - "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000144", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "41304fac00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 237, - "op": "POP", - "gas": 91592, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0xc0", - "0x41304fac00000000000000000000000000000000000000000000000000000000", - "0xe0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000144", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "41304fac00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 238, - "op": "POP", - "gas": 91590, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0xc0", - "0x41304fac00000000000000000000000000000000000000000000000000000000", - "0xe0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000144", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "41304fac00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 239, - "op": "POP", - "gas": 91588, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0xc0", - "0x41304fac00000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000144", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "41304fac00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 240, - "op": "PUSH2", - "gas": 91586, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0xc0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000144", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "41304fac00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 243, - "op": "PUSH1", - "gas": 91583, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0xc0", - "0xfd" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000144", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "41304fac00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 245, - "op": "SHL", - "gas": 91580, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0xc0", - "0xfd", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000144", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "41304fac00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 246, - "op": "PUSH1", - "gas": 91577, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0xc0", - "0xfd00000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000144", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "41304fac00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 248, - "op": "SHR", - "gas": 91574, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0xc0", - "0xfd00000000", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000144", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "41304fac00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 249, - "op": "JUMP", - "gas": 91571, - "gasCost": 8, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0xc0", - "0xfd" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000144", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "41304fac00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 253, - "op": "JUMPDEST", - "gas": 91563, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0xc0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000144", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "41304fac00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 254, - "op": "PUSH1", - "gas": 91562, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0xc0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000144", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "41304fac00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 256, - "op": "DUP2", - "gas": 91559, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0xc0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000144", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "41304fac00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 257, - "op": "MLOAD", - "gas": 91556, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0xc0", - "0x0", - "0xc0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000144", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "41304fac00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 258, - "op": "SWAP1", - "gas": 91553, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0xc0", - "0x0", - "0x64" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000144", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "41304fac00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 259, - "op": "POP", - "gas": 91550, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0xc0", - "0x64", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000144", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "41304fac00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 260, - "op": "PUSH1", - "gas": 91548, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0xc0", - "0x64" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000144", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "41304fac00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 262, - "op": "PUSH11", - "gas": 91545, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0xc0", - "0x64", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000144", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "41304fac00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 274, - "op": "SWAP1", - "gas": 91542, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0xc0", - "0x64", - "0x0", - "0x636f6e736f6c652e6c6f67" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000144", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "41304fac00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 275, - "op": "POP", - "gas": 91539, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0xc0", - "0x64", - "0x636f6e736f6c652e6c6f67", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000144", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "41304fac00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 276, - "op": "PUSH1", - "gas": 91537, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0xc0", - "0x64", - "0x636f6e736f6c652e6c6f67" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000144", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "41304fac00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 278, - "op": "DUP4", - "gas": 91534, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0xc0", - "0x64", - "0x636f6e736f6c652e6c6f67", - "0x20" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000144", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "41304fac00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 279, - "op": "ADD", - "gas": 91531, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0xc0", - "0x64", - "0x636f6e736f6c652e6c6f67", - "0x20", - "0xc0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000144", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "41304fac00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 280, - "op": "PUSH1", - "gas": 91528, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0xc0", - "0x64", - "0x636f6e736f6c652e6c6f67", - "0xe0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000144", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "41304fac00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 282, - "op": "DUP1", - "gas": 91525, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0xc0", - "0x64", - "0x636f6e736f6c652e6c6f67", - "0xe0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000144", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "41304fac00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 283, - "op": "DUP5", - "gas": 91522, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0xc0", - "0x64", - "0x636f6e736f6c652e6c6f67", - "0xe0", - "0x0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000144", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "41304fac00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 284, - "op": "DUP4", - "gas": 91519, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0xc0", - "0x64", - "0x636f6e736f6c652e6c6f67", - "0xe0", - "0x0", - "0x0", - "0x64" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000144", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "41304fac00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 285, - "op": "DUP6", - "gas": 91516, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0xc0", - "0x64", - "0x636f6e736f6c652e6c6f67", - "0xe0", - "0x0", - "0x0", - "0x64", - "0xe0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000144", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "41304fac00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 286, - "op": "GAS", - "gas": 91513, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0xc0", - "0x64", - "0x636f6e736f6c652e6c6f67", - "0xe0", - "0x0", - "0x0", - "0x64", - "0xe0", - "0x636f6e736f6c652e6c6f67" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000144", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "41304fac00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 287, - "op": "STATICCALL", - "gas": 91511, - "gasCost": 90122, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0xc0", - "0x64", - "0x636f6e736f6c652e6c6f67", - "0xe0", - "0x0", - "0x0", - "0x64", - "0xe0", - "0x636f6e736f6c652e6c6f67", - "0x16577" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000144", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "41304fac00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "extraData": { - "codeList": [ - "0x" - ], - "proofList": [ - { - "address": "0x000000000000000000636f6e736f6c652e6c6f67", - "nonce": 0, - "balance": "0x0", - "codeHash": "0x0000000000000000000000000000000000000000000000000000000000000000" - }, - { - "address": "0x000000000000000000636f6e736f6c652e6c6f67", - "nonce": 0, - "balance": "0x0", - "codeHash": "0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470" - } - ] - } - }, - { - "pc": 288, - "op": "POP", - "gas": 88911, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0xc0", - "0x64", - "0x636f6e736f6c652e6c6f67", - "0xe0", - "0x1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000144", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "41304fac00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 289, - "op": "POP", - "gas": 88909, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0xc0", - "0x64", - "0x636f6e736f6c652e6c6f67", - "0xe0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000144", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "41304fac00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 290, - "op": "POP", - "gas": 88907, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0xc0", - "0x64", - "0x636f6e736f6c652e6c6f67" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000144", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "41304fac00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 291, - "op": "POP", - "gas": 88905, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0xc0", - "0x64" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000144", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "41304fac00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 292, - "op": "POP", - "gas": 88903, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa", - "0xc0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000144", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "41304fac00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 293, - "op": "JUMP", - "gas": 88901, - "gasCost": 8, - "depth": 1, - "stack": [ - "0x59", - "0x80", - "0xfa" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000144", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "41304fac00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 250, - "op": "JUMPDEST", - "gas": 88893, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x59", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000144", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "41304fac00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 251, - "op": "POP", - "gas": 88892, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x59", - "0x80" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000144", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "41304fac00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 252, - "op": "JUMP", - "gas": 88890, - "gasCost": 8, - "depth": 1, - "stack": [ - "0x59" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000144", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "41304fac00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 89, - "op": "JUMPDEST", - "gas": 88882, - "gasCost": 1, - "depth": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000144", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "41304fac00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 90, - "op": "PUSH2", - "gas": 88881, - "gasCost": 3, - "depth": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000144", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "41304fac00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 93, - "op": "JUMP", - "gas": 88878, - "gasCost": 8, - "depth": 1, - "stack": [ - "0x1e1" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000144", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "41304fac00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 481, - "op": "JUMPDEST", - "gas": 88870, - "gasCost": 1, - "depth": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000144", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "41304fac00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 482, - "op": "PUSH2", - "gas": 88869, - "gasCost": 3, - "depth": 1, - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000144", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "41304fac00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 485, - "op": "DUP1", - "gas": 88866, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x1bc" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000144", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "41304fac00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 486, - "op": "PUSH2", - "gas": 88863, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x1bc", - "0x1bc" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000144", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "41304fac00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 489, - "op": "PUSH1", - "gas": 88860, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x1bc", - "0x1bc", - "0x1f0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000144", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "41304fac00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 491, - "op": "CODECOPY", - "gas": 88857, - "gasCost": 54, - "depth": 1, - "stack": [ - "0x1bc", - "0x1bc", - "0x1f0", - "0x0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000144", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7465737400000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000064", - "41304fac00000000000000000000000000000000000000000000000000000000", - "0000002000000000000000000000000000000000000000000000000000000000", - "0000000474657374000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ] - }, - { - "pc": 492, - "op": "PUSH1", - "gas": 88803, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x1bc" - ], - "memory": [ - "6080604052600080fd5b61009f8160405160240161001d9190610104565b6040", - "516020818303038152906040527f41304fac0000000000000000000000000000", - "00000000000000000000000000007bffffffffffffffffffffffffffffffffff", - "ffffffffffffffffffffff19166020820180517bffffffffffffffffffffffff", - "ffffffffffffffffffffffffffffffff83818316178352505050506100a2565b", - "50565b60008151905060006a636f6e736f6c652e6c6f67905060208301600080", - "8483855afa5050505050565b60006100d682610126565b6100e0818561013156", - "5b93506100f0818560208601610142565b6100f981610175565b840191505092", - "915050565b6000602082019050818103600083015261011e81846100cb565b90", - "5092915050565b600081519050919050565b6000828252602082019050929150", - "50565b60005b8381101561016057808201518184015260208101905061014556", - "5b8381111561016f576000848401525b50505050565b6000601f19601f830116", - "905091905056fea2646970667358221220325eab903412c8473722231b3bc907", - "d0df8e3cb8feba060b5da2f1776cc5b11264736f6c6343000804003300000000" - ] - }, - { - "pc": 494, - "op": "RETURN", - "gas": 88800, - "gasCost": 0, - "depth": 1, - "stack": [ - "0x1bc", - "0x0" - ], - "memory": [ - "6080604052600080fd5b61009f8160405160240161001d9190610104565b6040", - "516020818303038152906040527f41304fac0000000000000000000000000000", - "00000000000000000000000000007bffffffffffffffffffffffffffffffffff", - "ffffffffffffffffffffff19166020820180517bffffffffffffffffffffffff", - "ffffffffffffffffffffffffffffffff83818316178352505050506100a2565b", - "50565b60008151905060006a636f6e736f6c652e6c6f67905060208301600080", - "8483855afa5050505050565b60006100d682610126565b6100e0818561013156", - "5b93506100f0818560208601610142565b6100f981610175565b840191505092", - "915050565b6000602082019050818103600083015261011e81846100cb565b90", - "5092915050565b600081519050919050565b6000828252602082019050929150", - "50565b60005b8381101561016057808201518184015260208101905061014556", - "5b8381111561016f576000848401525b50505050565b6000601f19601f830116", - "905091905056fea2646970667358221220325eab903412c8473722231b3bc907", - "d0df8e3cb8feba060b5da2f1776cc5b11264736f6c6343000804003300000000" - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/trie/zkproof/writer.go b/trie/zkproof/writer.go index 0ebdb81619..2887c3565d 100644 --- a/trie/zkproof/writer.go +++ b/trie/zkproof/writer.go @@ -143,6 +143,10 @@ type zktrieProofWriter struct { tracingAccounts map[common.Address]*types.StateAccount } +func (wr *zktrieProofWriter) TracingAccounts() map[common.Address]*types.StateAccount { + return wr.tracingAccounts +} + func NewZkTrieProofWriter(storage *types.StorageTrace) (*zktrieProofWriter, error) { underlayerDb := memorydb.New() @@ -232,6 +236,8 @@ const ( posCREATEAfter = 1 posCALL = 2 posSTATICCALL = 0 + +// posSELFDESTRUCT = 2 ) func getAccountState(l *types.StructLogRes, pos int) *types.AccountWrapper { @@ -263,7 +269,16 @@ func copyAccountState(st *types.AccountWrapper) *types.AccountWrapper { } } +func isDeletedAccount(state *types.AccountWrapper) bool { + return state.Nonce == 0 && bytes.Equal(state.CodeHash.Bytes(), common.Hash{}.Bytes()) +} + func getAccountDataFromLogState(state *types.AccountWrapper) *types.StateAccount { + + if isDeletedAccount(state) { + return nil + } + return &types.StateAccount{ Nonce: state.Nonce, Balance: (*big.Int)(state.Balance), @@ -392,7 +407,8 @@ func (w *zktrieProofWriter) traceAccountUpdate(addr common.Address, updateAccDat if err := w.tracingZktrie.TryDelete(addr.Bytes32()); err != nil { return nil, fmt.Errorf("delete zktrie account state fail: %s", err) } - delete(w.tracingAccounts, addr) + w.tracingAccounts[addr] = nil + } proof = proofList{} @@ -411,6 +427,18 @@ func (w *zktrieProofWriter) traceAccountUpdate(addr common.Address, updateAccDat //now accountKey must has been filled } + // notice we have change that no leaf (account data) exist in either before or after, + // for that case we had to calculate the nodeKey here + if out.AccountKey == nil { + word := zkt.NewByte32FromBytesPaddingZero(addr.Bytes()) + k, err := word.Hash() + if err != nil { + panic(fmt.Errorf("unexpected hash error for address: %s", err)) + } + kHash := zkt.NewHashFromBigInt(k) + out.AccountKey = hexutil.Bytes(kHash[:]) + } + return out, nil } @@ -516,18 +544,24 @@ func (w *zktrieProofWriter) HandleNewState(accountState *types.AccountWrapper) ( return w.traceStorageUpdate(accountState.Address, storeAddr, storeValue) } else { + var stateRoot common.Hash accData := getAccountDataFromLogState(accountState) out, err := w.traceAccountUpdate(accountState.Address, func(accBefore *types.StateAccount) *types.StateAccount { if accBefore != nil { - accData.Root = accBefore.Root + stateRoot = accBefore.Root + } + // we need to restore stateRoot from before + if accData != nil { + accData.Root = stateRoot } return accData }) if err != nil { return nil, fmt.Errorf("update account state %s fail: %s", accountState.Address, err) } - hash, err := zkt.NewHashFromBytes(accData.Root[:]) + + hash, err := zkt.NewHashFromBytes(stateRoot[:]) if err != nil { return nil, fmt.Errorf("malform of state root in account %s", accountState.Address) } @@ -540,7 +574,6 @@ func (w *zktrieProofWriter) HandleNewState(accountState *types.AccountWrapper) ( func handleLogs(od opOrderer, currentContract common.Address, logs []*types.StructLogRes) { logStack := []int{0} contractStack := map[int]common.Address{} - skipDepth := 0 callEnterAddress := currentContract // now trace every OP which could cause changes on state: @@ -552,6 +585,7 @@ func handleLogs(od opOrderer, currentContract common.Address, logs []*types.Stru //update currentContract according to previous op contractStack[sl] = currentContract currentContract = callEnterAddress + } else if sl > sLog.Depth { logStack = logStack[:sl-1] currentContract = contractStack[sLog.Depth] @@ -559,12 +593,16 @@ func handleLogs(od opOrderer, currentContract common.Address, logs []*types.Stru calledLog := logs[resumePos] //no need to handle fail calling - if !(calledLog.ExtraData != nil && calledLog.ExtraData.CallFailed) { - //reentry the last log which "cause" the calling, some handling may needed - switch calledLog.Op { - case "CREATE", "CREATE2": - //addr, accDataBefore := getAccountDataFromProof(calledLog, posCALLBefore) - od.absorb(getAccountState(calledLog, posCREATEAfter)) + if calledLog.ExtraData != nil { + if !calledLog.ExtraData.CallFailed { + //reentry the last log which "cause" the calling, some handling may needed + switch calledLog.Op { + case "CREATE", "CREATE2": + //addr, accDataBefore := getAccountDataFromProof(calledLog, posCALLBefore) + od.absorb(getAccountState(calledLog, posCREATEAfter)) + } + } else { + od.readonly(false) } } @@ -577,73 +615,96 @@ func handleLogs(od opOrderer, currentContract common.Address, logs []*types.Stru } callEnterAddress = currentContract - if skipDepth != 0 { - if skipDepth < sLog.Depth { - continue - } else { - skipDepth = 0 + //check extra status for current op if it is a call + if extraData := sLog.ExtraData; extraData != nil { + if extraData.CallFailed || len(sLog.ExtraData.Caller) < 2 { + // no enough caller data (2) is being capture indicate we are in an immediate failure + // i.e. it fail before stack entry (like no enough balance for a "call with value"), + // or we just not handle this calling op correctly yet + + // for a failed option, now we just purpose nothing happens (FIXME: it is inconsentent with mpt_table) + // except for CREATE, for which the callee's nonce would be increased + switch sLog.Op { + case "CREATE", "CREATE2": + st := copyAccountState(extraData.Caller[0]) + st.Nonce += 1 + od.absorb(st) + } + } + + if extraData.CallFailed { + od.readonly(true) + } + // now trace caller's status first + if caller := extraData.Caller; len(caller) >= 2 { + od.absorb(caller[1]) } } - if exD := sLog.ExtraData; exD != nil && exD.CallFailed { - //mark current op and next ops with more depth skippable - skipDepth = sLog.Depth - continue - } - switch sLog.Op { - case "CREATE", "CREATE2": - state := getAccountState(sLog, posCREATE) - od.absorb(state) - //update contract to CREATE addr + case "SELFDESTRUCT": + // NOTE: this op code has been disabled so we treat it as nothing now + + //in SELFDESTRUCT, a call on target address is made so the balance would be updated + //in the last item + //stateTarget := getAccountState(sLog, posSELFDESTRUCT) + //od.absorb(stateTarget) + //then build an "deleted state", only address and other are default + //od.absorb(&types.AccountWrapper{Address: currentContract}) + + case "CREATE", "CREATE2": + // notice in immediate failure we have no enough tracing in extraData + if len(sLog.ExtraData.StateList) >= 2 { + state := getAccountState(sLog, posCREATE) + od.absorb(state) + //update contract to CREATE addr + callEnterAddress = state.Address + } - callEnterAddress = state.Address case "CALL", "CALLCODE": - state := getAccountState(sLog, posCALL) - od.absorb(state) - callEnterAddress = state.Address + // notice in immediate failure we have no enough tracing in extraData + if len(sLog.ExtraData.StateList) >= 3 { + state := getAccountState(sLog, posCALL) + od.absorb(state) + callEnterAddress = state.Address + } case "STATICCALL": - //static call has no update on target address + //static call has no update on target address (and no immediate failure?) callEnterAddress = getAccountState(sLog, posSTATICCALL).Address + case "DELEGATECALL": + case "SLOAD": accountState := getAccountState(sLog, posSSTOREBefore) - od.absorb(accountState) + od.absorbStorage(accountState, nil) case "SSTORE": log.Debug("build SSTORE", "pc", sLog.Pc, "key", sLog.Stack[len(sLog.Stack)-1]) accountState := copyAccountState(getAccountState(sLog, posSSTOREBefore)) // notice the log only provide the value BEFORE store and it is not suitable for our protocol, // here we change it into value AFTER update + before := accountState.Storage accountState.Storage = &types.StorageWrapper{ Key: sLog.Stack[len(sLog.Stack)-1], Value: sLog.Stack[len(sLog.Stack)-2], } - od.absorb(accountState) + od.absorbStorage(accountState, before) default: } } } -func handleTx(od opOrderer, txResult *types.ExecutionResult) { +func HandleTx(od opOrderer, txResult *types.ExecutionResult) { + + // the from state is read before tx is handled and nonce is added, we combine both + preTxSt := copyAccountState(txResult.From) + preTxSt.Nonce += 1 + od.absorb(preTxSt) - // handle failed tx if txResult.Failed { - handled := false - for _, state := range txResult.AccountsAfter { - if state.Address != txResult.From.Address { - continue - } - od.absorb(state) - handled = true - } - if !handled { - panic(fmt.Errorf("no caller account in postTx status")) - } - return + od.readonly(true) } var toAddr common.Address - if state := txResult.AccountCreated; state != nil { od.absorb(state) toAddr = state.Address @@ -652,8 +713,18 @@ func handleTx(od opOrderer, txResult *types.ExecutionResult) { } handleLogs(od, toAddr, txResult.StructLogs) + if txResult.Failed { + od.readonly(false) + } for _, state := range txResult.AccountsAfter { + // special case: for suicide, the state has been captured in SELFDESTRUCT + // and we skip it here + if isDeletedAccount(state) { + log.Debug("skip suicide address", "address", state.Address) + continue + } + od.absorb(state) } @@ -663,6 +734,8 @@ const defaultOrdererScheme = MPTWitnessRWTbl var usedOrdererScheme = defaultOrdererScheme +func SetOrderScheme(t MPTWitnessType) { usedOrdererScheme = t } + // HandleBlockResult only for backward compatibility func HandleBlockResult(block *types.BlockResult) ([]*StorageTrace, error) { return HandleBlockResultEx(block, usedOrdererScheme) @@ -682,13 +755,13 @@ func HandleBlockResultEx(block *types.BlockResult, ordererScheme MPTWitnessType) case MPTWitnessNatural: od = &simpleOrderer{} case MPTWitnessRWTbl: - od = newRWTblOrderer(writer.tracingAccounts) + od = NewRWTblOrderer(writer.tracingAccounts) default: return nil, fmt.Errorf("unrecognized scheme %d", ordererScheme) } for _, tx := range block.ExecutionResults { - handleTx(od, tx) + HandleTx(od, tx) } // notice some coinbase addr (like all zero) is in fact not exist and should not be update